add hw2
This commit is contained in:
60
node_modules/@react-aria/interactions/dist/useFocus.module.js
generated
vendored
Normal file
60
node_modules/@react-aria/interactions/dist/useFocus.module.js
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
import {useSyntheticBlurEvent as $8a9cb279dc87e130$export$715c682d09d639cc} from "./utils.module.js";
|
||||
import {useCallback as $hf0lj$useCallback} from "react";
|
||||
import {getOwnerDocument as $hf0lj$getOwnerDocument, getActiveElement as $hf0lj$getActiveElement, getEventTarget as $hf0lj$getEventTarget} from "@react-aria/utils";
|
||||
|
||||
/*
|
||||
* Copyright 2020 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.
|
||||
*/ // Portions of the code in this file are based on code from react.
|
||||
// Original licensing for the following can be found in the
|
||||
// NOTICE file in the root directory of this source tree.
|
||||
// See https://github.com/facebook/react/tree/cc7c1aece46a6b69b41958d731e0fd27c94bfc6c/packages/react-interactions
|
||||
|
||||
|
||||
|
||||
function $a1ea59d68270f0dd$export$f8168d8dd8fd66e6(props) {
|
||||
let { isDisabled: isDisabled, onFocus: onFocusProp, onBlur: onBlurProp, onFocusChange: onFocusChange } = props;
|
||||
const onBlur = (0, $hf0lj$useCallback)((e)=>{
|
||||
if (e.target === e.currentTarget) {
|
||||
if (onBlurProp) onBlurProp(e);
|
||||
if (onFocusChange) onFocusChange(false);
|
||||
return true;
|
||||
}
|
||||
}, [
|
||||
onBlurProp,
|
||||
onFocusChange
|
||||
]);
|
||||
const onSyntheticFocus = (0, $8a9cb279dc87e130$export$715c682d09d639cc)(onBlur);
|
||||
const onFocus = (0, $hf0lj$useCallback)((e)=>{
|
||||
// Double check that document.activeElement actually matches e.target in case a previously chained
|
||||
// focus handler already moved focus somewhere else.
|
||||
const ownerDocument = (0, $hf0lj$getOwnerDocument)(e.target);
|
||||
const activeElement = ownerDocument ? (0, $hf0lj$getActiveElement)(ownerDocument) : (0, $hf0lj$getActiveElement)();
|
||||
if (e.target === e.currentTarget && activeElement === (0, $hf0lj$getEventTarget)(e.nativeEvent)) {
|
||||
if (onFocusProp) onFocusProp(e);
|
||||
if (onFocusChange) onFocusChange(true);
|
||||
onSyntheticFocus(e);
|
||||
}
|
||||
}, [
|
||||
onFocusChange,
|
||||
onFocusProp,
|
||||
onSyntheticFocus
|
||||
]);
|
||||
return {
|
||||
focusProps: {
|
||||
onFocus: !isDisabled && (onFocusProp || onFocusChange || onBlurProp) ? onFocus : undefined,
|
||||
onBlur: !isDisabled && (onBlurProp || onFocusChange) ? onBlur : undefined
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
export {$a1ea59d68270f0dd$export$f8168d8dd8fd66e6 as useFocus};
|
||||
//# sourceMappingURL=useFocus.module.js.map
|
||||
Reference in New Issue
Block a user