-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
42 changed files
with
580 additions
and
584 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// Copyright © 2024 The Things Network Foundation, The Things Industries B.V. | ||
// | ||
// Licensed 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 CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import React, { useCallback, useEffect } from 'react' | ||
|
||
import Dropdown from '@ttn-lw/components/dropdown' | ||
|
||
import PropTypes from '@ttn-lw/lib/prop-types' | ||
|
||
const AttachedDropdown = ({ attachedRef, onItemsClick, hover, onOutsideClick, ...rest }) => { | ||
const [open, setOpen] = React.useState(false) | ||
|
||
useEffect(() => { | ||
if (!attachedRef.current) { | ||
return | ||
} | ||
const openEvent = hover ? 'mouseenter' : 'click' | ||
const node = attachedRef.current | ||
const toggleDropdown = () => setOpen(val => !val) | ||
const closeDropdown = () => setOpen(false) | ||
|
||
node.addEventListener(openEvent, toggleDropdown) | ||
if (hover) { | ||
node.addEventListener('mouseleave', closeDropdown) | ||
} | ||
return () => { | ||
node.removeEventListener(openEvent, toggleDropdown) | ||
if (hover) { | ||
node.removeEventListener('mouseleave', closeDropdown) | ||
} | ||
} | ||
}, [attachedRef, hover, open]) | ||
|
||
const handleItemsClick = useCallback(() => { | ||
setOpen(false) | ||
onItemsClick() | ||
}, [onItemsClick]) | ||
|
||
const handleOutsideClick = useCallback( | ||
e => { | ||
if (attachedRef.current && attachedRef.current.contains(e.target)) { | ||
// Ignore clicks on the attached element, so that toggling is possible. | ||
return | ||
} | ||
setOpen(false) | ||
onOutsideClick() | ||
}, | ||
[attachedRef, onOutsideClick], | ||
) | ||
|
||
return ( | ||
<Dropdown | ||
open={open} | ||
onItemsClick={handleItemsClick} | ||
onOutsideClick={handleOutsideClick} | ||
hover={hover} | ||
{...rest} | ||
/> | ||
) | ||
} | ||
|
||
AttachedDropdown.propTypes = { | ||
attachedRef: PropTypes.shape({ current: PropTypes.instanceOf(Element) }).isRequired, | ||
hover: PropTypes.bool, | ||
onItemsClick: PropTypes.func, | ||
onOutsideClick: PropTypes.func, | ||
} | ||
|
||
AttachedDropdown.defaultProps = { | ||
onItemsClick: () => null, | ||
onOutsideClick: () => null, | ||
hover: false, | ||
} | ||
|
||
export default AttachedDropdown |
Oops, something went wrong.