mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2024-11-17 16:29:19 +00:00
⚡️ feat: add handler when click the project item on mobile
This commit is contained in:
parent
1ddc3b81c7
commit
48e3581322
@ -8,18 +8,46 @@ import { Project } from 'gql-client';
|
|||||||
import { useDebounce } from 'usehooks-ts';
|
import { useDebounce } from 'usehooks-ts';
|
||||||
import { ProjectSearchBarItem } from './ProjectSearchBarItem';
|
import { ProjectSearchBarItem } from './ProjectSearchBarItem';
|
||||||
import { ProjectSearchBarEmpty } from './ProjectSearchBarEmpty';
|
import { ProjectSearchBarEmpty } from './ProjectSearchBarEmpty';
|
||||||
|
import { useNavigate } from 'react-router-dom';
|
||||||
|
import { useCombobox } from 'downshift';
|
||||||
|
|
||||||
interface ProjectSearchBarDialogProps extends Dialog.DialogProps {
|
interface ProjectSearchBarDialogProps extends Dialog.DialogProps {
|
||||||
onClose?: () => void;
|
onClose?: () => void;
|
||||||
|
onClickItem?: (data: Project) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ProjectSearchBarDialog = ({
|
export const ProjectSearchBarDialog = ({
|
||||||
onClose,
|
onClose,
|
||||||
|
onClickItem,
|
||||||
...props
|
...props
|
||||||
}: ProjectSearchBarDialogProps) => {
|
}: ProjectSearchBarDialogProps) => {
|
||||||
const [items, setItems] = useState<Project[]>([]);
|
const [items, setItems] = useState<Project[]>([]);
|
||||||
const [inputValue, setInputValue] = useState<string>('');
|
const [selectedItem, setSelectedItem] = useState<Project | null>(null);
|
||||||
const client = useGQLClient();
|
const client = useGQLClient();
|
||||||
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const {
|
||||||
|
getMenuProps,
|
||||||
|
getInputProps,
|
||||||
|
getItemProps,
|
||||||
|
inputValue,
|
||||||
|
setInputValue,
|
||||||
|
} = useCombobox({
|
||||||
|
items,
|
||||||
|
itemToString(item) {
|
||||||
|
return item ? item.name : '';
|
||||||
|
},
|
||||||
|
selectedItem,
|
||||||
|
onSelectedItemChange: ({ selectedItem: newSelectedItem }) => {
|
||||||
|
if (newSelectedItem) {
|
||||||
|
setSelectedItem(newSelectedItem);
|
||||||
|
onClickItem?.(newSelectedItem);
|
||||||
|
navigate(
|
||||||
|
`/${newSelectedItem.organization.slug}/projects/${newSelectedItem.id}`,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
const debouncedInputValue = useDebounce<string>(inputValue, 500);
|
const debouncedInputValue = useDebounce<string>(inputValue, 500);
|
||||||
|
|
||||||
@ -42,7 +70,7 @@ export const ProjectSearchBarDialog = ({
|
|||||||
setItems([]);
|
setItems([]);
|
||||||
onClose?.();
|
onClose?.();
|
||||||
};
|
};
|
||||||
console.log(items);
|
|
||||||
return (
|
return (
|
||||||
<Dialog.Root {...props}>
|
<Dialog.Root {...props}>
|
||||||
<Dialog.Portal>
|
<Dialog.Portal>
|
||||||
@ -50,28 +78,31 @@ export const ProjectSearchBarDialog = ({
|
|||||||
<Dialog.Content>
|
<Dialog.Content>
|
||||||
<div className="py-2.5 px-4 w-full flex items-center justify-between border-b border-border-separator/[0.06]">
|
<div className="py-2.5 px-4 w-full flex items-center justify-between border-b border-border-separator/[0.06]">
|
||||||
<Input
|
<Input
|
||||||
|
{...getInputProps()}
|
||||||
leftIcon={<SearchIcon />}
|
leftIcon={<SearchIcon />}
|
||||||
placeholder="Search"
|
placeholder="Search"
|
||||||
appearance="borderless"
|
appearance="borderless"
|
||||||
value={inputValue}
|
|
||||||
autoFocus
|
autoFocus
|
||||||
onChange={(e) => setInputValue(e.target.value)}
|
|
||||||
/>
|
/>
|
||||||
<Button iconOnly variant="ghost" onClick={handleClose}>
|
<Button iconOnly variant="ghost" onClick={handleClose}>
|
||||||
<CrossIcon size={16} />
|
<CrossIcon size={16} />
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
{/* Content */}
|
{/* Content */}
|
||||||
<div className="flex flex-col gap-1 px-2 py-2">
|
<div {...getMenuProps()} className="flex flex-col gap-1 px-2 py-2">
|
||||||
{items.length > 0
|
{items.length > 0
|
||||||
? items.map((item) => (
|
? items.map((item, index) => (
|
||||||
<>
|
<>
|
||||||
<div className="px-2 py-2">
|
<div className="px-2 py-2">
|
||||||
<p className="text-elements-mid-em text-xs font-medium">
|
<p className="text-elements-mid-em text-xs font-medium">
|
||||||
Suggestions
|
Suggestions
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<ProjectSearchBarItem key={item.id} item={item} />
|
<ProjectSearchBarItem
|
||||||
|
{...getItemProps({ item, index })}
|
||||||
|
key={item.id}
|
||||||
|
item={item}
|
||||||
|
/>
|
||||||
</>
|
</>
|
||||||
))
|
))
|
||||||
: inputValue && <ProjectSearchBarEmpty />}
|
: inputValue && <ProjectSearchBarEmpty />}
|
||||||
|
@ -123,6 +123,7 @@ export const DashboardLayout = ({
|
|||||||
</section>
|
</section>
|
||||||
<ProjectSearchBarDialog
|
<ProjectSearchBarDialog
|
||||||
open={isSearchOpen}
|
open={isSearchOpen}
|
||||||
|
onClickItem={() => setIsSearchOpen(false)}
|
||||||
onClose={() => setIsSearchOpen(false)}
|
onClose={() => setIsSearchOpen(false)}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
|
Loading…
Reference in New Issue
Block a user