@cat-factory/app 0.286.0 → 0.286.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/testing/TestReportWindow.vue +16 -1
- package/i18n/locales/de.json +1 -0
- package/i18n/locales/en.json +1 -0
- package/i18n/locales/es.json +1 -0
- package/i18n/locales/fr.json +1 -0
- package/i18n/locales/he.json +1 -0
- package/i18n/locales/it.json +1 -0
- package/i18n/locales/ja.json +1 -0
- package/i18n/locales/pl.json +1 -0
- package/i18n/locales/tr.json +1 -0
- package/i18n/locales/uk.json +1 -0
- package/package.json +2 -2
|
@@ -80,6 +80,21 @@ const showProvisioning = ref(false)
|
|
|
80
80
|
// drawer above (the orchestrator-side container/env spin-up), this is the stand-up that runs
|
|
81
81
|
// INSIDE the container — the highest-signal artifact when local infra fails to come up.
|
|
82
82
|
const infraSetup = computed(() => testState.value?.infraSetup ?? null)
|
|
83
|
+
|
|
84
|
+
// A stand-up that never ran because the executor container had no Docker daemon is a different
|
|
85
|
+
// failure from a compose stack that failed to come up, and the two have opposite fixes (the image
|
|
86
|
+
// or the sandbox running it, versus the service's own compose file). `dockerAvailable` is
|
|
87
|
+
// three-valued for the same reason it is on the wire: absent means the container reached no
|
|
88
|
+
// verdict (an older image, or the native host transport), which is not the same as a daemon that
|
|
89
|
+
// was decidedly missing, so only an explicit `false` changes what this says.
|
|
90
|
+
const standupHeadline = computed(() => {
|
|
91
|
+
const infra = infraSetup.value
|
|
92
|
+
if (!infra) return ''
|
|
93
|
+
if (infra.started) return t('testing.standup.up')
|
|
94
|
+
return infra.dockerAvailable === false
|
|
95
|
+
? t('testing.standup.noDocker')
|
|
96
|
+
: t('testing.standup.failed')
|
|
97
|
+
})
|
|
83
98
|
// The captured stand-up logs are shown on demand (they can be long).
|
|
84
99
|
const showInfraSetupLogs = ref(false)
|
|
85
100
|
|
|
@@ -382,7 +397,7 @@ const GROUP_STATUS_META: Record<ScenarioGroup['status'], { icon: string; text: s
|
|
|
382
397
|
:class="infraSetup.started ? 'text-emerald-400' : 'text-rose-400'"
|
|
383
398
|
/>
|
|
384
399
|
<span class="text-[13px] font-medium text-slate-200">
|
|
385
|
-
{{
|
|
400
|
+
{{ standupHeadline }}
|
|
386
401
|
</span>
|
|
387
402
|
<span v-if="infraSetup.durationMs != null" class="ms-auto text-[11px] text-slate-500">
|
|
388
403
|
{{
|
package/i18n/locales/de.json
CHANGED
|
@@ -6628,6 +6628,7 @@
|
|
|
6628
6628
|
"standup": {
|
|
6629
6629
|
"up": "Abhängigkeiten gestartet",
|
|
6630
6630
|
"failed": "Abhängigkeiten konnten nicht gestartet werden",
|
|
6631
|
+
"noDocker": "Kein Docker-Daemon im Executor",
|
|
6631
6632
|
"took": "Dauerte {seconds}s",
|
|
6632
6633
|
"showLogs": "Stand-up-Logs anzeigen",
|
|
6633
6634
|
"hideLogs": "Stand-up-Logs verbergen"
|
package/i18n/locales/en.json
CHANGED
|
@@ -6352,6 +6352,7 @@
|
|
|
6352
6352
|
"standup": {
|
|
6353
6353
|
"up": "Dependencies started",
|
|
6354
6354
|
"failed": "Dependencies failed to start",
|
|
6355
|
+
"noDocker": "No Docker daemon in the executor",
|
|
6355
6356
|
"took": "Took {seconds}s",
|
|
6356
6357
|
"showLogs": "Show stand-up logs",
|
|
6357
6358
|
"hideLogs": "Hide stand-up logs"
|
package/i18n/locales/es.json
CHANGED
|
@@ -6053,6 +6053,7 @@
|
|
|
6053
6053
|
"standup": {
|
|
6054
6054
|
"up": "Dependencias iniciadas",
|
|
6055
6055
|
"failed": "No se pudieron iniciar las dependencias",
|
|
6056
|
+
"noDocker": "No hay demonio de Docker en el ejecutor",
|
|
6056
6057
|
"took": "Tardó {seconds}s",
|
|
6057
6058
|
"showLogs": "Mostrar registros de arranque",
|
|
6058
6059
|
"hideLogs": "Ocultar registros de arranque"
|
package/i18n/locales/fr.json
CHANGED
|
@@ -6053,6 +6053,7 @@
|
|
|
6053
6053
|
"standup": {
|
|
6054
6054
|
"up": "Dépendances démarrées",
|
|
6055
6055
|
"failed": "Échec du démarrage des dépendances",
|
|
6056
|
+
"noDocker": "Aucun démon Docker dans l’exécuteur",
|
|
6056
6057
|
"took": "Durée : {seconds}s",
|
|
6057
6058
|
"showLogs": "Afficher les journaux de démarrage",
|
|
6058
6059
|
"hideLogs": "Masquer les journaux de démarrage"
|
package/i18n/locales/he.json
CHANGED
package/i18n/locales/it.json
CHANGED
|
@@ -6628,6 +6628,7 @@
|
|
|
6628
6628
|
"standup": {
|
|
6629
6629
|
"up": "Dipendenze avviate",
|
|
6630
6630
|
"failed": "Avvio delle dipendenze non riuscito",
|
|
6631
|
+
"noDocker": "Nessun demone Docker nell’executor",
|
|
6631
6632
|
"took": "Ha richiesto {seconds}s",
|
|
6632
6633
|
"showLogs": "Mostra i log di avvio",
|
|
6633
6634
|
"hideLogs": "Nascondi i log di avvio"
|
package/i18n/locales/ja.json
CHANGED
package/i18n/locales/pl.json
CHANGED
|
@@ -6053,6 +6053,7 @@
|
|
|
6053
6053
|
"standup": {
|
|
6054
6054
|
"up": "Zależności uruchomione",
|
|
6055
6055
|
"failed": "Nie udało się uruchomić zależności",
|
|
6056
|
+
"noDocker": "Brak demona Dockera w wykonawcy",
|
|
6056
6057
|
"took": "Czas: {seconds}s",
|
|
6057
6058
|
"showLogs": "Pokaż dzienniki uruchamiania",
|
|
6058
6059
|
"hideLogs": "Ukryj dzienniki uruchamiania"
|
package/i18n/locales/tr.json
CHANGED
|
@@ -6051,6 +6051,7 @@
|
|
|
6051
6051
|
"standup": {
|
|
6052
6052
|
"up": "Bağımlılıklar başlatıldı",
|
|
6053
6053
|
"failed": "Bağımlılıklar başlatılamadı",
|
|
6054
|
+
"noDocker": "Yürütücüde Docker arka plan hizmeti yok",
|
|
6054
6055
|
"took": "{seconds}sn sürdü",
|
|
6055
6056
|
"showLogs": "Başlatma günlüklerini göster",
|
|
6056
6057
|
"hideLogs": "Başlatma günlüklerini gizle"
|
package/i18n/locales/uk.json
CHANGED
|
@@ -6053,6 +6053,7 @@
|
|
|
6053
6053
|
"standup": {
|
|
6054
6054
|
"up": "Залежності запущено",
|
|
6055
6055
|
"failed": "Не вдалося запустити залежності",
|
|
6056
|
+
"noDocker": "У виконавці немає демона Docker",
|
|
6056
6057
|
"took": "Час: {seconds}s",
|
|
6057
6058
|
"showLogs": "Показати журнали запуску",
|
|
6058
6059
|
"hideLogs": "Сховати журнали запуску"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.286.
|
|
3
|
+
"version": "0.286.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",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@cat-factory/contracts": "0.
|
|
21
|
+
"@cat-factory/contracts": "0.331.0",
|
|
22
22
|
"@modular-frontend/core": "0.6.0",
|
|
23
23
|
"@modular-vue/core": "^1.5.0",
|
|
24
24
|
"@modular-vue/journeys": "^1.4.0",
|