github-issue-tower-defence-management 1.90.0 → 1.91.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +19 -5
- package/bin/adapter/entry-points/cli/index.js +17 -13
- package/bin/adapter/entry-points/cli/index.js.map +1 -1
- package/bin/adapter/entry-points/cli/projectConfig.js +2 -0
- package/bin/adapter/entry-points/cli/projectConfig.js.map +1 -1
- package/bin/adapter/entry-points/console/consoleOperationApi.js +54 -27
- package/bin/adapter/entry-points/console/consoleOperationApi.js.map +1 -1
- package/bin/adapter/entry-points/console/consoleProjectResolver.js +38 -0
- package/bin/adapter/entry-points/console/consoleProjectResolver.js.map +1 -0
- package/bin/adapter/entry-points/console/consoleServer.js +3 -4
- package/bin/adapter/entry-points/console/consoleServer.js.map +1 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/index-BU6p3cGU.css +1 -0
- package/bin/adapter/entry-points/console/ui-dist/assets/index-BvuSQN9s.js +100 -0
- package/bin/adapter/entry-points/console/ui-dist/index.html +2 -2
- package/bin/adapter/entry-points/handlers/consoleListsWriter.js +1 -0
- package/bin/adapter/entry-points/handlers/consoleListsWriter.js.map +1 -1
- package/bin/adapter/repositories/issue/ApiV3CheerioRestIssueRepository.js +16 -0
- package/bin/adapter/repositories/issue/ApiV3CheerioRestIssueRepository.js.map +1 -1
- package/bin/domain/usecases/console/GenerateConsoleListsUseCase.js +3 -0
- package/bin/domain/usecases/console/GenerateConsoleListsUseCase.js.map +1 -1
- package/jest.config.js +57 -9
- package/package.json +17 -13
- package/src/adapter/entry-points/cli/index.test.ts +18 -3
- package/src/adapter/entry-points/cli/index.ts +32 -14
- package/src/adapter/entry-points/cli/projectConfig.ts +3 -0
- package/src/adapter/entry-points/console/consoleOperationApi.test.ts +129 -15
- package/src/adapter/entry-points/console/consoleOperationApi.ts +83 -28
- package/src/adapter/entry-points/console/consoleProjectResolver.test.ts +96 -0
- package/src/adapter/entry-points/console/consoleProjectResolver.ts +50 -0
- package/src/adapter/entry-points/console/consoleServer.test.ts +5 -4
- package/src/adapter/entry-points/console/consoleServer.ts +5 -7
- package/src/adapter/entry-points/console/ui/jest.setup.ts +1 -0
- package/src/adapter/entry-points/console/ui/jest.styleMock.js +1 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMarkdownContent.stories.tsx +27 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMarkdownContent.test.tsx +36 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMarkdownContent.tsx +50 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagram.stories.tsx +22 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagram.test.tsx +38 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/content/ConsoleMermaidDiagram.tsx +65 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleChangedFileList.stories.tsx +28 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleChangedFileList.test.tsx +42 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleChangedFileList.tsx +55 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleCommentList.stories.tsx +29 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleCommentList.test.tsx +55 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleCommentList.tsx +66 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleCommitList.stories.tsx +25 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleCommitList.test.tsx +53 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleCommitList.tsx +53 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemDetail.stories.tsx +79 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemDetail.test.tsx +81 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemDetail.tsx +229 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemIcon.stories.tsx +82 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemIcon.test.tsx +52 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsoleItemIcon.tsx +32 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsolePullRequestDetail.stories.tsx +31 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsolePullRequestDetail.test.tsx +40 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/detail/ConsolePullRequestDetail.tsx +88 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsolePanel.stories.tsx +26 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsolePanel.test.tsx +32 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsolePanel.tsx +36 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/{ConsoleProjectHeader.stories.tsx → layout/ConsoleProjectSummary.stories.tsx} +5 -5
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsoleProjectSummary.test.tsx +14 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/{ConsoleProjectHeader.tsx → layout/ConsoleProjectSummary.tsx} +3 -1
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsoleTabList.stories.tsx +70 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsoleTabList.test.tsx +59 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsoleTabList.tsx +41 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleItemList.stories.tsx +60 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleItemList.test.tsx +87 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleItemList.tsx +68 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleItemSummary.stories.tsx +25 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleItemSummary.test.tsx +43 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleItemSummary.tsx +34 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleStorySummary.stories.tsx +27 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleStorySummary.test.tsx +24 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleStorySummary.tsx +28 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleCloseActions.stories.tsx +14 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleCloseActions.test.tsx +21 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleCloseActions.tsx +26 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleNextActionDateActions.stories.tsx +20 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleNextActionDateActions.test.tsx +42 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleNextActionDateActions.tsx +28 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleOperationMenu.stories.tsx +55 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleOperationMenu.test.tsx +85 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleOperationMenu.tsx +58 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsolePullRequestReviewActions.stories.tsx +14 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsolePullRequestReviewActions.test.tsx +33 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsolePullRequestReviewActions.tsx +34 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleStatusActions.stories.tsx +17 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleStatusActions.test.tsx +49 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleStatusActions.tsx +66 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleStoryActions.stories.tsx +17 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleStoryActions.test.tsx +39 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/operations/ConsoleStoryActions.tsx +42 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleCaches.test.ts +22 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleCaches.ts +42 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleItemDetailData.test.ts +126 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleItemDetailData.ts +167 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleOperations.test.ts +198 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleOperations.ts +243 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleOverlay.test.ts +40 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleOverlay.ts +71 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleResource.test.ts +41 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleResource.ts +57 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleTabData.test.ts +63 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleTabData.ts +129 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleToken.test.ts +41 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/consoleApi.test.ts +155 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/consoleApi.ts +187 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/markdown.test.ts +76 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/markdown.ts +73 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/mermaidLoader.test.ts +27 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/mermaidLoader.ts +71 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/resourceCache.test.ts +56 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/resourceCache.ts +51 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/colors.test.ts +34 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/colors.ts +73 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/fileStatus.test.ts +35 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/fileStatus.ts +21 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/grouping.test.ts +91 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/grouping.ts +79 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/itemIcons.test.ts +97 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/itemIcons.ts +95 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/operations.test.ts +37 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/operations.ts +35 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/overlay.test.ts +124 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/overlay.ts +101 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/relativeTime.test.ts +52 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/relativeTime.ts +51 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/types.ts +141 -0
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsoleItemDetailContainer.test.tsx +79 -0
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsoleItemDetailContainer.tsx +109 -0
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.test.tsx +74 -0
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.tsx +137 -11
- package/src/adapter/entry-points/console/ui/src/features/console/testing/fixtures.ts +244 -0
- package/src/adapter/entry-points/console/ui/src/index.css +352 -2
- package/src/adapter/entry-points/console/ui/tsconfig.json +1 -0
- package/src/adapter/entry-points/console/ui/vite.config.ts +5 -0
- package/src/adapter/entry-points/console/ui-dist/assets/index-BU6p3cGU.css +1 -0
- package/src/adapter/entry-points/console/ui-dist/assets/index-PtVrAcBb.js +100 -0
- package/src/adapter/entry-points/console/ui-dist/index.html +2 -2
- package/src/adapter/entry-points/handlers/consoleListsWriter.test.ts +27 -2
- package/src/adapter/entry-points/handlers/consoleListsWriter.ts +1 -0
- package/src/adapter/repositories/issue/ApiV3CheerioRestIssueRepository.ts +25 -0
- package/src/domain/usecases/adapter-interfaces/IssueRepository.ts +4 -0
- package/src/domain/usecases/console/GenerateConsoleListsUseCase.test.ts +26 -0
- package/src/domain/usecases/console/GenerateConsoleListsUseCase.ts +17 -1
- package/types/adapter/entry-points/cli/index.d.ts.map +1 -1
- package/types/adapter/entry-points/cli/projectConfig.d.ts +1 -0
- package/types/adapter/entry-points/cli/projectConfig.d.ts.map +1 -1
- package/types/adapter/entry-points/console/consoleOperationApi.d.ts +6 -2
- package/types/adapter/entry-points/console/consoleOperationApi.d.ts.map +1 -1
- package/types/adapter/entry-points/console/consoleProjectResolver.d.ts +6 -0
- package/types/adapter/entry-points/console/consoleProjectResolver.d.ts.map +1 -0
- package/types/adapter/entry-points/console/consoleServer.d.ts +2 -3
- package/types/adapter/entry-points/console/consoleServer.d.ts.map +1 -1
- package/types/adapter/entry-points/handlers/consoleListsWriter.d.ts.map +1 -1
- package/types/adapter/repositories/issue/ApiV3CheerioRestIssueRepository.d.ts +1 -0
- package/types/adapter/repositories/issue/ApiV3CheerioRestIssueRepository.d.ts.map +1 -1
- package/types/domain/usecases/adapter-interfaces/IssueRepository.d.ts +1 -0
- package/types/domain/usecases/adapter-interfaces/IssueRepository.d.ts.map +1 -1
- package/types/domain/usecases/console/GenerateConsoleListsUseCase.d.ts +2 -1
- package/types/domain/usecases/console/GenerateConsoleListsUseCase.d.ts.map +1 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/index-DDjYPXRT.js +0 -49
- package/bin/adapter/entry-points/console/ui-dist/assets/index-DHlBLm7d.css +0 -1
- package/src/adapter/entry-points/console/ui/src/features/console/components/ConsoleListView.stories.tsx +0 -44
- package/src/adapter/entry-points/console/ui/src/features/console/components/ConsoleListView.tsx +0 -58
- package/src/adapter/entry-points/console/ui/src/features/console/components/ConsoleTabBar.stories.tsx +0 -34
- package/src/adapter/entry-points/console/ui/src/features/console/components/ConsoleTabBar.tsx +0 -32
- package/src/adapter/entry-points/console/ui/src/features/console/fixtures.ts +0 -47
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleList.ts +0 -78
- package/src/adapter/entry-points/console/ui/src/features/console/types.ts +0 -69
- package/src/adapter/entry-points/console/ui-dist/assets/index-DDjYPXRT.js +0 -49
- package/src/adapter/entry-points/console/ui-dist/assets/index-DHlBLm7d.css +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-divide-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-outline-style:solid;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}@layer theme{:root,:host{--font-sans:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-mono:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--spacing:.25rem;--container-3xl:48rem;--text-xs:.75rem;--text-xs--line-height:calc(1 / .75);--text-sm:.875rem;--text-sm--line-height:calc(1.25 / .875);--text-base:1rem;--text-base--line-height: 1.5 ;--font-weight-medium:500;--font-weight-semibold:600;--radius-md:.375rem;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4, 0, .2, 1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-border:#e5e5e5;--color-input:#e5e5e5;--color-ring:#0a0a0a;--color-background:#fff;--color-foreground:#0a0a0a;--color-primary:#171717;--color-primary-foreground:#fafafa;--color-secondary:#f5f5f5;--color-secondary-foreground:#171717;--color-muted-foreground:#737373;--color-accent:#f5f5f5;--color-accent-foreground:#171717;--color-destructive:#ef4444}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab,red,red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components;@layer utilities{.container{width:100%}@media(min-width:40rem){.container{max-width:40rem}}@media(min-width:48rem){.container{max-width:48rem}}@media(min-width:64rem){.container{max-width:64rem}}@media(min-width:80rem){.container{max-width:80rem}}@media(min-width:96rem){.container{max-width:96rem}}.mx-auto{margin-inline:auto}.flex{display:flex}.inline-flex{display:inline-flex}.h-8{height:calc(var(--spacing) * 8)}.h-9{height:calc(var(--spacing) * 9)}.h-10{height:calc(var(--spacing) * 10)}.max-w-3xl{max-width:var(--container-3xl)}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-baseline{align-items:baseline}.items-center{align-items:center}.justify-center{justify-content:center}.gap-1{gap:calc(var(--spacing) * 1)}.gap-2{gap:calc(var(--spacing) * 2)}:where(.divide-y>:not(:last-child)){--tw-divide-y-reverse:0;border-bottom-style:var(--tw-border-style);border-top-style:var(--tw-border-style);border-top-width:calc(1px * var(--tw-divide-y-reverse));border-bottom-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)))}:where(.divide-border>:not(:last-child)){border-color:var(--color-border)}.rounded-md{border-radius:var(--radius-md)}.border{border-style:var(--tw-border-style);border-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-border{border-color:var(--color-border)}.border-input{border-color:var(--color-input)}.border-transparent{border-color:#0000}.bg-background{background-color:var(--color-background)}.bg-primary{background-color:var(--color-primary)}.bg-secondary{background-color:var(--color-secondary)}.p-2{padding:calc(var(--spacing) * 2)}.p-3{padding:calc(var(--spacing) * 3)}.p-4{padding:calc(var(--spacing) * 4)}.px-2\.5{padding-inline:calc(var(--spacing) * 2.5)}.px-3{padding-inline:calc(var(--spacing) * 3)}.px-4{padding-inline:calc(var(--spacing) * 4)}.px-8{padding-inline:calc(var(--spacing) * 8)}.py-0\.5{padding-block:calc(var(--spacing) * .5)}.py-2{padding-block:calc(var(--spacing) * 2)}.text-base{font-size:var(--text-base);line-height:var(--tw-leading,var(--text-base--line-height))}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.whitespace-nowrap{white-space:nowrap}.text-destructive{color:var(--color-destructive)}.text-foreground{color:var(--color-foreground)}.text-muted-foreground{color:var(--color-muted-foreground)}.text-primary-foreground{color:var(--color-primary-foreground)}.text-secondary-foreground{color:var(--color-secondary-foreground)}.underline-offset-2{text-underline-offset:2px}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}@media(hover:hover){.hover\:bg-accent:hover{background-color:var(--color-accent)}.hover\:bg-primary\/90:hover{background-color:#171717e6}@supports (color:color-mix(in lab,red,red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--color-primary) 90%,transparent)}}.hover\:bg-secondary\/80:hover{background-color:#f5f5f5cc}@supports (color:color-mix(in lab,red,red)){.hover\:bg-secondary\/80:hover{background-color:color-mix(in oklab,var(--color-secondary) 80%,transparent)}}.hover\:text-accent-foreground:hover{color:var(--color-accent-foreground)}.hover\:underline:hover{text-decoration-line:underline}}.focus-visible\:ring-2:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--color-ring)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:opacity-50:disabled{opacity:.5}}body{background-color:var(--color-background);color:var(--color-foreground);margin:0;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif}@property --tw-divide-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
-
import { consoleListItemsFixture } from '../fixtures';
|
|
3
|
-
import { ConsoleListView } from './ConsoleListView';
|
|
4
|
-
|
|
5
|
-
const meta: Meta<typeof ConsoleListView> = {
|
|
6
|
-
title: 'Console/ConsoleListView',
|
|
7
|
-
component: ConsoleListView,
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export default meta;
|
|
11
|
-
|
|
12
|
-
type Story = StoryObj<typeof ConsoleListView>;
|
|
13
|
-
|
|
14
|
-
export const WithItems: Story = {
|
|
15
|
-
args: {
|
|
16
|
-
items: consoleListItemsFixture,
|
|
17
|
-
isLoading: false,
|
|
18
|
-
error: null,
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export const Loading: Story = {
|
|
23
|
-
args: {
|
|
24
|
-
items: [],
|
|
25
|
-
isLoading: true,
|
|
26
|
-
error: null,
|
|
27
|
-
},
|
|
28
|
-
};
|
|
29
|
-
|
|
30
|
-
export const Empty: Story = {
|
|
31
|
-
args: {
|
|
32
|
-
items: [],
|
|
33
|
-
isLoading: false,
|
|
34
|
-
error: null,
|
|
35
|
-
},
|
|
36
|
-
};
|
|
37
|
-
|
|
38
|
-
export const ErrorState: Story = {
|
|
39
|
-
args: {
|
|
40
|
-
items: [],
|
|
41
|
-
isLoading: false,
|
|
42
|
-
error: 'HTTP 404',
|
|
43
|
-
},
|
|
44
|
-
};
|
package/src/adapter/entry-points/console/ui/src/features/console/components/ConsoleListView.tsx
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { Badge } from '@/components/ui/badge';
|
|
2
|
-
import type { ConsoleListItem } from '../types';
|
|
3
|
-
|
|
4
|
-
export type ConsoleListViewProps = {
|
|
5
|
-
items: ConsoleListItem[];
|
|
6
|
-
isLoading: boolean;
|
|
7
|
-
error: string | null;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export const ConsoleListView = ({
|
|
11
|
-
items,
|
|
12
|
-
isLoading,
|
|
13
|
-
error,
|
|
14
|
-
}: ConsoleListViewProps) => {
|
|
15
|
-
if (error !== null) {
|
|
16
|
-
return (
|
|
17
|
-
<p role="alert" className="p-4 text-sm text-destructive">
|
|
18
|
-
Failed to load list: {error}
|
|
19
|
-
</p>
|
|
20
|
-
);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
if (isLoading) {
|
|
24
|
-
return <p className="p-4 text-sm text-muted-foreground">Loading list...</p>;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
if (items.length === 0) {
|
|
28
|
-
return <p className="p-4 text-sm text-muted-foreground">No items.</p>;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
return (
|
|
32
|
-
<ul className="divide-y divide-border">
|
|
33
|
-
{items.map((item) => (
|
|
34
|
-
<li key={item.itemId} className="flex flex-col gap-1 p-3">
|
|
35
|
-
<div className="flex items-center gap-2">
|
|
36
|
-
<Badge variant={item.isPr ? 'default' : 'secondary'}>
|
|
37
|
-
{item.isPr ? 'PR' : 'Issue'}
|
|
38
|
-
</Badge>
|
|
39
|
-
<a
|
|
40
|
-
href={item.url}
|
|
41
|
-
className="font-medium underline-offset-2 hover:underline"
|
|
42
|
-
>
|
|
43
|
-
{item.title}
|
|
44
|
-
</a>
|
|
45
|
-
<span className="text-sm text-muted-foreground">
|
|
46
|
-
#{item.number}
|
|
47
|
-
</span>
|
|
48
|
-
</div>
|
|
49
|
-
<div className="flex flex-wrap items-center gap-2 text-xs text-muted-foreground">
|
|
50
|
-
<span>{item.repo}</span>
|
|
51
|
-
{item.story !== '' && <span>story: {item.story}</span>}
|
|
52
|
-
<span>{new Date(item.createdAt).toISOString()}</span>
|
|
53
|
-
</div>
|
|
54
|
-
</li>
|
|
55
|
-
))}
|
|
56
|
-
</ul>
|
|
57
|
-
);
|
|
58
|
-
};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
-
import { useState } from 'react';
|
|
3
|
-
import type { ConsoleTabName } from '../types';
|
|
4
|
-
import { ConsoleTabBar } from './ConsoleTabBar';
|
|
5
|
-
|
|
6
|
-
const meta: Meta<typeof ConsoleTabBar> = {
|
|
7
|
-
title: 'Console/ConsoleTabBar',
|
|
8
|
-
component: ConsoleTabBar,
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
export default meta;
|
|
12
|
-
|
|
13
|
-
type Story = StoryObj<typeof ConsoleTabBar>;
|
|
14
|
-
|
|
15
|
-
export const PrsActive: Story = {
|
|
16
|
-
args: {
|
|
17
|
-
activeTab: 'prs',
|
|
18
|
-
onSelectTab: () => undefined,
|
|
19
|
-
},
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
export const TriageActive: Story = {
|
|
23
|
-
args: {
|
|
24
|
-
activeTab: 'triage',
|
|
25
|
-
onSelectTab: () => undefined,
|
|
26
|
-
},
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
export const Interactive: Story = {
|
|
30
|
-
render: () => {
|
|
31
|
-
const [activeTab, setActiveTab] = useState<ConsoleTabName>('prs');
|
|
32
|
-
return <ConsoleTabBar activeTab={activeTab} onSelectTab={setActiveTab} />;
|
|
33
|
-
},
|
|
34
|
-
};
|
package/src/adapter/entry-points/console/ui/src/features/console/components/ConsoleTabBar.tsx
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { Button } from '@/components/ui/button';
|
|
2
|
-
import { cn } from '@/lib/utils';
|
|
3
|
-
import { CONSOLE_TABS, type ConsoleTabName } from '../types';
|
|
4
|
-
|
|
5
|
-
export type ConsoleTabBarProps = {
|
|
6
|
-
activeTab: ConsoleTabName;
|
|
7
|
-
onSelectTab: (tab: ConsoleTabName) => void;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export const ConsoleTabBar = ({
|
|
11
|
-
activeTab,
|
|
12
|
-
onSelectTab,
|
|
13
|
-
}: ConsoleTabBarProps) => (
|
|
14
|
-
<nav
|
|
15
|
-
aria-label="Console tabs"
|
|
16
|
-
className="flex flex-wrap gap-1 border-b border-border p-2"
|
|
17
|
-
>
|
|
18
|
-
{CONSOLE_TABS.map((tab) => (
|
|
19
|
-
<Button
|
|
20
|
-
key={tab.name}
|
|
21
|
-
type="button"
|
|
22
|
-
size="sm"
|
|
23
|
-
variant={tab.name === activeTab ? 'default' : 'ghost'}
|
|
24
|
-
aria-current={tab.name === activeTab ? 'page' : undefined}
|
|
25
|
-
className={cn(tab.name === activeTab && 'font-semibold')}
|
|
26
|
-
onClick={() => onSelectTab(tab.name)}
|
|
27
|
-
>
|
|
28
|
-
{tab.label}
|
|
29
|
-
</Button>
|
|
30
|
-
))}
|
|
31
|
-
</nav>
|
|
32
|
-
);
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import type { ConsoleListItem } from './types';
|
|
2
|
-
|
|
3
|
-
export const consoleListItemsFixture: ConsoleListItem[] = [
|
|
4
|
-
{
|
|
5
|
-
number: 844,
|
|
6
|
-
title: 'Add serveConsole server skeleton under entry-points',
|
|
7
|
-
url: 'https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/pull/851',
|
|
8
|
-
repo: 'HiromiShikata/npm-cli-github-issue-tower-defence-management',
|
|
9
|
-
nameWithOwner:
|
|
10
|
-
'HiromiShikata/npm-cli-github-issue-tower-defence-management',
|
|
11
|
-
projectItemId: 'PVTI_lADOABCD1234zgABCD01',
|
|
12
|
-
itemId: 'PVTI_lADOABCD1234zgABCD01',
|
|
13
|
-
isPr: true,
|
|
14
|
-
story: 'TDPM Console port',
|
|
15
|
-
labels: ['claude'],
|
|
16
|
-
createdAt: '2026-06-17T02:14:33.000Z',
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
number: 845,
|
|
20
|
-
title:
|
|
21
|
-
'Scaffold React console UI under entry-points with build bundling and minimal tab view',
|
|
22
|
-
url: 'https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/845',
|
|
23
|
-
repo: 'HiromiShikata/npm-cli-github-issue-tower-defence-management',
|
|
24
|
-
nameWithOwner:
|
|
25
|
-
'HiromiShikata/npm-cli-github-issue-tower-defence-management',
|
|
26
|
-
projectItemId: 'PVTI_lADOABCD1234zgABCD02',
|
|
27
|
-
itemId: 'PVTI_lADOABCD1234zgABCD02',
|
|
28
|
-
isPr: false,
|
|
29
|
-
story: 'TDPM Console port',
|
|
30
|
-
labels: ['claude'],
|
|
31
|
-
createdAt: '2026-06-17T05:48:09.000Z',
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
number: 778,
|
|
35
|
-
title: 'Add Sonnet to Opus weekly-limit fallback routing per token',
|
|
36
|
-
url: 'https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/778',
|
|
37
|
-
repo: 'HiromiShikata/npm-cli-github-issue-tower-defence-management',
|
|
38
|
-
nameWithOwner:
|
|
39
|
-
'HiromiShikata/npm-cli-github-issue-tower-defence-management',
|
|
40
|
-
projectItemId: 'PVTI_lADOABCD1234zgABCD03',
|
|
41
|
-
itemId: 'PVTI_lADOABCD1234zgABCD03',
|
|
42
|
-
isPr: false,
|
|
43
|
-
story: 'regular / workflow improvement',
|
|
44
|
-
labels: [],
|
|
45
|
-
createdAt: '2026-06-12T23:01:55.000Z',
|
|
46
|
-
},
|
|
47
|
-
];
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
import { useEffect, useState } from 'react';
|
|
2
|
-
import type { ConsoleListItem, ConsoleTabName } from '../types';
|
|
3
|
-
import { useConsoleToken } from './useConsoleToken';
|
|
4
|
-
|
|
5
|
-
const buildListUrl = (pjcode: string, tab: ConsoleTabName): string =>
|
|
6
|
-
`/projects/${pjcode}/${tab}/list.json`;
|
|
7
|
-
|
|
8
|
-
const extractItems = (payload: unknown): ConsoleListItem[] => {
|
|
9
|
-
if (
|
|
10
|
-
payload !== null &&
|
|
11
|
-
typeof payload === 'object' &&
|
|
12
|
-
'items' in payload &&
|
|
13
|
-
Array.isArray((payload as { items: unknown }).items)
|
|
14
|
-
) {
|
|
15
|
-
return (payload as { items: ConsoleListItem[] }).items;
|
|
16
|
-
}
|
|
17
|
-
return [];
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
export type ConsoleListState = {
|
|
21
|
-
items: ConsoleListItem[];
|
|
22
|
-
isLoading: boolean;
|
|
23
|
-
error: string | null;
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
export const useConsoleList = (
|
|
27
|
-
pjcode: string | null,
|
|
28
|
-
tab: ConsoleTabName,
|
|
29
|
-
): ConsoleListState => {
|
|
30
|
-
const { appendToken } = useConsoleToken();
|
|
31
|
-
const [items, setItems] = useState<ConsoleListItem[]>([]);
|
|
32
|
-
const [isLoading, setIsLoading] = useState<boolean>(true);
|
|
33
|
-
const [error, setError] = useState<string | null>(null);
|
|
34
|
-
|
|
35
|
-
useEffect(() => {
|
|
36
|
-
let cancelled = false;
|
|
37
|
-
setIsLoading(true);
|
|
38
|
-
setError(null);
|
|
39
|
-
|
|
40
|
-
if (pjcode === null) {
|
|
41
|
-
setItems([]);
|
|
42
|
-
setIsLoading(false);
|
|
43
|
-
setError('No project specified in the URL path.');
|
|
44
|
-
return () => {
|
|
45
|
-
cancelled = true;
|
|
46
|
-
};
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
const url = appendToken(buildListUrl(pjcode, tab));
|
|
50
|
-
fetch(url)
|
|
51
|
-
.then(async (response) => {
|
|
52
|
-
if (!response.ok) {
|
|
53
|
-
throw new Error(`HTTP ${response.status}`);
|
|
54
|
-
}
|
|
55
|
-
return response.json();
|
|
56
|
-
})
|
|
57
|
-
.then((payload: unknown) => {
|
|
58
|
-
if (cancelled) {
|
|
59
|
-
return;
|
|
60
|
-
}
|
|
61
|
-
setItems(extractItems(payload));
|
|
62
|
-
setIsLoading(false);
|
|
63
|
-
})
|
|
64
|
-
.catch((cause: unknown) => {
|
|
65
|
-
if (cancelled) {
|
|
66
|
-
return;
|
|
67
|
-
}
|
|
68
|
-
setError(cause instanceof Error ? cause.message : String(cause));
|
|
69
|
-
setIsLoading(false);
|
|
70
|
-
});
|
|
71
|
-
|
|
72
|
-
return () => {
|
|
73
|
-
cancelled = true;
|
|
74
|
-
};
|
|
75
|
-
}, [pjcode, tab, appendToken]);
|
|
76
|
-
|
|
77
|
-
return { items, isLoading, error };
|
|
78
|
-
};
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
export type ConsoleColor =
|
|
2
|
-
| 'GRAY'
|
|
3
|
-
| 'BLUE'
|
|
4
|
-
| 'GREEN'
|
|
5
|
-
| 'YELLOW'
|
|
6
|
-
| 'ORANGE'
|
|
7
|
-
| 'RED'
|
|
8
|
-
| 'PINK'
|
|
9
|
-
| 'PURPLE';
|
|
10
|
-
|
|
11
|
-
export type ConsoleListItem = {
|
|
12
|
-
number: number;
|
|
13
|
-
title: string;
|
|
14
|
-
url: string;
|
|
15
|
-
repo: string;
|
|
16
|
-
nameWithOwner: string;
|
|
17
|
-
projectItemId: string;
|
|
18
|
-
itemId: string;
|
|
19
|
-
isPr: boolean;
|
|
20
|
-
story: string;
|
|
21
|
-
labels: string[];
|
|
22
|
-
createdAt: string;
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
export type ConsoleFieldOption = {
|
|
26
|
-
id: string;
|
|
27
|
-
name: string;
|
|
28
|
-
color: ConsoleColor;
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
export type ConsoleStatusTab = {
|
|
32
|
-
pjcode: string;
|
|
33
|
-
generatedAt: string;
|
|
34
|
-
statusOptions: ConsoleFieldOption[];
|
|
35
|
-
storyOrder: string[];
|
|
36
|
-
storyColors: Record<string, { color: ConsoleColor }>;
|
|
37
|
-
items: ConsoleListItem[];
|
|
38
|
-
};
|
|
39
|
-
|
|
40
|
-
export type ConsoleTriageTab = {
|
|
41
|
-
pjcode: string;
|
|
42
|
-
generatedAt: string;
|
|
43
|
-
storyOptions: ConsoleFieldOption[];
|
|
44
|
-
storyOrder: string[];
|
|
45
|
-
storyColors: Record<string, ConsoleColor>;
|
|
46
|
-
items: ConsoleListItem[];
|
|
47
|
-
};
|
|
48
|
-
|
|
49
|
-
export type ConsoleTabData = ConsoleStatusTab | ConsoleTriageTab;
|
|
50
|
-
|
|
51
|
-
export type ConsoleTabName =
|
|
52
|
-
| 'prs'
|
|
53
|
-
| 'triage'
|
|
54
|
-
| 'unread'
|
|
55
|
-
| 'failed-preparation'
|
|
56
|
-
| 'todo-by-human';
|
|
57
|
-
|
|
58
|
-
export type ConsoleTab = {
|
|
59
|
-
name: ConsoleTabName;
|
|
60
|
-
label: string;
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
export const CONSOLE_TABS: ConsoleTab[] = [
|
|
64
|
-
{ name: 'prs', label: 'Awaiting Quality Check' },
|
|
65
|
-
{ name: 'triage', label: 'Triage' },
|
|
66
|
-
{ name: 'unread', label: 'Unread' },
|
|
67
|
-
{ name: 'failed-preparation', label: 'Failed Preparation' },
|
|
68
|
-
{ name: 'todo-by-human', label: 'Todo By Human' },
|
|
69
|
-
];
|