Add update progress functionality in modal (#4256)
* chore: add update progress in modal * chore: show tracking for current user * chore: current user header --------- Co-authored-by: Kamran Ahmed <kamranahmed.se@gmail.com>pull/4259/head
parent
14f9ad9530
commit
b85639d876
5 changed files with 300 additions and 44 deletions
@ -0,0 +1,22 @@ |
||||
type CloseIconProps = { |
||||
className?: string; |
||||
}; |
||||
|
||||
export function CloseIcon(props: CloseIconProps) { |
||||
const { className } = props; |
||||
|
||||
return ( |
||||
<svg |
||||
xmlns="http://www.w3.org/2000/svg" |
||||
fill="none" |
||||
width="24" |
||||
height="24" |
||||
viewBox="0 0 24 24" |
||||
stroke-width="1.5" |
||||
stroke="currentColor" |
||||
className={className} |
||||
> |
||||
<path d="M18 6 6 18" /><path d="m6 6 12 12" /> |
||||
</svg> |
||||
); |
||||
} |
@ -0,0 +1,70 @@ |
||||
import { useRef } from 'preact/hooks'; |
||||
import { useOutsideClick } from '../../hooks/use-outside-click'; |
||||
import { useKeydown } from '../../hooks/use-keydown'; |
||||
import { CloseIcon } from '../ReactIcons/CloseIcon'; |
||||
|
||||
type ProgressHintProps = { |
||||
onClose: () => void; |
||||
}; |
||||
|
||||
export function ProgressHint(props: ProgressHintProps) { |
||||
const { onClose } = props; |
||||
const containerEl = useRef<HTMLDivElement>(null); |
||||
|
||||
useOutsideClick(containerEl, onClose); |
||||
useKeydown('Escape', () => { |
||||
onClose(); |
||||
}); |
||||
return ( |
||||
<div className="fixed left-0 right-0 top-0 z-50 h-full items-center justify-center overflow-y-auto overflow-x-hidden overscroll-contain bg-black/50"> |
||||
<div className="relative flex h-full w-full items-center justify-center"> |
||||
<div |
||||
className="relative w-full max-w-lg rounded-md border border-yellow-300 bg-yellow-50 px-3 py-3 text-gray-500" |
||||
ref={containerEl} |
||||
> |
||||
<span className="mb-1.5 block text-xs font-medium uppercase text-green-600"> |
||||
Update Progress |
||||
</span> |
||||
<p className="text-sm">Use the keyboard shortcuts listed below.</p> |
||||
|
||||
<ul className="mb-1.5 mt-3 flex flex-col gap-1"> |
||||
<li className="text-sm leading-loose"> |
||||
<kbd className="rounded-md bg-gray-900 px-2 py-1.5 text-xs text-white"> |
||||
Right Mouse Click |
||||
</kbd>{' '} |
||||
to mark as Done. |
||||
</li> |
||||
<li className="text-sm leading-loose"> |
||||
<kbd className="rounded-md bg-gray-900 px-2 py-1.5 text-xs text-white"> |
||||
Shift |
||||
</kbd>{' '} |
||||
+{' '} |
||||
<kbd className="rounded-md bg-gray-900 px-2 py-1.5 text-xs text-white"> |
||||
Click |
||||
</kbd>{' '} |
||||
to mark as in progress. |
||||
</li> |
||||
<li className="text-sm leading-loose"> |
||||
<kbd className="rounded-md bg-gray-900 px-2 py-1.5 text-xs text-white"> |
||||
Option / Alt |
||||
</kbd>{' '} |
||||
+{' '} |
||||
<kbd className="rounded-md bg-gray-900 px-2 py-1.5 text-xs text-white"> |
||||
Click |
||||
</kbd>{' '} |
||||
to mark as skipped. |
||||
</li> |
||||
</ul> |
||||
<button |
||||
type="button" |
||||
className="absolute right-1.5 top-1.5 ml-auto inline-flex items-center rounded-lg bg-transparent p-1.5 text-sm text-gray-400 hover:bg-yellow-200 hover:text-yellow-900" |
||||
onClick={onClose} |
||||
> |
||||
<CloseIcon /> |
||||
<span class="sr-only">Close modal</span> |
||||
</button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
); |
||||
} |
Loading…
Reference in new issue