-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'arc53:main' into chore/upgrade-python-deps-for-duckduckgo
- Loading branch information
Showing
7 changed files
with
44 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import React, { useState, useRef, useEffect } from 'react'; | ||
import InfoDark from '../assets/info-dark.svg'; | ||
import PageIcon from '../assets/documentation.svg'; // Ensure this path is correct | ||
import EmailIcon from '../assets/envelope.svg'; // Replace with your actual email icon path | ||
|
||
import { useState, useRef, useEffect } from 'react'; | ||
import Info from '../assets/info.svg'; | ||
import PageIcon from '../assets/documentation.svg'; | ||
import EmailIcon from '../assets/envelope.svg'; | ||
import { useTranslation } from 'react-i18next'; | ||
const Help = () => { | ||
const [isOpen, setIsOpen] = useState(false); | ||
const dropdownRef = useRef<HTMLDivElement | null>(null); | ||
const buttonRef = useRef<HTMLButtonElement | null>(null); | ||
const { t } = useTranslation(); | ||
|
||
const toggleDropdown = () => { | ||
setIsOpen((prev) => !prev); | ||
|
@@ -30,63 +31,45 @@ const Help = () => { | |
}; | ||
}, []); | ||
|
||
const dropdownPosition = () => { | ||
if (!buttonRef.current) return { top: '100%', left: '0' }; | ||
|
||
const rect = buttonRef.current.getBoundingClientRect(); | ||
const dropdownHeight = 80; // Adjust based on the content height | ||
const spaceBelow = window.innerHeight - rect.bottom; | ||
|
||
const dropdownWidth = 192; // Adjust to fit your design | ||
const spaceRight = window.innerWidth - rect.right; | ||
|
||
let leftPosition = 0; // Default to align with the button | ||
|
||
if (spaceRight < dropdownWidth) { | ||
leftPosition = dropdownWidth - rect.width; | ||
} | ||
|
||
if (spaceBelow >= dropdownHeight) { | ||
return { top: '100%', left: `${leftPosition}px` }; // Open downward | ||
} else { | ||
return { top: `${-dropdownHeight}px`, left: `${leftPosition}px` }; // Open upward | ||
} | ||
}; | ||
|
||
return ( | ||
<div className="relative inline-block" ref={dropdownRef}> | ||
<div className="relative inline-block text-sm" ref={dropdownRef}> | ||
<button | ||
ref={buttonRef} | ||
onClick={toggleDropdown} | ||
className="flex items-center rounded-full hover:bg-gray-100 dark:hover:bg-[#28292E] px-3 py-1" | ||
className="my-auto mx-4 w-full flex items-center h-9 gap-4 rounded-3xl hover:bg-gray-100 dark:hover:bg-[#28292E]" | ||
> | ||
<img | ||
src={InfoDark} | ||
alt="icon" | ||
className="m-2 w-6 self-center text-sm filter dark:invert" | ||
/> | ||
Help | ||
<img src={Info} alt="info" className="ml-1 w-5 filter dark:invert" /> | ||
{t('help')} | ||
</button> | ||
{isOpen && ( | ||
<div | ||
className={`absolute mt-2 w-48 shadow-lg bg-white dark:bg-gray-800`} | ||
style={{ ...dropdownPosition(), borderRadius: '0.5rem' }} | ||
className={`absolute translate-x-4 -translate-y-28 z-10 w-48 shadow-lg bg-white dark:bg-[#444654] rounded-xl`} | ||
> | ||
<a | ||
href="https://docs.docsgpt.cloud/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
className="flex items-center px-4 py-2 text-black dark:text-white hover:bg-gray-200 dark:hover:bg-gray-700" | ||
className="flex items-start gap-4 px-4 py-2 text-black dark:text-white hover:bg-bright-gray dark:hover:bg-[#545561] rounded-t-xl" | ||
> | ||
<img src={PageIcon} alt="Documentation" className="mr-2 w-4 h-4" /> | ||
Documentation | ||
<img | ||
src={PageIcon} | ||
alt="Documentation" | ||
className="filter dark:invert" | ||
width={20} | ||
/> | ||
{t('documentation')} | ||
</a> | ||
<a | ||
href="mailto:[email protected]" | ||
className="flex items-center px-4 py-2 text-black dark:text-white hover:bg-gray-200 dark:hover:bg-gray-700" | ||
className="flex items-start gap-4 px-4 py-2 text-black dark:text-white hover:bg-bright-gray dark:hover:bg-[#545561] rounded-b-xl" | ||
> | ||
<img src={EmailIcon} alt="Email Us" className="mr-2 w-4 h-4" /> | ||
Email Us | ||
<img | ||
src={EmailIcon} | ||
alt="Email Us" | ||
className="filter dark:invert p-0.5" | ||
width={20} | ||
/> | ||
{t('emailUs')} | ||
</a> | ||
</div> | ||
)} | ||
|
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