IdeShell dégrade sous le breakpoint md en un panneau unique (Explorateur/Éditeur/Terminal/Git) commuté par une barre d'onglets basse, avec un bouton retour vers le dashboard. La redirection / envoie le mobile vers /dashboard (supervision + nav) et le desktop vers /ide. Garde-fou : pas de '<' dans les commentaires de template Vue (rolldown casse le build alors que vue-tsc passe). 431 tests.
143 lines
5.6 KiB
Vue
143 lines
5.6 KiB
Vue
<template>
|
|
<div class="flex h-dvh min-h-0 flex-col bg-surface-0 text-fg">
|
|
<div v-if="isMobile" class="flex min-h-0 flex-1 flex-col">
|
|
<header class="flex items-center gap-2 border-b border-border px-2 py-1.5">
|
|
<RouterLink :to="{ name: 'dashboard' }" class="rounded p-1 text-fg-muted hover:bg-surface-2 hover:text-fg" :title="t('nav.worktrees')">
|
|
<Home :size="18" />
|
|
</RouterLink>
|
|
<span class="truncate text-sm font-medium">{{ mobileTitle }}</span>
|
|
</header>
|
|
<div class="min-h-0 flex-1 overflow-hidden">
|
|
<ProjectTree v-if="ide.mobilePanel === 'explorer'" />
|
|
<GitPanel v-else-if="ide.mobilePanel === 'git'" />
|
|
<TerminalDock v-else-if="ide.mobilePanel === 'terminal'" />
|
|
<EditorArea v-else />
|
|
</div>
|
|
<nav class="flex shrink-0 border-t border-border">
|
|
<button
|
|
v-for="p in mobilePanels"
|
|
:key="p.key"
|
|
type="button"
|
|
class="flex flex-1 flex-col items-center gap-0.5 py-1.5 text-[10px] transition-colors"
|
|
:class="ide.mobilePanel === p.key ? 'text-accent' : 'text-fg-subtle'"
|
|
@click="setMobilePanel(p.key)"
|
|
>
|
|
<component :is="p.icon" :size="18" />
|
|
{{ p.label }}
|
|
</button>
|
|
</nav>
|
|
</div>
|
|
|
|
<div v-else class="flex min-h-0 flex-1 flex-col">
|
|
<div class="flex min-h-0 flex-1">
|
|
<ActivityBar />
|
|
<template v-if="ide.leftVisible">
|
|
<PrimarySidebar />
|
|
<PanelSplitter v-model="ide.leftWidth" axis="x" :min="200" :max="560" />
|
|
</template>
|
|
|
|
<div class="flex min-w-0 flex-1 flex-col">
|
|
<main class="min-h-0 flex-1 overflow-hidden">
|
|
<EditorArea />
|
|
</main>
|
|
|
|
<template v-if="ide.bottomVisible">
|
|
<PanelSplitter v-model="ide.bottomHeight" axis="y" :min="120" :max="640" invert />
|
|
<section class="shrink-0 overflow-hidden border-t border-border" :style="{ height: `${ide.bottomHeight}px` }">
|
|
<TerminalDock />
|
|
</section>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
|
|
<StatusBar />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// Coquille de la vue IDE (layout 'ide', plein écran). Assemble barre d'activité, panneau gauche,
|
|
// zone centrale (éditeur), dock terminaux et barre de statut. Propriétaire de la réconciliation
|
|
// des ressources ouvertes contre les données live (worktrees / sessions).
|
|
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
|
import { useRoute } from 'vue-router';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { FileCode, FolderTree, GitCompare, Home, SquareTerminal } from '@lucide/vue';
|
|
import { decodeWtKey } from '@arboretum/shared';
|
|
import { useIdeStore, wtKey } from '../../stores/ide';
|
|
import { useWorktreesStore } from '../../stores/worktrees';
|
|
import { useSessionsStore } from '../../stores/sessions';
|
|
import ActivityBar from './ActivityBar.vue';
|
|
import PrimarySidebar from './PrimarySidebar.vue';
|
|
import PanelSplitter from './PanelSplitter.vue';
|
|
import StatusBar from './StatusBar.vue';
|
|
import EditorArea from './EditorArea.vue';
|
|
import TerminalDock from './TerminalDock.vue';
|
|
import ProjectTree from './ProjectTree.vue';
|
|
import GitPanel from './GitPanel.vue';
|
|
|
|
const { t } = useI18n();
|
|
const ide = useIdeStore();
|
|
const worktrees = useWorktreesStore();
|
|
const sessions = useSessionsStore();
|
|
const route = useRoute();
|
|
|
|
// --- responsive : panneau unique sous le breakpoint md (768px) ---
|
|
const isMobile = ref(false);
|
|
let mql: MediaQueryList | null = null;
|
|
const syncMobile = (): void => {
|
|
isMobile.value = !!mql?.matches;
|
|
};
|
|
onMounted(() => {
|
|
mql = window.matchMedia('(max-width: 767px)');
|
|
syncMobile();
|
|
mql.addEventListener('change', syncMobile);
|
|
});
|
|
onBeforeUnmount(() => mql?.removeEventListener('change', syncMobile));
|
|
|
|
const mobilePanels = computed(() => [
|
|
{ key: 'explorer', icon: FolderTree, label: t('ide.activity.explorer') },
|
|
{ key: 'editor', icon: FileCode, label: t('workspace.editor') },
|
|
{ key: 'terminal', icon: SquareTerminal, label: t('ide.terminals') },
|
|
{ key: 'git', icon: GitCompare, label: t('ide.activity.git') },
|
|
]);
|
|
const mobileTitle = computed(() => mobilePanels.value.find((p) => p.key === ide.mobilePanel)?.label ?? '');
|
|
const setMobilePanel = (key: string): void => {
|
|
ide.mobilePanel = key;
|
|
};
|
|
|
|
// Deep-link : /workspace/:repoId/:wt (ex. lien de l'extension VS Code) cible un worktree précis.
|
|
// On le rend actif, on déplie son sous-arbre, et on ouvre éventuellement ?file=<relPath>.
|
|
function applyDeepLink(): void {
|
|
if (route.name !== 'workspace') return;
|
|
const repoId = String(route.params.repoId ?? '');
|
|
const wt = decodeWtKey(String(route.params.wt ?? ''));
|
|
if (!repoId || !wt) return;
|
|
ide.setActivity('explorer');
|
|
ide.setActiveWorktree(repoId, wt);
|
|
if (!ide.expandedRepoIds.includes(repoId)) ide.toggleRepo(repoId);
|
|
if (!ide.expandedWtPaths.includes(wt)) ide.toggleWt(wt);
|
|
const file = route.query.file ? String(route.query.file) : null;
|
|
if (file) ide.openFile(repoId, wt, file);
|
|
}
|
|
onMounted(applyDeepLink);
|
|
watch(() => route.fullPath, applyDeepLink);
|
|
|
|
function prune(): void {
|
|
const live = new Set(sessions.sessions.filter((s) => s.live).map((s) => s.id));
|
|
const known = new Set(worktrees.worktrees.map((w) => wtKey(w.repoId, w.path)));
|
|
ide.pruneDeadResources(live, known);
|
|
}
|
|
|
|
// On ne réconcilie qu'une fois les données prêtes (fetch initial terminé) pour ne pas fermer les
|
|
// onglets/terminaux persistés avant leur chargement. Puis à chaque ajout/retrait de worktree ou
|
|
// de session.
|
|
watch(
|
|
[() => worktrees.loading, () => sessions.sessions.length, () => worktrees.worktrees.length],
|
|
() => {
|
|
if (!worktrees.loading) prune();
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
</script>
|