github-issue-tower-defence-management 1.165.1 → 1.166.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 +14 -0
- package/bin/adapter/entry-points/console/consoleOperationApi.js +44 -1
- package/bin/adapter/entry-points/console/consoleOperationApi.js.map +1 -1
- package/bin/adapter/entry-points/console/consoleTabNames.js +1 -0
- package/bin/adapter/entry-points/console/consoleTabNames.js.map +1 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/index-CrSqMAVR.js +86 -0
- package/bin/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/bin/adapter/entry-points/console/webServer.js +2 -0
- package/bin/adapter/entry-points/console/webServer.js.map +1 -1
- package/bin/domain/usecases/ClearDependedIssueURLUseCase.js +32 -24
- package/bin/domain/usecases/ClearDependedIssueURLUseCase.js.map +1 -1
- package/bin/domain/usecases/console/GenerateConsoleListsUseCase.js +23 -0
- package/bin/domain/usecases/console/GenerateConsoleListsUseCase.js.map +1 -1
- package/package.json +1 -1
- package/src/adapter/entry-points/console/consoleOperationApi.test.ts +211 -0
- package/src/adapter/entry-points/console/consoleOperationApi.ts +63 -0
- package/src/adapter/entry-points/console/consoleTabNames.ts +1 -0
- package/src/adapter/entry-points/console/ui/e2e/consoleScenario.spec.ts +61 -0
- package/src/adapter/entry-points/console/ui/e2e/consoleTestHarness.ts +63 -2
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsoleTabList.stories.tsx +4 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/layout/ConsoleTabList.test.tsx +1 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleStoryList.stories.tsx +77 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleStoryList.test.tsx +196 -0
- package/src/adapter/entry-points/console/ui/src/features/console/components/list/ConsoleStoryList.tsx +163 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleNavigation.test.ts +1 -0
- package/src/adapter/entry-points/console/ui/src/features/console/hooks/useConsoleTabData.ts +15 -0
- package/src/adapter/entry-points/console/ui/src/features/console/lib/consoleApi.ts +29 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/tabAdvance.test.ts +1 -0
- package/src/adapter/entry-points/console/ui/src/features/console/logic/types.ts +10 -1
- package/src/adapter/entry-points/console/ui/src/features/console/pages/ConsolePage.tsx +43 -8
- package/src/adapter/entry-points/console/ui-dist/assets/index-CrSqMAVR.js +86 -0
- package/src/adapter/entry-points/console/ui-dist/index.html +1 -1
- package/src/adapter/entry-points/console/webServer.ts +3 -0
- package/src/domain/usecases/ClearDependedIssueURLUseCase.test.ts +80 -1
- package/src/domain/usecases/ClearDependedIssueURLUseCase.ts +45 -31
- package/src/domain/usecases/console/GenerateConsoleListsUseCase.test.ts +86 -1
- package/src/domain/usecases/console/GenerateConsoleListsUseCase.ts +49 -1
- package/types/adapter/entry-points/console/consoleOperationApi.d.ts +1 -0
- package/types/adapter/entry-points/console/consoleOperationApi.d.ts.map +1 -1
- package/types/adapter/entry-points/console/consoleTabNames.d.ts.map +1 -1
- package/types/adapter/entry-points/console/webServer.d.ts.map +1 -1
- package/types/domain/usecases/ClearDependedIssueURLUseCase.d.ts +1 -0
- package/types/domain/usecases/ClearDependedIssueURLUseCase.d.ts.map +1 -1
- package/types/domain/usecases/console/GenerateConsoleListsUseCase.d.ts +18 -1
- package/types/domain/usecases/console/GenerateConsoleListsUseCase.d.ts.map +1 -1
- package/bin/adapter/entry-points/console/ui-dist/assets/index-CHUtr_4X.js +0 -86
- package/src/adapter/entry-points/console/ui-dist/assets/index-CHUtr_4X.js +0 -86
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>TDPM Console</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-CrSqMAVR.js"></script>
|
|
8
8
|
<link rel="stylesheet" crossorigin href="/assets/index-U8I8ESZj.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body>
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
ConsoleProjectResolver,
|
|
27
27
|
handleAttachmentUpload,
|
|
28
28
|
handleComment,
|
|
29
|
+
handleCreateIssue,
|
|
29
30
|
handleIntmux,
|
|
30
31
|
handleReview,
|
|
31
32
|
handleReviewComment,
|
|
@@ -507,6 +508,8 @@ const dispatchOperation = (
|
|
|
507
508
|
return handleReviewComment(context, body);
|
|
508
509
|
case '/api/upload':
|
|
509
510
|
return handleAttachmentUpload(context, body);
|
|
511
|
+
case '/api/createissue':
|
|
512
|
+
return handleCreateIssue(context, body);
|
|
510
513
|
default:
|
|
511
514
|
return null;
|
|
512
515
|
}
|
|
@@ -259,12 +259,91 @@ describe('ClearDependedIssueURLUseCase', () => {
|
|
|
259
259
|
],
|
|
260
260
|
},
|
|
261
261
|
{
|
|
262
|
-
name: 'should
|
|
262
|
+
name: 'should call clearProjectField and createComment when dependedIssue is closed and the issue list came from the incremental cache',
|
|
263
263
|
input: {
|
|
264
264
|
project: basicProject,
|
|
265
265
|
issues: [basicIssueOne, basicIssueTwo, basicIssueThree],
|
|
266
266
|
cacheUsed: true,
|
|
267
267
|
},
|
|
268
|
+
expectedIssueRepositoryClearProjectFieldCalls: [
|
|
269
|
+
[basicProject, 'fieldId', basicIssueTwo],
|
|
270
|
+
],
|
|
271
|
+
expectedIssueRepositoryUpdateTextFieldCalls: [
|
|
272
|
+
[basicProject, 'fieldId', basicIssueThree, 'url2'],
|
|
273
|
+
],
|
|
274
|
+
expectedIssueRepositoryCreateCommentCalls: [
|
|
275
|
+
[
|
|
276
|
+
basicIssueTwo,
|
|
277
|
+
'All depended issues are already closed, dependency field cleared:\n- url1',
|
|
278
|
+
],
|
|
279
|
+
[
|
|
280
|
+
basicIssueThree,
|
|
281
|
+
'Some depended issues are already closed, removed from dependency field:\n- url1',
|
|
282
|
+
],
|
|
283
|
+
],
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
name: 'should not call clearProjectField and createComment when dependedIssue is not found and the issue list came from the incremental cache',
|
|
287
|
+
input: {
|
|
288
|
+
project: basicProject,
|
|
289
|
+
issues: [
|
|
290
|
+
basicIssueOne,
|
|
291
|
+
{
|
|
292
|
+
...basicIssueTwo,
|
|
293
|
+
dependedIssueUrls: ['url4'],
|
|
294
|
+
},
|
|
295
|
+
],
|
|
296
|
+
cacheUsed: true,
|
|
297
|
+
},
|
|
298
|
+
expectedIssueRepositoryClearProjectFieldCalls: [],
|
|
299
|
+
expectedIssueRepositoryUpdateTextFieldCalls: [],
|
|
300
|
+
expectedIssueRepositoryCreateCommentCalls: [],
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
name: 'should keep a dependedIssue that is absent from the incremental cache and remove only the closed one',
|
|
304
|
+
input: {
|
|
305
|
+
project: basicProject,
|
|
306
|
+
issues: [
|
|
307
|
+
basicIssueOne,
|
|
308
|
+
{
|
|
309
|
+
...basicIssueThree,
|
|
310
|
+
dependedIssueUrls: ['url1', 'url4'],
|
|
311
|
+
},
|
|
312
|
+
],
|
|
313
|
+
cacheUsed: true,
|
|
314
|
+
},
|
|
315
|
+
expectedIssueRepositoryClearProjectFieldCalls: [],
|
|
316
|
+
expectedIssueRepositoryUpdateTextFieldCalls: [
|
|
317
|
+
[
|
|
318
|
+
basicProject,
|
|
319
|
+
'fieldId',
|
|
320
|
+
{ ...basicIssueThree, dependedIssueUrls: ['url1', 'url4'] },
|
|
321
|
+
'url4',
|
|
322
|
+
],
|
|
323
|
+
],
|
|
324
|
+
expectedIssueRepositoryCreateCommentCalls: [
|
|
325
|
+
[
|
|
326
|
+
{ ...basicIssueThree, dependedIssueUrls: ['url1', 'url4'] },
|
|
327
|
+
'Some depended issues are already closed, removed from dependency field:\n- url1',
|
|
328
|
+
],
|
|
329
|
+
],
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
name: 'should not call clearProjectField and createComment for a circular dependency when the issue list came from the incremental cache',
|
|
333
|
+
input: {
|
|
334
|
+
project: basicProject,
|
|
335
|
+
issues: [
|
|
336
|
+
{
|
|
337
|
+
...basicIssueTwo,
|
|
338
|
+
dependedIssueUrls: ['url3'],
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
...basicIssueThree,
|
|
342
|
+
dependedIssueUrls: ['url2'],
|
|
343
|
+
},
|
|
344
|
+
],
|
|
345
|
+
cacheUsed: true,
|
|
346
|
+
},
|
|
268
347
|
expectedIssueRepositoryClearProjectFieldCalls: [],
|
|
269
348
|
expectedIssueRepositoryUpdateTextFieldCalls: [],
|
|
270
349
|
expectedIssueRepositoryCreateCommentCalls: [],
|
|
@@ -17,38 +17,17 @@ export class ClearDependedIssueURLUseCase {
|
|
|
17
17
|
}): Promise<void> => {
|
|
18
18
|
const dependedIssueUrlSeparatedByComma =
|
|
19
19
|
input.project.dependedIssueUrlSeparatedByComma;
|
|
20
|
-
if (!dependedIssueUrlSeparatedByComma
|
|
20
|
+
if (!dependedIssueUrlSeparatedByComma) {
|
|
21
21
|
return;
|
|
22
22
|
}
|
|
23
|
+
const absentDependedIssueIsResolvable = !input.cacheUsed;
|
|
23
24
|
for (const issue of input.issues) {
|
|
24
25
|
if (issue.dependedIssueUrls.length <= 0 || issue.isClosed) {
|
|
25
26
|
continue;
|
|
26
27
|
}
|
|
27
|
-
const circularDependedIssueUrls =
|
|
28
|
-
(
|
|
29
|
-
|
|
30
|
-
const circularDependedIssues = new Set<string>();
|
|
31
|
-
const stack = [dependedIssueUrl];
|
|
32
|
-
while (stack.length > 0) {
|
|
33
|
-
const url = stack.pop();
|
|
34
|
-
if (!url) {
|
|
35
|
-
throw new Error('url is undefined');
|
|
36
|
-
}
|
|
37
|
-
if (circularDependedIssues.has(url)) {
|
|
38
|
-
continue;
|
|
39
|
-
}
|
|
40
|
-
circularDependedIssues.add(url);
|
|
41
|
-
const dependedIssue = input.issues.find(
|
|
42
|
-
(issue) => issue.url === url,
|
|
43
|
-
);
|
|
44
|
-
if (!dependedIssue) {
|
|
45
|
-
continue;
|
|
46
|
-
}
|
|
47
|
-
stack.push(...dependedIssue.dependedIssueUrls);
|
|
48
|
-
}
|
|
49
|
-
return circularDependedIssues.has(issue.url);
|
|
50
|
-
},
|
|
51
|
-
);
|
|
28
|
+
const circularDependedIssueUrls = absentDependedIssueIsResolvable
|
|
29
|
+
? this.findCircularDependedIssueUrls(issue, input.issues)
|
|
30
|
+
: [];
|
|
52
31
|
if (circularDependedIssueUrls.length > 0) {
|
|
53
32
|
await this.issueRepository.clearProjectField(
|
|
54
33
|
input.project,
|
|
@@ -62,11 +41,15 @@ ${circularDependedIssueUrls.map((url) => `- ${url}`).join('\n')}`,
|
|
|
62
41
|
);
|
|
63
42
|
continue;
|
|
64
43
|
}
|
|
65
|
-
const notFoundDependedIssueUrls =
|
|
66
|
-
(
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
44
|
+
const notFoundDependedIssueUrls = absentDependedIssueIsResolvable
|
|
45
|
+
? issue.dependedIssueUrls.filter(
|
|
46
|
+
(dependedIssueUrl) =>
|
|
47
|
+
!input.issues.some(
|
|
48
|
+
(depIssue) => depIssue.url === dependedIssueUrl,
|
|
49
|
+
),
|
|
50
|
+
)
|
|
51
|
+
: [];
|
|
52
|
+
const openDependedIssueUrls = issue.dependedIssueUrls.filter(
|
|
70
53
|
(dependedIssueUrl) =>
|
|
71
54
|
input.issues.some(
|
|
72
55
|
(depIssue) =>
|
|
@@ -86,6 +69,12 @@ ${circularDependedIssueUrls.map((url) => `- ${url}`).join('\n')}`,
|
|
|
86
69
|
) {
|
|
87
70
|
continue;
|
|
88
71
|
}
|
|
72
|
+
const remainingDependedIssueUrls = absentDependedIssueIsResolvable
|
|
73
|
+
? openDependedIssueUrls
|
|
74
|
+
: issue.dependedIssueUrls.filter(
|
|
75
|
+
(dependedIssueUrl) =>
|
|
76
|
+
!closedDependedIssueUrls.includes(dependedIssueUrl),
|
|
77
|
+
);
|
|
89
78
|
if (remainingDependedIssueUrls.length === 0) {
|
|
90
79
|
await this.issueRepository.clearProjectField(
|
|
91
80
|
input.project,
|
|
@@ -119,4 +108,29 @@ ${notFoundDependedIssueUrls.map((url) => `- ${url}`).join('\n')}`,
|
|
|
119
108
|
}
|
|
120
109
|
}
|
|
121
110
|
};
|
|
111
|
+
|
|
112
|
+
private findCircularDependedIssueUrls = (
|
|
113
|
+
issue: Issue,
|
|
114
|
+
issues: Issue[],
|
|
115
|
+
): string[] =>
|
|
116
|
+
issue.dependedIssueUrls.filter((dependedIssueUrl) => {
|
|
117
|
+
const reachableIssueUrls = new Set<string>();
|
|
118
|
+
const stack = [dependedIssueUrl];
|
|
119
|
+
while (stack.length > 0) {
|
|
120
|
+
const url = stack.pop();
|
|
121
|
+
if (!url) {
|
|
122
|
+
throw new Error('url is undefined');
|
|
123
|
+
}
|
|
124
|
+
if (reachableIssueUrls.has(url)) {
|
|
125
|
+
continue;
|
|
126
|
+
}
|
|
127
|
+
reachableIssueUrls.add(url);
|
|
128
|
+
const dependedIssue = issues.find((candidate) => candidate.url === url);
|
|
129
|
+
if (!dependedIssue) {
|
|
130
|
+
continue;
|
|
131
|
+
}
|
|
132
|
+
stack.push(...dependedIssue.dependedIssueUrls);
|
|
133
|
+
}
|
|
134
|
+
return reachableIssueUrls.has(issue.url);
|
|
135
|
+
});
|
|
122
136
|
}
|
|
@@ -11,7 +11,7 @@ const storyOption = (
|
|
|
11
11
|
): FieldOption => ({ id, name, color, description: '' });
|
|
12
12
|
|
|
13
13
|
const STORY_OPTIONS: FieldOption[] = [
|
|
14
|
-
storyOption('s1', 'regular / NO STORY; SET STORY FIELD', '
|
|
14
|
+
storyOption('s1', 'regular / NO STORY; SET STORY FIELD', 'GRAY'),
|
|
15
15
|
storyOption('s2', 'Story Alpha', 'BLUE'),
|
|
16
16
|
storyOption('s3', 'Story Beta', 'GREEN'),
|
|
17
17
|
];
|
|
@@ -800,4 +800,89 @@ describe('GenerateConsoleListsUseCase', () => {
|
|
|
800
800
|
expect(result.triage.items).toHaveLength(1);
|
|
801
801
|
});
|
|
802
802
|
});
|
|
803
|
+
|
|
804
|
+
describe('stories tab', () => {
|
|
805
|
+
it('includes one entry per non-GRAY story option', () => {
|
|
806
|
+
const result = run([]);
|
|
807
|
+
expect(result.stories.stories).toHaveLength(2);
|
|
808
|
+
expect(result.stories.stories.map((s) => s.storyName)).toEqual([
|
|
809
|
+
'Story Alpha',
|
|
810
|
+
'Story Beta',
|
|
811
|
+
]);
|
|
812
|
+
});
|
|
813
|
+
|
|
814
|
+
it('excludes story options whose color is GRAY', () => {
|
|
815
|
+
const result = run([]);
|
|
816
|
+
const names = result.stories.stories.map((s) => s.storyName);
|
|
817
|
+
expect(names).not.toContain('regular / NO STORY; SET STORY FIELD');
|
|
818
|
+
});
|
|
819
|
+
|
|
820
|
+
it('counts open items per story from all open issues on the board', () => {
|
|
821
|
+
const result = run([
|
|
822
|
+
makeIssue({ story: 'Story Alpha', isClosed: false }),
|
|
823
|
+
makeIssue({ story: 'Story Alpha', isClosed: false }),
|
|
824
|
+
makeIssue({ story: 'Story Beta', isClosed: false }),
|
|
825
|
+
makeIssue({ story: 'Story Alpha', isClosed: true }),
|
|
826
|
+
]);
|
|
827
|
+
const alpha = result.stories.stories.find(
|
|
828
|
+
(s) => s.storyName === 'Story Alpha',
|
|
829
|
+
);
|
|
830
|
+
const beta = result.stories.stories.find(
|
|
831
|
+
(s) => s.storyName === 'Story Beta',
|
|
832
|
+
);
|
|
833
|
+
expect(alpha?.openItemCount).toBe(2);
|
|
834
|
+
expect(beta?.openItemCount).toBe(1);
|
|
835
|
+
});
|
|
836
|
+
|
|
837
|
+
it('counts open items regardless of assignee or actionability', () => {
|
|
838
|
+
const result = run([
|
|
839
|
+
makeIssue({
|
|
840
|
+
story: 'Story Alpha',
|
|
841
|
+
assignees: ['other-person'],
|
|
842
|
+
isClosed: false,
|
|
843
|
+
}),
|
|
844
|
+
makeIssue({
|
|
845
|
+
story: 'Story Alpha',
|
|
846
|
+
nextActionDate: new Date('2026-07-01T00:00:00.000Z'),
|
|
847
|
+
isClosed: false,
|
|
848
|
+
}),
|
|
849
|
+
]);
|
|
850
|
+
const alpha = result.stories.stories.find(
|
|
851
|
+
(s) => s.storyName === 'Story Alpha',
|
|
852
|
+
);
|
|
853
|
+
expect(alpha?.openItemCount).toBe(2);
|
|
854
|
+
});
|
|
855
|
+
|
|
856
|
+
it('exposes the storyOptionId from the project field option', () => {
|
|
857
|
+
const result = run([]);
|
|
858
|
+
const alpha = result.stories.stories.find(
|
|
859
|
+
(s) => s.storyName === 'Story Alpha',
|
|
860
|
+
);
|
|
861
|
+
expect(alpha?.storyOptionId).toBe('s2');
|
|
862
|
+
});
|
|
863
|
+
|
|
864
|
+
it('provides the nameWithOwner of the first issue as defaultNameWithOwner', () => {
|
|
865
|
+
const result = run([makeIssue({ nameWithOwner: 'demo/repo' })]);
|
|
866
|
+
expect(result.stories.defaultNameWithOwner).toBe('demo/repo');
|
|
867
|
+
});
|
|
868
|
+
|
|
869
|
+
it('sets defaultNameWithOwner to null when no issues are present', () => {
|
|
870
|
+
const result = run([]);
|
|
871
|
+
expect(result.stories.defaultNameWithOwner).toBeNull();
|
|
872
|
+
});
|
|
873
|
+
|
|
874
|
+
it('preserves the storyOrder in the stories tab', () => {
|
|
875
|
+
const result = run([]);
|
|
876
|
+
expect(result.stories.storyOrder).toEqual([
|
|
877
|
+
'regular / NO STORY; SET STORY FIELD',
|
|
878
|
+
'Story Alpha',
|
|
879
|
+
'Story Beta',
|
|
880
|
+
]);
|
|
881
|
+
});
|
|
882
|
+
|
|
883
|
+
it('produces an empty stories list when the project has no story field', () => {
|
|
884
|
+
const result = run([], baseProject(null));
|
|
885
|
+
expect(result.stories.stories).toEqual([]);
|
|
886
|
+
});
|
|
887
|
+
});
|
|
803
888
|
});
|
|
@@ -59,7 +59,24 @@ export type ConsoleTabName =
|
|
|
59
59
|
| 'unread'
|
|
60
60
|
| 'failed-preparation'
|
|
61
61
|
| 'todo-by-human'
|
|
62
|
-
| 'todo-by-agent'
|
|
62
|
+
| 'todo-by-agent'
|
|
63
|
+
| 'stories';
|
|
64
|
+
|
|
65
|
+
export type ConsoleStoryEntry = {
|
|
66
|
+
storyName: string;
|
|
67
|
+
storyOptionId: string;
|
|
68
|
+
color: ConsoleColor;
|
|
69
|
+
openItemCount: number;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
export type ConsoleStoriesTab = {
|
|
73
|
+
pjcode: string;
|
|
74
|
+
generatedAt: string;
|
|
75
|
+
stories: ConsoleStoryEntry[];
|
|
76
|
+
storyOrder: string[];
|
|
77
|
+
storyColors: Record<string, { color: ConsoleColor }>;
|
|
78
|
+
defaultNameWithOwner: string | null;
|
|
79
|
+
};
|
|
63
80
|
|
|
64
81
|
export type ConsoleLists = {
|
|
65
82
|
'workflow-blocker': ConsoleStatusTab;
|
|
@@ -69,6 +86,7 @@ export type ConsoleLists = {
|
|
|
69
86
|
'failed-preparation': ConsoleStatusTab;
|
|
70
87
|
'todo-by-human': ConsoleStatusTab;
|
|
71
88
|
'todo-by-agent': ConsoleStatusTab;
|
|
89
|
+
stories: ConsoleStoriesTab;
|
|
72
90
|
};
|
|
73
91
|
|
|
74
92
|
export type GenerateConsoleListsInput = {
|
|
@@ -139,6 +157,28 @@ export class GenerateConsoleListsUseCase {
|
|
|
139
157
|
): ConsoleStatusTab =>
|
|
140
158
|
buildStatusTabFromSource(actionableIssues, selector, excludedStatusNames);
|
|
141
159
|
|
|
160
|
+
const openItemCountByStory = new Map<string, number>();
|
|
161
|
+
for (const issue of issues) {
|
|
162
|
+
if (!issue.isClosed && issue.story !== null) {
|
|
163
|
+
openItemCountByStory.set(
|
|
164
|
+
issue.story,
|
|
165
|
+
(openItemCountByStory.get(issue.story) ?? 0) + 1,
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
const defaultNameWithOwner =
|
|
171
|
+
issues.find((issue) => issue.nameWithOwner !== '')?.nameWithOwner ?? null;
|
|
172
|
+
|
|
173
|
+
const storyEntries: ConsoleStoryEntry[] = storyOptions
|
|
174
|
+
.filter((option) => option.color !== 'GRAY')
|
|
175
|
+
.map((option) => ({
|
|
176
|
+
storyName: option.name,
|
|
177
|
+
storyOptionId: option.id,
|
|
178
|
+
color: option.color,
|
|
179
|
+
openItemCount: openItemCountByStory.get(option.name) ?? 0,
|
|
180
|
+
}));
|
|
181
|
+
|
|
142
182
|
return {
|
|
143
183
|
'workflow-blocker': buildStatusTabFromSource(
|
|
144
184
|
issues.filter((issue) => issue.isClosed === false),
|
|
@@ -197,6 +237,14 @@ export class GenerateConsoleListsUseCase {
|
|
|
197
237
|
storyOrder,
|
|
198
238
|
),
|
|
199
239
|
},
|
|
240
|
+
stories: {
|
|
241
|
+
pjcode,
|
|
242
|
+
generatedAt,
|
|
243
|
+
stories: storyEntries,
|
|
244
|
+
storyOrder,
|
|
245
|
+
storyColors: this.buildStoryColorsObject(storyOptions),
|
|
246
|
+
defaultNameWithOwner,
|
|
247
|
+
},
|
|
200
248
|
};
|
|
201
249
|
};
|
|
202
250
|
|
|
@@ -26,6 +26,7 @@ export declare const handleReview: (context: ConsoleOperationContext, body: Reco
|
|
|
26
26
|
export declare const handleTriage: (context: ConsoleOperationContext, body: Record<string, unknown>) => Promise<ConsoleOperationResponse>;
|
|
27
27
|
export declare const handleComment: (context: ConsoleOperationContext, body: Record<string, unknown>) => Promise<ConsoleOperationResponse>;
|
|
28
28
|
export declare const handleAttachmentUpload: (context: ConsoleOperationContext, body: Record<string, unknown>) => Promise<ConsoleOperationResponse>;
|
|
29
|
+
export declare const handleCreateIssue: (context: ConsoleOperationContext, body: Record<string, unknown>) => Promise<ConsoleOperationResponse>;
|
|
29
30
|
export declare const handleReviewComment: (context: ConsoleOperationContext, body: Record<string, unknown>) => Promise<ConsoleOperationResponse>;
|
|
30
31
|
export declare const handleIntmux: (context: ConsoleOperationContext, body: Record<string, unknown>) => Promise<ConsoleOperationResponse>;
|
|
31
32
|
//# sourceMappingURL=consoleOperationApi.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consoleOperationApi.d.ts","sourceRoot":"","sources":["../../../../src/adapter/entry-points/console/consoleOperationApi.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EAEhB,MAAM,6DAA6D,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uEAAuE,CAAC;AAClH,OAAO,EAAE,OAAO,EAAE,MAAM,kCAAkC,CAAC;AAU3D,eAAO,MAAM,8BAA8B,uBAAuB,CAAC;AACnE,eAAO,MAAM,4BAA4B,qBAAqB,CAAC;AAC/D,eAAO,MAAM,gBAAgB,UAAU,CAAC;AAExC,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,CACnC,MAAM,EAAE,MAAM,KACX,OAAO,CAAC,qBAAqB,GAAG,IAAI,CAAC,CAAC;AAE3C,MAAM,MAAM,sBAAsB,GAAG,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC;AAEjE,MAAM,MAAM,8BAA8B,GAAG,CAC3C,qBAAqB,EAAE,MAAM,KAC1B,eAAe,CAAC;AAErB,MAAM,MAAM,uBAAuB,GAAG;IACpC,sBAAsB,EAAE,8BAA8B,CAAC;IACvD,cAAc,EAAE,sBAAsB,CAAC;IACvC,kBAAkB,EAAE,sBAAsB,CAAC;IAC3C,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,yBAAyB,EAAE,yBAAyB,GAAG,IAAI,CAAC;CAC7D,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;CACf,CAAC;AA8MF,eAAO,MAAM,YAAY,GACvB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CAmJlC,CAAC;AAEF,eAAO,MAAM,YAAY,GACvB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA6FlC,CAAC;AAEF,eAAO,MAAM,aAAa,GACxB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA8BlC,CAAC;AAEF,eAAO,MAAM,sBAAsB,GACjC,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA2ClC,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA6BlC,CAAC;AAEF,eAAO,MAAM,YAAY,GACvB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CAiClC,CAAC"}
|
|
1
|
+
{"version":3,"file":"consoleOperationApi.d.ts","sourceRoot":"","sources":["../../../../src/adapter/entry-points/console/consoleOperationApi.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EAEhB,MAAM,6DAA6D,CAAC;AACrE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uEAAuE,CAAC;AAClH,OAAO,EAAE,OAAO,EAAE,MAAM,kCAAkC,CAAC;AAU3D,eAAO,MAAM,8BAA8B,uBAAuB,CAAC;AACnE,eAAO,MAAM,4BAA4B,qBAAqB,CAAC;AAC/D,eAAO,MAAM,gBAAgB,UAAU,CAAC;AAExC,MAAM,MAAM,qBAAqB,GAAG;IAClC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,CACnC,MAAM,EAAE,MAAM,KACX,OAAO,CAAC,qBAAqB,GAAG,IAAI,CAAC,CAAC;AAE3C,MAAM,MAAM,sBAAsB,GAAG,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC;AAEjE,MAAM,MAAM,8BAA8B,GAAG,CAC3C,qBAAqB,EAAE,MAAM,KAC1B,eAAe,CAAC;AAErB,MAAM,MAAM,uBAAuB,GAAG;IACpC,sBAAsB,EAAE,8BAA8B,CAAC;IACvD,cAAc,EAAE,sBAAsB,CAAC;IACvC,kBAAkB,EAAE,sBAAsB,CAAC;IAC3C,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,yBAAyB,EAAE,yBAAyB,GAAG,IAAI,CAAC;CAC7D,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,OAAO,CAAC;CACf,CAAC;AA8MF,eAAO,MAAM,YAAY,GACvB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CAmJlC,CAAC;AAEF,eAAO,MAAM,YAAY,GACvB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA6FlC,CAAC;AAEF,eAAO,MAAM,aAAa,GACxB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA8BlC,CAAC;AAEF,eAAO,MAAM,sBAAsB,GACjC,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA2ClC,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAC5B,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA0DlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAC9B,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CA6BlC,CAAC;AAEF,eAAO,MAAM,YAAY,GACvB,SAAS,uBAAuB,EAChC,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAC5B,OAAO,CAAC,wBAAwB,CAiClC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consoleTabNames.d.ts","sourceRoot":"","sources":["../../../../src/adapter/entry-points/console/consoleTabNames.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8DAA8D,CAAC;AAEnG,eAAO,MAAM,sBAAsB,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"consoleTabNames.d.ts","sourceRoot":"","sources":["../../../../src/adapter/entry-points/console/consoleTabNames.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8DAA8D,CAAC;AAEnG,eAAO,MAAM,sBAAsB,EAAE,cAAc,EASlD,CAAC;AAOF,eAAO,MAAM,gBAAgB,GAC3B,OAAO,OAAO,EAAE,EAChB,YAAY,MAAM,EAAE,KACnB,OAAO,EAgBT,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServer.d.ts","sourceRoot":"","sources":["../../../../src/adapter/entry-points/console/webServer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAG7B,OAAO,EAAE,yBAAyB,EAAE,MAAM,uEAAuE,CAAC;AAClH,OAAO,EAAE,eAAe,EAAE,MAAM,6DAA6D,CAAC;AAM9F,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EAQvB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,8BAA8B,EAE9B,sBAAsB,EACtB,sBAAsB,
|
|
1
|
+
{"version":3,"file":"webServer.d.ts","sourceRoot":"","sources":["../../../../src/adapter/entry-points/console/webServer.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ClearDependedIssueURLUseCase.d.ts","sourceRoot":"","sources":["../../../src/domain/usecases/ClearDependedIssueURLUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAE9C,qBAAa,4BAA4B;IAErC,QAAQ,CAAC,eAAe,EAAE,IAAI,CAC5B,eAAe,EACf,mBAAmB,GAAG,eAAe,GAAG,wBAAwB,CACjE;gBAHQ,eAAe,EAAE,IAAI,CAC5B,eAAe,EACf,mBAAmB,GAAG,eAAe,GAAG,wBAAwB,CACjE;IAGH,GAAG,GAAU,OAAO;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,MAAM,EAAE,KAAK,EAAE,CAAC;QAChB,SAAS,EAAE,OAAO,CAAC;KACpB,KAAG,OAAO,CAAC,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"ClearDependedIssueURLUseCase.d.ts","sourceRoot":"","sources":["../../../src/domain/usecases/ClearDependedIssueURLUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAC1C,OAAO,EAAE,eAAe,EAAE,MAAM,sCAAsC,CAAC;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AAE9C,qBAAa,4BAA4B;IAErC,QAAQ,CAAC,eAAe,EAAE,IAAI,CAC5B,eAAe,EACf,mBAAmB,GAAG,eAAe,GAAG,wBAAwB,CACjE;gBAHQ,eAAe,EAAE,IAAI,CAC5B,eAAe,EACf,mBAAmB,GAAG,eAAe,GAAG,wBAAwB,CACjE;IAGH,GAAG,GAAU,OAAO;QAClB,OAAO,EAAE,OAAO,CAAC;QACjB,MAAM,EAAE,KAAK,EAAE,CAAC;QAChB,SAAS,EAAE,OAAO,CAAC;KACpB,KAAG,OAAO,CAAC,IAAI,CAAC,CA6Ff;IAEF,OAAO,CAAC,6BAA6B,CAuBhC;CACN"}
|
|
@@ -42,7 +42,23 @@ export type ConsoleTriageTab = {
|
|
|
42
42
|
storyColors: Record<string, ConsoleColor>;
|
|
43
43
|
items: ConsoleListItem[];
|
|
44
44
|
};
|
|
45
|
-
export type ConsoleTabName = 'workflow-blocker' | 'prs' | 'triage' | 'unread' | 'failed-preparation' | 'todo-by-human' | 'todo-by-agent';
|
|
45
|
+
export type ConsoleTabName = 'workflow-blocker' | 'prs' | 'triage' | 'unread' | 'failed-preparation' | 'todo-by-human' | 'todo-by-agent' | 'stories';
|
|
46
|
+
export type ConsoleStoryEntry = {
|
|
47
|
+
storyName: string;
|
|
48
|
+
storyOptionId: string;
|
|
49
|
+
color: ConsoleColor;
|
|
50
|
+
openItemCount: number;
|
|
51
|
+
};
|
|
52
|
+
export type ConsoleStoriesTab = {
|
|
53
|
+
pjcode: string;
|
|
54
|
+
generatedAt: string;
|
|
55
|
+
stories: ConsoleStoryEntry[];
|
|
56
|
+
storyOrder: string[];
|
|
57
|
+
storyColors: Record<string, {
|
|
58
|
+
color: ConsoleColor;
|
|
59
|
+
}>;
|
|
60
|
+
defaultNameWithOwner: string | null;
|
|
61
|
+
};
|
|
46
62
|
export type ConsoleLists = {
|
|
47
63
|
'workflow-blocker': ConsoleStatusTab;
|
|
48
64
|
prs: ConsoleStatusTab;
|
|
@@ -51,6 +67,7 @@ export type ConsoleLists = {
|
|
|
51
67
|
'failed-preparation': ConsoleStatusTab;
|
|
52
68
|
'todo-by-human': ConsoleStatusTab;
|
|
53
69
|
'todo-by-agent': ConsoleStatusTab;
|
|
70
|
+
stories: ConsoleStoriesTab;
|
|
54
71
|
};
|
|
55
72
|
export type GenerateConsoleListsInput = {
|
|
56
73
|
project: Project;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GenerateConsoleListsUseCase.d.ts","sourceRoot":"","sources":["../../../../src/domain/usecases/console/GenerateConsoleListsUseCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AAQ9D,MAAM,MAAM,YAAY,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;AAEhD,MAAM,MAAM,eAAe,GAAG;IAC5B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,iBAAiB,EAAE,MAAM,EAAE,CAAC;IAC5B,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,0BAA0B,EAAE,MAAM,EAAE,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,YAAY,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,kBAAkB,EAAE,CAAC;IACpC,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,YAAY,CAAA;KAAE,CAAC,CAAC;IACrD,KAAK,EAAE,eAAe,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,kBAAkB,EAAE,CAAC;IACnC,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IAC1C,KAAK,EAAE,eAAe,EAAE,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,cAAc,GACtB,kBAAkB,GAClB,KAAK,GACL,QAAQ,GACR,QAAQ,GACR,oBAAoB,GACpB,eAAe,GACf,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"GenerateConsoleListsUseCase.d.ts","sourceRoot":"","sources":["../../../../src/domain/usecases/console/GenerateConsoleListsUseCase.ts"],"names":[],"mappings":"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"}
|