This commit is contained in:
sriramveeraghanta 2023-08-10 16:00:55 +05:30
parent 675d21c3f0
commit be5bc765fc
4 changed files with 510 additions and 2007 deletions

View File

@ -1,11 +1,8 @@
import React, { useCallback, useEffect, useState } from "react";
import { useRouter } from "next/router";
import useSWR from "swr";
// hooks
import useTheme from "hooks/use-theme";
import useToast from "hooks/use-toast";
import useUser from "hooks/use-user";
// components
@ -47,7 +44,6 @@ export const CommandPalette: React.FC = () => {
const { user } = useUser();
const { setToastAlert } = useToast();
const { toggleCollapsed } = useTheme();
const { data: issueDetails } = useSWR(
workspaceSlug && projectId && issueId ? ISSUE_DETAILS(issueId as string) : null,
@ -86,8 +82,7 @@ export const CommandPalette: React.FC = () => {
if (
!(e.target instanceof HTMLTextAreaElement) &&
!(e.target instanceof HTMLInputElement) &&
// !(e.target as Element).classList?.contains("remirror-editor") &&
(e.target === document || (e.target instanceof Element && !e.target.closest(".tiptap-editor-container")))
!(e.target as Element).classList?.contains("tiptap-editor-container")
) {
if ((ctrlKey || metaKey) && keyPressed === "k") {
e.preventDefault();
@ -97,8 +92,9 @@ export const CommandPalette: React.FC = () => {
copyIssueUrlToClipboard();
} else if (keyPressed === "b") {
e.preventDefault();
toggleCollapsed();
store.theme.setSidebarCollapsed();
} else if (keyPressed === "backspace") {
console.log("KEYDOWN")
e.preventDefault();
setIsBulkDeleteIssuesModalOpen(true);
}
@ -120,7 +116,7 @@ export const CommandPalette: React.FC = () => {
}
}
},
[copyIssueUrlToClipboard, toggleCollapsed]
[copyIssueUrlToClipboard]
);
useEffect(() => {

View File

@ -49,8 +49,6 @@ export const WorkspaceHelpSection: React.FC<WorkspaceHelpSectionProps> = ({ setS
const helpOptionsRef = useRef<HTMLDivElement | null>(null);
const { collapsed: sidebarCollapse, toggleCollapsed } = useTheme();
useOutsideClickDetector(helpOptionsRef, () => setIsNeedHelpOpen(false));
return (

View File

@ -60,13 +60,6 @@
"next-pwa": "^5.6.0",
"next-themes": "^0.2.1",
"nprogress": "^0.2.0",
"prosemirror-commands": "^1.5.2",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.19.3",
"prosemirror-schema-list": "^1.3.0",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.7.4",
"prosemirror-view": "^1.31.7",
"react": "18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-color": "^2.19.3",
@ -75,7 +68,6 @@
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.38.0",
"react-markdown": "^8.0.7",
"remirror": "^2.0.23",
"sharp": "^0.32.1",
"sonner": "^0.6.2",
"swr": "^2.1.3",

2495
yarn.lock

File diff suppressed because it is too large Load Diff