- ng update @angular/core@21 @angular/cli@21 (corrige GHSA-jrmj-c5cx-3cw6, XSS SVG) - Migration automatique des templates vers le control flow natif (@if/@for, 138 fichiers) - Correction des 5 `track` invalides generes par la migration (trackBy a 1 argument -> track $index) + suppression des fonctions trackBy mortes - TypeScript 5.9, zone.js 0.15 ; npm audit : 0 vulnerabilite Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
151 lines
6.0 KiB
HTML
151 lines
6.0 KiB
HTML
@if (arc) {
|
|
<div class="view-page">
|
|
<header class="view-header">
|
|
<div>
|
|
<h1>
|
|
@if (arc.icon) {
|
|
<lucide-icon [img]="resolveCampaignIcon(arc.icon)" [size]="22" class="title-icon"></lucide-icon>
|
|
}
|
|
{{ arc.name }}
|
|
</h1>
|
|
<p class="view-subtitle">
|
|
{{ arc.type === 'HUB' ? 'Arc en hub (quêtes non linéaires)' : 'Arc narratif' }}
|
|
</p>
|
|
</div>
|
|
<div class="view-actions">
|
|
<button type="button" class="btn-primary" (click)="editMode()">
|
|
<lucide-icon [img]="Pencil" [size]="14"></lucide-icon>
|
|
Modifier
|
|
</button>
|
|
<button type="button" class="btn-danger" (click)="deleteArc()" title="Supprimer l'arc et tout son contenu">
|
|
<lucide-icon [img]="Trash2" [size]="14"></lucide-icon>
|
|
Supprimer
|
|
</button>
|
|
</div>
|
|
</header>
|
|
<!-- Illustrations (rendu editorial magazine) -->
|
|
@if ((arc.illustrationImageIds?.length ?? 0) > 0) {
|
|
<section class="view-section">
|
|
<app-image-gallery [imageIds]="arc.illustrationImageIds ?? []" [layout]="'EDITORIAL'"></app-image-gallery>
|
|
</section>
|
|
}
|
|
<!-- Cartes & plans -->
|
|
@if ((arc.mapImageIds?.length ?? 0) > 0) {
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">🗺️</span> Cartes & plans</h2>
|
|
<app-image-gallery [imageIds]="arc.mapImageIds ?? []" [layout]="'MAPS'"></app-image-gallery>
|
|
</section>
|
|
}
|
|
<!-- Vue Hub (scénario) : liste les quêtes et leurs conditions, sans statut.
|
|
Le statut effectif et les actions de jeu vivent dans l'écran d'une Partie. -->
|
|
@if (arc.type === 'HUB') {
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">🗺️</span> Quêtes du hub (scénario)</h2>
|
|
@if (hubQuests.length === 0) {
|
|
<p class="view-section-empty">
|
|
Aucune quête pour ce hub. Créez-en une pour démarrer.
|
|
</p>
|
|
}
|
|
@if (hubQuests.length > 0) {
|
|
<div class="hub-quest-grid">
|
|
@for (q of hubQuests; track q) {
|
|
<button type="button"
|
|
class="hub-quest-card"
|
|
(click)="openQuest(q)">
|
|
<div class="hub-quest-card-head">
|
|
@if (q.icon) {
|
|
<span class="hub-quest-card-icon">
|
|
<lucide-icon [img]="resolveCampaignIcon(q.icon)" [size]="18"></lucide-icon>
|
|
</span>
|
|
}
|
|
<span class="hub-quest-card-name">{{ q.name }}</span>
|
|
</div>
|
|
@if (q.description?.trim()) {
|
|
<p class="hub-quest-card-desc">{{ q.description }}</p>
|
|
}
|
|
@if ((q.prerequisites?.length ?? 0) > 0) {
|
|
<div class="hub-quest-card-locked-hint">
|
|
<lucide-icon [img]="AlertCircle" [size]="13"></lucide-icon>
|
|
<span>{{ q.prerequisites!.length }} condition(s) de déblocage</span>
|
|
<ul class="hub-quest-card-prereq-list">
|
|
@for (p of q.prerequisites; track p) {
|
|
<li>{{ describePrerequisite(p) }}</li>
|
|
}
|
|
</ul>
|
|
</div>
|
|
}
|
|
</button>
|
|
}
|
|
</div>
|
|
}
|
|
</section>
|
|
}
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">📜</span> Synopsis</h2>
|
|
@if (arc.description?.trim()) {
|
|
<p class="view-section-body">{{ arc.description }}</p>
|
|
} @else {
|
|
<p class="view-section-empty">Non renseigné</p>
|
|
}
|
|
</section>
|
|
<div class="view-row">
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">✨</span> Thèmes principaux</h2>
|
|
@if (arc.themes?.trim()) {
|
|
<p class="view-section-body">{{ arc.themes }}</p>
|
|
} @else {
|
|
<p class="view-section-empty">Non renseigné</p>
|
|
}
|
|
</section>
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">⚖️</span> Enjeux globaux</h2>
|
|
@if (arc.stakes?.trim()) {
|
|
<p class="view-section-body">{{ arc.stakes }}</p>
|
|
} @else {
|
|
<p class="view-section-empty">Non renseigné</p>
|
|
}
|
|
</section>
|
|
</div>
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">🎁</span> Récompenses et progression</h2>
|
|
@if (arc.rewards?.trim()) {
|
|
<p class="view-section-body">{{ arc.rewards }}</p>
|
|
} @else {
|
|
<p class="view-section-empty">Non renseigné</p>
|
|
}
|
|
</section>
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">🎬</span> Dénouement prévu</h2>
|
|
@if (arc.resolution?.trim()) {
|
|
<p class="view-section-body">{{ arc.resolution }}</p>
|
|
} @else {
|
|
<p class="view-section-empty">Non renseigné</p>
|
|
}
|
|
</section>
|
|
<!-- Notes MJ (bloc privé rouge discret) -->
|
|
@if (arc.gmNotes?.trim()) {
|
|
<section class="view-section view-section--private">
|
|
<h2 class="view-section-title">
|
|
<span class="view-section-icon">🔒</span>
|
|
Notes et planification du MJ
|
|
</h2>
|
|
<p class="view-section-body">{{ arc.gmNotes }}</p>
|
|
</section>
|
|
}
|
|
<!-- Pages Lore liées (chips cliquables) -->
|
|
@if (loreId && (arc.relatedPageIds?.length ?? 0) > 0) {
|
|
<section class="view-section">
|
|
<h2 class="view-section-title"><span class="view-section-icon">🔗</span> Pages Lore associées</h2>
|
|
<div class="view-chips">
|
|
@for (relId of arc.relatedPageIds; track relId) {
|
|
<a class="view-chip"
|
|
[routerLink]="['/lore', loreId, 'pages', relId]">
|
|
{{ titleOfRelated(relId) }}
|
|
</a>
|
|
}
|
|
</div>
|
|
</section>
|
|
}
|
|
</div>
|
|
}
|