forked from adobe/react-spectrum
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHidden.tsx
86 lines (76 loc) · 3.58 KB
/
Hidden.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Copyright 2024 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
import {createPortal} from 'react-dom';
import {forwardRefType} from '@react-types/shared';
import React, {createContext, forwardRef, ReactElement, ReactNode, useContext, useMemo} from 'react';
import {useIsSSR} from '@react-aria/ssr';
// React doesn't understand the <template> element, which doesn't have children like a normal element.
// It will throw an error during hydration when it expects the firstChild to contain content rendered
// on the server, when in reality, the browser will have placed this inside the `content` document fragment.
// This monkey patches the firstChild property for our special hidden template elements to work around this error.
// See https://github.com/facebook/react/issues/19932
if (typeof HTMLTemplateElement !== 'undefined') {
const getFirstChild = Object.getOwnPropertyDescriptor(Node.prototype, 'firstChild')!.get!;
Object.defineProperty(HTMLTemplateElement.prototype, 'firstChild', {
configurable: true,
enumerable: true,
get: function () {
if (this.dataset.reactAriaHidden) {
return this.content.firstChild;
} else {
return getFirstChild.call(this);
}
}
});
}
export const HiddenContext = createContext<boolean>(false);
// Portal to nowhere
const hiddenFragment = typeof DocumentFragment !== 'undefined' ? new DocumentFragment() : null;
export function Hidden(props: {children: ReactNode}) {
let isHidden = useContext(HiddenContext);
let isSSR = useIsSSR();
// eslint-disable-next-line react-hooks/exhaustive-deps
let wasSSR = useMemo(() => isSSR, []);
if (isHidden) {
// Don't hide again if we are already hidden.
return <>{props.children}</>;
}
let children = (
<HiddenContext.Provider value>
{props.children}
</HiddenContext.Provider>
);
// In SSR, portals are not supported by React. Instead, render into a <template>
// element, which the browser will never display to the user. In addition, the
// content is not part of the DOM tree, so it won't affect ids or other accessibility attributes.
return wasSSR
? <template data-react-aria-hidden>{children}</template>
: createPortal(children, hiddenFragment!);
}
/** Creates a component that forwards its ref and returns null if it is in a hidden subtree. */
// Note: this function is handled specially in the documentation generator. If you change it, you'll need to update DocsTransformer as well.
export function createHideableComponent<T, P = {}>(fn: (props: P, ref: React.Ref<T>) => ReactElement | null): (props: P & React.RefAttributes<T>) => ReactElement | null {
let Wrapper = (props: P, ref: React.Ref<T>) => {
let isHidden = useContext(HiddenContext);
if (isHidden) {
return null;
}
return fn(props, ref);
};
// @ts-ignore - for react dev tools
Wrapper.displayName = fn.displayName || fn.name;
return (forwardRef as forwardRefType)(Wrapper);
}
/** Returns whether the component is in a hidden subtree. */
export function useIsHidden(): boolean {
return useContext(HiddenContext);
}