2022-12-22 16:19:46 +00:00
|
|
|
// react
|
2022-11-19 14:21:26 +00:00
|
|
|
import React, { useState, useCallback, useEffect } from "react";
|
|
|
|
// next
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
// hooks
|
|
|
|
import useUser from "lib/hooks/useUser";
|
2022-11-23 15:10:19 +00:00
|
|
|
import useTheme from "lib/hooks/useTheme";
|
|
|
|
import useToast from "lib/hooks/useToast";
|
2022-11-19 14:21:26 +00:00
|
|
|
// components
|
|
|
|
import ShortcutsModal from "components/command-palette/shortcuts";
|
2022-12-12 04:49:52 +00:00
|
|
|
import CreateProjectModal from "components/project/create-project-modal";
|
2022-12-17 20:01:13 +00:00
|
|
|
import CreateUpdateIssuesModal from "components/project/issues/create-update-issue-modal";
|
2022-12-16 16:20:09 +00:00
|
|
|
import CreateUpdateCycleModal from "components/project/cycles/create-update-cycle-modal";
|
2022-12-22 16:19:46 +00:00
|
|
|
import CreateUpdateModuleModal from "components/project/modules/create-update-module-modal";
|
|
|
|
import BulkDeleteIssuesModal from "components/common/bulk-delete-issues-modal";
|
|
|
|
// headless ui
|
|
|
|
import { Combobox, Dialog, Transition } from "@headlessui/react";
|
2022-12-06 14:38:28 +00:00
|
|
|
// ui
|
|
|
|
import { Button } from "ui";
|
2022-12-22 16:19:46 +00:00
|
|
|
// icons
|
|
|
|
import {
|
|
|
|
FolderIcon,
|
|
|
|
RectangleStackIcon,
|
|
|
|
ClipboardDocumentListIcon,
|
|
|
|
MagnifyingGlassIcon,
|
|
|
|
} from "@heroicons/react/24/outline";
|
2022-11-19 14:21:26 +00:00
|
|
|
// types
|
2022-12-22 16:19:46 +00:00
|
|
|
import { IIssue } from "types";
|
|
|
|
// common
|
2022-12-06 14:38:28 +00:00
|
|
|
import { classNames, copyTextToClipboard } from "constants/common";
|
2022-11-29 14:19:39 +00:00
|
|
|
|
2022-11-19 14:21:26 +00:00
|
|
|
const CommandPalette: React.FC = () => {
|
|
|
|
const [query, setQuery] = useState("");
|
|
|
|
|
|
|
|
const [isPaletteOpen, setIsPaletteOpen] = useState(false);
|
|
|
|
const [isIssueModalOpen, setIsIssueModalOpen] = useState(false);
|
|
|
|
const [isProjectModalOpen, setIsProjectModalOpen] = useState(false);
|
|
|
|
const [isShortcutsModalOpen, setIsShortcutsModalOpen] = useState(false);
|
|
|
|
const [isCreateCycleModalOpen, setIsCreateCycleModalOpen] = useState(false);
|
2022-12-16 16:20:09 +00:00
|
|
|
const [isCreateModuleModalOpen, setisCreateModuleModalOpen] = useState(false);
|
2022-12-22 16:19:46 +00:00
|
|
|
const [isBulkDeleteIssuesModalOpen, setIsBulkDeleteIssuesModalOpen] = useState(false);
|
2022-11-19 14:21:26 +00:00
|
|
|
|
2022-12-22 16:19:46 +00:00
|
|
|
const { activeProject, issues } = useUser();
|
2022-12-06 14:38:28 +00:00
|
|
|
|
|
|
|
const router = useRouter();
|
2022-11-19 14:21:26 +00:00
|
|
|
|
|
|
|
const { toggleCollapsed } = useTheme();
|
|
|
|
|
2022-11-23 15:10:19 +00:00
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
2022-11-19 14:21:26 +00:00
|
|
|
const filteredIssues: IIssue[] =
|
|
|
|
query === ""
|
|
|
|
? issues?.results ?? []
|
|
|
|
: issues?.results.filter((issue) => issue.name.toLowerCase().includes(query.toLowerCase())) ??
|
|
|
|
[];
|
|
|
|
|
|
|
|
const quickActions = [
|
|
|
|
{
|
|
|
|
name: "Add new issue...",
|
2022-11-29 14:19:39 +00:00
|
|
|
icon: RectangleStackIcon,
|
2022-11-19 14:21:26 +00:00
|
|
|
shortcut: "I",
|
|
|
|
onClick: () => {
|
|
|
|
setIsIssueModalOpen(true);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Add new project...",
|
2022-11-29 14:19:39 +00:00
|
|
|
icon: ClipboardDocumentListIcon,
|
2022-11-19 14:21:26 +00:00
|
|
|
shortcut: "P",
|
|
|
|
onClick: () => {
|
|
|
|
setIsProjectModalOpen(true);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
const handleCommandPaletteClose = () => {
|
|
|
|
setIsPaletteOpen(false);
|
|
|
|
setQuery("");
|
|
|
|
};
|
|
|
|
|
|
|
|
const handleKeyDown = useCallback(
|
|
|
|
(e: KeyboardEvent) => {
|
2022-12-02 11:47:13 +00:00
|
|
|
if ((e.ctrlKey || e.metaKey) && e.key === "/") {
|
2022-11-19 14:21:26 +00:00
|
|
|
e.preventDefault();
|
|
|
|
setIsPaletteOpen(true);
|
2022-12-02 11:47:13 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "i") {
|
2022-11-19 14:21:26 +00:00
|
|
|
e.preventDefault();
|
|
|
|
setIsIssueModalOpen(true);
|
2022-12-02 11:47:13 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "p") {
|
2022-11-19 14:21:26 +00:00
|
|
|
e.preventDefault();
|
|
|
|
setIsProjectModalOpen(true);
|
2022-12-02 11:47:13 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "b") {
|
2022-11-19 14:21:26 +00:00
|
|
|
e.preventDefault();
|
|
|
|
toggleCollapsed();
|
2022-12-02 11:47:13 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "h") {
|
2022-11-19 14:21:26 +00:00
|
|
|
e.preventDefault();
|
|
|
|
setIsShortcutsModalOpen(true);
|
2022-12-02 11:47:13 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "q") {
|
2022-11-19 14:21:26 +00:00
|
|
|
e.preventDefault();
|
|
|
|
setIsCreateCycleModalOpen(true);
|
2022-12-16 16:20:09 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "m") {
|
|
|
|
e.preventDefault();
|
|
|
|
setisCreateModuleModalOpen(true);
|
2022-12-22 16:19:46 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.key === "d") {
|
|
|
|
e.preventDefault();
|
|
|
|
setIsBulkDeleteIssuesModalOpen(true);
|
2022-12-02 11:47:13 +00:00
|
|
|
} else if ((e.ctrlKey || e.metaKey) && e.altKey && e.key === "c") {
|
2022-11-23 15:10:19 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
if (!router.query.issueId) return;
|
|
|
|
|
|
|
|
const url = new URL(window.location.href);
|
|
|
|
copyTextToClipboard(url.href)
|
|
|
|
.then(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Copied to clipboard",
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Some error occurred",
|
|
|
|
});
|
|
|
|
});
|
2022-11-19 14:21:26 +00:00
|
|
|
}
|
|
|
|
},
|
2022-11-23 15:10:19 +00:00
|
|
|
[toggleCollapsed, setToastAlert, router]
|
2022-11-19 14:21:26 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
document.addEventListener("keydown", handleKeyDown);
|
|
|
|
return () => document.removeEventListener("keydown", handleKeyDown);
|
|
|
|
}, [handleKeyDown]);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<ShortcutsModal isOpen={isShortcutsModalOpen} setIsOpen={setIsShortcutsModalOpen} />
|
|
|
|
<CreateProjectModal isOpen={isProjectModalOpen} setIsOpen={setIsProjectModalOpen} />
|
|
|
|
{activeProject && (
|
2022-12-16 16:20:09 +00:00
|
|
|
<>
|
|
|
|
<CreateUpdateCycleModal
|
|
|
|
isOpen={isCreateCycleModalOpen}
|
|
|
|
setIsOpen={setIsCreateCycleModalOpen}
|
|
|
|
projectId={activeProject.id}
|
|
|
|
/>
|
|
|
|
<CreateUpdateModuleModal
|
|
|
|
isOpen={isCreateModuleModalOpen}
|
|
|
|
setIsOpen={setisCreateModuleModalOpen}
|
|
|
|
projectId={activeProject.id}
|
|
|
|
/>
|
|
|
|
</>
|
2022-11-19 14:21:26 +00:00
|
|
|
)}
|
|
|
|
<CreateUpdateIssuesModal
|
|
|
|
isOpen={isIssueModalOpen}
|
|
|
|
setIsOpen={setIsIssueModalOpen}
|
|
|
|
projectId={activeProject?.id}
|
|
|
|
/>
|
2022-12-22 16:19:46 +00:00
|
|
|
<BulkDeleteIssuesModal
|
|
|
|
isOpen={isBulkDeleteIssuesModalOpen}
|
|
|
|
setIsOpen={setIsBulkDeleteIssuesModalOpen}
|
|
|
|
/>
|
2022-11-19 14:21:26 +00:00
|
|
|
<Transition.Root
|
|
|
|
show={isPaletteOpen}
|
|
|
|
as={React.Fragment}
|
|
|
|
afterLeave={() => setQuery("")}
|
|
|
|
appear
|
|
|
|
>
|
|
|
|
<Dialog as="div" className="relative z-10" onClose={handleCommandPaletteClose}>
|
|
|
|
<Transition.Child
|
|
|
|
as={React.Fragment}
|
|
|
|
enter="ease-out duration-300"
|
|
|
|
enterFrom="opacity-0"
|
|
|
|
enterTo="opacity-100"
|
|
|
|
leave="ease-in duration-200"
|
|
|
|
leaveFrom="opacity-100"
|
|
|
|
leaveTo="opacity-0"
|
|
|
|
>
|
|
|
|
<div className="fixed inset-0 bg-gray-500 bg-opacity-25 transition-opacity" />
|
|
|
|
</Transition.Child>
|
|
|
|
|
|
|
|
<div className="fixed inset-0 z-10 overflow-y-auto p-4 sm:p-6 md:p-20">
|
|
|
|
<Transition.Child
|
|
|
|
as={React.Fragment}
|
|
|
|
enter="ease-out duration-300"
|
|
|
|
enterFrom="opacity-0 scale-95"
|
|
|
|
enterTo="opacity-100 scale-100"
|
|
|
|
leave="ease-in duration-200"
|
|
|
|
leaveFrom="opacity-100 scale-100"
|
|
|
|
leaveTo="opacity-0 scale-95"
|
|
|
|
>
|
2022-12-01 14:29:21 +00:00
|
|
|
<Dialog.Panel className="relative mx-auto max-w-2xl transform divide-y divide-gray-500 divide-opacity-10 rounded-xl bg-white bg-opacity-80 shadow-2xl ring-1 ring-black ring-opacity-5 backdrop-blur backdrop-filter transition-all">
|
2022-11-29 14:19:39 +00:00
|
|
|
<form>
|
2022-12-06 14:38:28 +00:00
|
|
|
<Combobox>
|
2022-11-29 14:19:39 +00:00
|
|
|
<div className="relative m-1">
|
|
|
|
<MagnifyingGlassIcon
|
|
|
|
className="pointer-events-none absolute top-3.5 left-4 h-5 w-5 text-gray-900 text-opacity-40"
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
<Combobox.Input
|
|
|
|
className="h-12 w-full border-0 bg-transparent pl-11 pr-4 text-gray-900 placeholder-gray-500 focus:ring-0 sm:text-sm outline-none"
|
|
|
|
placeholder="Search..."
|
|
|
|
onChange={(event) => setQuery(event.target.value)}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Combobox.Options
|
|
|
|
static
|
|
|
|
className="max-h-80 scroll-py-2 divide-y divide-gray-500 divide-opacity-10 overflow-y-auto"
|
|
|
|
>
|
|
|
|
{filteredIssues.length > 0 && (
|
|
|
|
<>
|
|
|
|
<li className="p-2">
|
|
|
|
{query === "" && (
|
|
|
|
<h2 className="mt-4 mb-2 px-3 text-xs font-semibold text-gray-900">
|
2022-12-17 20:01:13 +00:00
|
|
|
Select issues
|
2022-11-29 14:19:39 +00:00
|
|
|
</h2>
|
|
|
|
)}
|
|
|
|
<ul className="text-sm text-gray-700">
|
|
|
|
{filteredIssues.map((issue) => (
|
|
|
|
<Combobox.Option
|
|
|
|
key={issue.id}
|
2022-12-06 14:38:28 +00:00
|
|
|
as="label"
|
|
|
|
htmlFor={`issue-${issue.id}`}
|
2022-11-29 14:19:39 +00:00
|
|
|
value={{
|
|
|
|
name: issue.name,
|
|
|
|
url: `/projects/${issue.project}/issues/${issue.id}`,
|
|
|
|
}}
|
|
|
|
className={({ active }) =>
|
|
|
|
classNames(
|
2022-12-06 14:38:28 +00:00
|
|
|
"flex items-center justify-between cursor-pointer select-none rounded-md px-3 py-2",
|
2022-11-29 14:19:39 +00:00
|
|
|
active ? "bg-gray-900 bg-opacity-5 text-gray-900" : ""
|
|
|
|
)
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{({ active }) => (
|
|
|
|
<>
|
2022-12-06 14:38:28 +00:00
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
<span
|
2022-12-07 23:27:10 +00:00
|
|
|
className="flex-shrink-0 h-1.5 w-1.5 block rounded-full"
|
2022-12-06 14:38:28 +00:00
|
|
|
style={{
|
|
|
|
backgroundColor: issue.state_detail.color,
|
|
|
|
}}
|
|
|
|
/>
|
2022-12-07 23:27:10 +00:00
|
|
|
<span className="flex-shrink-0 text-xs text-gray-500">
|
2022-12-06 14:38:28 +00:00
|
|
|
{activeProject?.identifier}-{issue.sequence_id}
|
|
|
|
</span>
|
2022-12-07 23:27:10 +00:00
|
|
|
<span>{issue.name}</span>
|
2022-12-06 14:38:28 +00:00
|
|
|
</div>
|
2022-11-29 14:19:39 +00:00
|
|
|
{active && (
|
2022-12-06 14:38:28 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
onClick={() => {
|
|
|
|
router.push(
|
|
|
|
`/projects/${activeProject?.id}/issues/${issue.id}`
|
|
|
|
);
|
|
|
|
handleCommandPaletteClose();
|
|
|
|
}}
|
2022-12-07 23:27:10 +00:00
|
|
|
className="flex-shrink-0 text-gray-500"
|
2022-12-06 14:38:28 +00:00
|
|
|
>
|
2022-12-07 23:27:10 +00:00
|
|
|
Jump to...
|
2022-12-06 14:38:28 +00:00
|
|
|
</button>
|
2022-11-29 14:19:39 +00:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Combobox.Option>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{query === "" && (
|
2022-11-19 14:21:26 +00:00
|
|
|
<li className="p-2">
|
2022-11-29 14:19:39 +00:00
|
|
|
<h2 className="sr-only">Quick actions</h2>
|
2022-11-19 14:21:26 +00:00
|
|
|
<ul className="text-sm text-gray-700">
|
2022-11-29 14:19:39 +00:00
|
|
|
{quickActions.map((action) => (
|
2022-11-19 14:21:26 +00:00
|
|
|
<Combobox.Option
|
2022-11-29 14:19:39 +00:00
|
|
|
key={action.shortcut}
|
2022-11-19 14:21:26 +00:00
|
|
|
value={{
|
2022-11-29 14:19:39 +00:00
|
|
|
name: action.name,
|
|
|
|
onClick: action.onClick,
|
2022-11-19 14:21:26 +00:00
|
|
|
}}
|
|
|
|
className={({ active }) =>
|
|
|
|
classNames(
|
2022-11-29 14:19:39 +00:00
|
|
|
"flex cursor-default select-none items-center rounded-md px-3 py-2",
|
2022-11-19 14:21:26 +00:00
|
|
|
active ? "bg-gray-900 bg-opacity-5 text-gray-900" : ""
|
|
|
|
)
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{({ active }) => (
|
|
|
|
<>
|
2022-11-29 14:19:39 +00:00
|
|
|
<action.icon
|
2022-11-19 14:21:26 +00:00
|
|
|
className={classNames(
|
|
|
|
"h-6 w-6 flex-none text-gray-900 text-opacity-40",
|
|
|
|
active ? "text-opacity-100" : ""
|
|
|
|
)}
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
2022-11-29 14:19:39 +00:00
|
|
|
<span className="ml-3 flex-auto truncate">{action.name}</span>
|
|
|
|
<span className="ml-3 flex-none text-xs font-semibold text-gray-500">
|
|
|
|
<kbd className="font-sans">⌘</kbd>
|
|
|
|
<kbd className="font-sans">{action.shortcut}</kbd>
|
|
|
|
</span>
|
2022-11-19 14:21:26 +00:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</Combobox.Option>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</li>
|
2022-11-29 14:19:39 +00:00
|
|
|
)}
|
|
|
|
</Combobox.Options>
|
|
|
|
|
|
|
|
{query !== "" && filteredIssues.length === 0 && (
|
|
|
|
<div className="py-14 px-6 text-center sm:px-14">
|
|
|
|
<FolderIcon
|
|
|
|
className="mx-auto h-6 w-6 text-gray-900 text-opacity-40"
|
|
|
|
aria-hidden="true"
|
|
|
|
/>
|
|
|
|
<p className="mt-4 text-sm text-gray-900">
|
|
|
|
We couldn{"'"}t find any issue with that term. Please try again.
|
|
|
|
</p>
|
|
|
|
</div>
|
2022-11-19 14:21:26 +00:00
|
|
|
)}
|
2022-11-29 14:19:39 +00:00
|
|
|
</Combobox>
|
2022-11-19 14:21:26 +00:00
|
|
|
|
2022-12-17 20:01:13 +00:00
|
|
|
<div className="flex justify-end items-center gap-2 p-3">
|
2022-11-29 14:19:39 +00:00
|
|
|
<div>
|
|
|
|
<Button type="button" size="sm" onClick={handleCommandPaletteClose}>
|
|
|
|
Close
|
|
|
|
</Button>
|
2022-11-19 14:21:26 +00:00
|
|
|
</div>
|
2022-11-29 14:19:39 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2022-11-19 14:21:26 +00:00
|
|
|
</Dialog.Panel>
|
|
|
|
</Transition.Child>
|
|
|
|
</div>
|
|
|
|
</Dialog>
|
|
|
|
</Transition.Root>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default CommandPalette;
|