@cat-factory/app 0.162.1 → 0.162.2
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/app/components/prReview/PrReviewWindow.vue +18 -5
- package/i18n/locales/de.json +2 -1
- package/i18n/locales/en.json +2 -1
- package/i18n/locales/es.json +2 -1
- package/i18n/locales/fr.json +2 -1
- package/i18n/locales/he.json +2 -1
- package/i18n/locales/it.json +2 -1
- package/i18n/locales/ja.json +2 -1
- package/i18n/locales/pl.json +2 -1
- package/i18n/locales/tr.json +2 -1
- package/i18n/locales/uk.json +2 -1
- package/package.json +2 -2
|
@@ -314,16 +314,26 @@ async function onDismiss(id: string): Promise<void> {
|
|
|
314
314
|
/>
|
|
315
315
|
</div>
|
|
316
316
|
|
|
317
|
-
<!-- The chunk(s) being actively reviewed right now, called out on their own.
|
|
317
|
+
<!-- The chunk(s) being actively reviewed right now, called out on their own. Kept
|
|
318
|
+
MOUNTED for the whole reviewing phase: the reviewer runs a bounded window of
|
|
319
|
+
slice subagents, so between two waves nothing is in flight for a moment, and
|
|
320
|
+
dropping the callout there made the window look like it had lost a list. -->
|
|
318
321
|
<div
|
|
319
|
-
v-if="activeChunks.length"
|
|
320
322
|
data-testid="pr-review-active-chunks"
|
|
321
|
-
class="mt-3 rounded-lg border
|
|
323
|
+
class="mt-3 rounded-lg border px-2.5 py-2"
|
|
324
|
+
:class="
|
|
325
|
+
activeChunks.length
|
|
326
|
+
? 'border-indigo-500/30 bg-indigo-500/5'
|
|
327
|
+
: 'border-slate-800 bg-slate-900/40'
|
|
328
|
+
"
|
|
322
329
|
>
|
|
323
|
-
<p
|
|
330
|
+
<p
|
|
331
|
+
class="mb-1 text-[10px] font-semibold uppercase tracking-wide"
|
|
332
|
+
:class="activeChunks.length ? 'text-indigo-300' : 'text-slate-500'"
|
|
333
|
+
>
|
|
324
334
|
{{ t('prReview.reviewing.activeHeading') }}
|
|
325
335
|
</p>
|
|
326
|
-
<ul class="space-y-1">
|
|
336
|
+
<ul v-if="activeChunks.length" class="space-y-1">
|
|
327
337
|
<li
|
|
328
338
|
v-for="(label, i) in activeChunks"
|
|
329
339
|
:key="i"
|
|
@@ -336,6 +346,9 @@ async function onDismiss(id: string): Promise<void> {
|
|
|
336
346
|
<span class="min-w-0">{{ label }}</span>
|
|
337
347
|
</li>
|
|
338
348
|
</ul>
|
|
349
|
+
<p v-else data-testid="pr-review-active-idle" class="text-[12px] text-slate-400">
|
|
350
|
+
{{ t('prReview.reviewing.activeIdle') }}
|
|
351
|
+
</p>
|
|
339
352
|
</div>
|
|
340
353
|
|
|
341
354
|
<!-- Every chunk with its explicit status (Reviewed / Reviewing… / Queued). -->
|
package/i18n/locales/de.json
CHANGED
|
@@ -5236,11 +5236,12 @@
|
|
|
5236
5236
|
},
|
|
5237
5237
|
"reviewingChunks": {
|
|
5238
5238
|
"title": "Abschnitte werden geprüft…",
|
|
5239
|
-
"hint": "Die Zerlegung ist abgeschlossen.
|
|
5239
|
+
"hint": "Die Zerlegung ist abgeschlossen. Der Prüfer arbeitet die Abschnitte in kleinen Gruppen ab und sammelt die Ergebnisse, sobald ein Abschnitt zurückkommt."
|
|
5240
5240
|
},
|
|
5241
5241
|
"chunks": "{completed} von {total} Abschnitten geprüft",
|
|
5242
5242
|
"inProgress": "{count} in Bearbeitung",
|
|
5243
5243
|
"activeHeading": "Wird jetzt geprüft",
|
|
5244
|
+
"activeIdle": "Derzeit wird kein Abschnitt geprüft. Der Prüfer startet gerade die nächste Gruppe.",
|
|
5244
5245
|
"chunksHeading": "Abschnitte",
|
|
5245
5246
|
"chunkStatus": {
|
|
5246
5247
|
"completed": "Geprüft",
|
package/i18n/locales/en.json
CHANGED
|
@@ -5380,11 +5380,12 @@
|
|
|
5380
5380
|
},
|
|
5381
5381
|
"reviewingChunks": {
|
|
5382
5382
|
"title": "Reviewing the chunks…",
|
|
5383
|
-
"hint": "Slicing is done.
|
|
5383
|
+
"hint": "Slicing is done. The reviewer works through the chunks a few at a time and collects findings as each one comes back."
|
|
5384
5384
|
},
|
|
5385
5385
|
"chunks": "{completed} of {total} chunks reviewed",
|
|
5386
5386
|
"inProgress": "{count} in progress",
|
|
5387
5387
|
"activeHeading": "Reviewing now",
|
|
5388
|
+
"activeIdle": "No chunk is in flight right now. The reviewer is starting the next batch.",
|
|
5388
5389
|
"chunksHeading": "Chunks",
|
|
5389
5390
|
"chunkStatus": {
|
|
5390
5391
|
"completed": "Reviewed",
|
package/i18n/locales/es.json
CHANGED
|
@@ -5224,11 +5224,12 @@
|
|
|
5224
5224
|
},
|
|
5225
5225
|
"reviewingChunks": {
|
|
5226
5226
|
"title": "Revisando los fragmentos…",
|
|
5227
|
-
"hint": "La división ha terminado.
|
|
5227
|
+
"hint": "La división ha terminado. El revisor examina los fragmentos en grupos pequeños y recopila los hallazgos a medida que cada uno vuelve."
|
|
5228
5228
|
},
|
|
5229
5229
|
"chunks": "{completed} de {total} fragmentos revisados",
|
|
5230
5230
|
"inProgress": "{count} en curso",
|
|
5231
5231
|
"activeHeading": "Revisando ahora",
|
|
5232
|
+
"activeIdle": "Ahora mismo no hay ningún fragmento en curso. El revisor está iniciando el siguiente grupo.",
|
|
5232
5233
|
"chunksHeading": "Fragmentos",
|
|
5233
5234
|
"chunkStatus": {
|
|
5234
5235
|
"completed": "Revisado",
|
package/i18n/locales/fr.json
CHANGED
|
@@ -5224,11 +5224,12 @@
|
|
|
5224
5224
|
},
|
|
5225
5225
|
"reviewingChunks": {
|
|
5226
5226
|
"title": "Revue des sections…",
|
|
5227
|
-
"hint": "Le découpage est terminé.
|
|
5227
|
+
"hint": "Le découpage est terminé. Le relecteur traite les sections par petits groupes et rassemble les remarques au fur et à mesure des retours."
|
|
5228
5228
|
},
|
|
5229
5229
|
"chunks": "{completed} sur {total} sections examinées",
|
|
5230
5230
|
"inProgress": "{count} en cours",
|
|
5231
5231
|
"activeHeading": "Revue en cours",
|
|
5232
|
+
"activeIdle": "Aucune section n'est en cours pour l'instant. Le relecteur lance le groupe suivant.",
|
|
5232
5233
|
"chunksHeading": "Sections",
|
|
5233
5234
|
"chunkStatus": {
|
|
5234
5235
|
"completed": "Examinée",
|
package/i18n/locales/he.json
CHANGED
|
@@ -5235,11 +5235,12 @@
|
|
|
5235
5235
|
},
|
|
5236
5236
|
"reviewingChunks": {
|
|
5237
5237
|
"title": "בודק את המקטעים…",
|
|
5238
|
-
"hint": "החלוקה הסתיימה.
|
|
5238
|
+
"hint": "החלוקה הסתיימה. הבודק עובר על המקטעים בקבוצות קטנות ואוסף את הממצאים ככל שכל מקטע חוזר."
|
|
5239
5239
|
},
|
|
5240
5240
|
"chunks": "{completed} מתוך {total} מקטעים נבדקו",
|
|
5241
5241
|
"inProgress": "{count} בתהליך",
|
|
5242
5242
|
"activeHeading": "נבדק כעת",
|
|
5243
|
+
"activeIdle": "כרגע לא נבדק אף מקטע. הבודק מתחיל את הקבוצה הבאה.",
|
|
5243
5244
|
"chunksHeading": "מקטעים",
|
|
5244
5245
|
"chunkStatus": {
|
|
5245
5246
|
"completed": "נבדק",
|
package/i18n/locales/it.json
CHANGED
|
@@ -5236,11 +5236,12 @@
|
|
|
5236
5236
|
},
|
|
5237
5237
|
"reviewingChunks": {
|
|
5238
5238
|
"title": "Revisione dei blocchi…",
|
|
5239
|
-
"hint": "La suddivisione è terminata.
|
|
5239
|
+
"hint": "La suddivisione è terminata. Il revisore esamina i blocchi a piccoli gruppi e raccoglie le osservazioni man mano che ciascuno rientra."
|
|
5240
5240
|
},
|
|
5241
5241
|
"chunks": "{completed} di {total} sezioni esaminate",
|
|
5242
5242
|
"inProgress": "{count} in corso",
|
|
5243
5243
|
"activeHeading": "In revisione ora",
|
|
5244
|
+
"activeIdle": "Al momento nessun blocco è in corso. Il revisore sta avviando il gruppo successivo.",
|
|
5244
5245
|
"chunksHeading": "Blocchi",
|
|
5245
5246
|
"chunkStatus": {
|
|
5246
5247
|
"completed": "Esaminato",
|
package/i18n/locales/ja.json
CHANGED
|
@@ -5236,11 +5236,12 @@
|
|
|
5236
5236
|
},
|
|
5237
5237
|
"reviewingChunks": {
|
|
5238
5238
|
"title": "チャンクをレビュー中…",
|
|
5239
|
-
"hint": "
|
|
5239
|
+
"hint": "分割は完了しました。レビュー担当者はチャンクを少数ずつ並行してレビューし、戻ってきたものから指摘事項を収集しています。"
|
|
5240
5240
|
},
|
|
5241
5241
|
"chunks": "{total} 個中 {completed} 個のチャンクをレビュー済み",
|
|
5242
5242
|
"inProgress": "{count} 件処理中",
|
|
5243
5243
|
"activeHeading": "レビュー中",
|
|
5244
|
+
"activeIdle": "現在レビュー中のチャンクはありません。レビュー担当者が次のグループを開始しています。",
|
|
5244
5245
|
"chunksHeading": "チャンク",
|
|
5245
5246
|
"chunkStatus": {
|
|
5246
5247
|
"completed": "レビュー済み",
|
package/i18n/locales/pl.json
CHANGED
|
@@ -5224,11 +5224,12 @@
|
|
|
5224
5224
|
},
|
|
5225
5225
|
"reviewingChunks": {
|
|
5226
5226
|
"title": "Przeglądanie fragmentów…",
|
|
5227
|
-
"hint": "Podział zakończony.
|
|
5227
|
+
"hint": "Podział zakończony. Recenzent przegląda fragmenty w małych grupach i zbiera uwagi w miarę ich powrotu."
|
|
5228
5228
|
},
|
|
5229
5229
|
"chunks": "Sprawdzono {completed} z {total} fragmentów",
|
|
5230
5230
|
"inProgress": "{count} w toku",
|
|
5231
5231
|
"activeHeading": "Przeglądane teraz",
|
|
5232
|
+
"activeIdle": "Żaden fragment nie jest teraz przeglądany. Recenzent uruchamia kolejną grupę.",
|
|
5232
5233
|
"chunksHeading": "Fragmenty",
|
|
5233
5234
|
"chunkStatus": {
|
|
5234
5235
|
"completed": "Sprawdzony",
|
package/i18n/locales/tr.json
CHANGED
|
@@ -5236,11 +5236,12 @@
|
|
|
5236
5236
|
},
|
|
5237
5237
|
"reviewingChunks": {
|
|
5238
5238
|
"title": "Parçalar inceleniyor…",
|
|
5239
|
-
"hint": "Bölme tamamlandı.
|
|
5239
|
+
"hint": "Bölme tamamlandı. İnceleyici parçaları küçük gruplar hâlinde inceliyor ve her biri döndükçe bulguları topluyor."
|
|
5240
5240
|
},
|
|
5241
5241
|
"chunks": "{total} bölümden {completed} tanesi incelendi",
|
|
5242
5242
|
"inProgress": "{count} devam ediyor",
|
|
5243
5243
|
"activeHeading": "Şimdi inceleniyor",
|
|
5244
|
+
"activeIdle": "Şu anda incelenen bir parça yok. İnceleyici bir sonraki grubu başlatıyor.",
|
|
5244
5245
|
"chunksHeading": "Parçalar",
|
|
5245
5246
|
"chunkStatus": {
|
|
5246
5247
|
"completed": "İncelendi",
|
package/i18n/locales/uk.json
CHANGED
|
@@ -5224,11 +5224,12 @@
|
|
|
5224
5224
|
},
|
|
5225
5225
|
"reviewingChunks": {
|
|
5226
5226
|
"title": "Огляд фрагментів…",
|
|
5227
|
-
"hint": "Поділ завершено.
|
|
5227
|
+
"hint": "Поділ завершено. Рецензент переглядає фрагменти невеликими групами й збирає зауваження в міру їх повернення."
|
|
5228
5228
|
},
|
|
5229
5229
|
"chunks": "Перевірено {completed} з {total} фрагментів",
|
|
5230
5230
|
"inProgress": "{count} у процесі",
|
|
5231
5231
|
"activeHeading": "Переглядається зараз",
|
|
5232
|
+
"activeIdle": "Наразі жоден фрагмент не переглядається. Рецензент запускає наступну групу.",
|
|
5232
5233
|
"chunksHeading": "Фрагменти",
|
|
5233
5234
|
"chunkStatus": {
|
|
5234
5235
|
"completed": "Переглянуто",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.162.
|
|
3
|
+
"version": "0.162.2",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"valibot": "^1.4.2",
|
|
41
41
|
"vue": "3.5.40",
|
|
42
42
|
"wretch": "^3.0.9",
|
|
43
|
-
"@cat-factory/contracts": "0.
|
|
43
|
+
"@cat-factory/contracts": "0.178.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@toad-contracts/testing": "0.3.2",
|