185 lines
6.2 KiB
HTML
185 lines
6.2 KiB
HTML
<div class="edit-page">
|
|
|
|
<div class="page-header">
|
|
<div>
|
|
<h1>{{ arc?.name || ('arcEdit.fallbackTitle' | translate) }}</h1>
|
|
<p class="subtitle">{{ 'arcEdit.subtitle' | translate }}</p>
|
|
</div>
|
|
<div class="header-actions">
|
|
<button type="button" class="btn-ai"
|
|
(click)="toggleChat()"
|
|
[class.active]="chatOpen"
|
|
[title]="'arcEdit.aiAssistantTitle' | translate">
|
|
<lucide-icon [img]="Sparkles" [size]="14"></lucide-icon>
|
|
{{ 'arcEdit.aiAssistant' | translate }}
|
|
</button>
|
|
<button type="button" class="btn-secondary" (click)="cancel()">{{ 'common.cancel' | translate }}</button>
|
|
<button type="button" class="btn-danger" (click)="delete()">
|
|
<lucide-icon [img]="Trash2" [size]="14"></lucide-icon>
|
|
{{ 'common.delete' | translate }}
|
|
</button>
|
|
<button type="button" class="btn-primary" (click)="submit()" [disabled]="form.invalid">
|
|
{{ 'common.save' | translate }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<form [formGroup]="form" (ngSubmit)="submit()" class="edit-form">
|
|
|
|
<!-- Illustrations (galerie editable, rendu editorial) -->
|
|
<div class="field">
|
|
<label>{{ 'arcEdit.illustrationsLabel' | translate }}</label>
|
|
<app-image-gallery
|
|
[imageIds]="illustrationImageIds"
|
|
[editable]="true"
|
|
[layout]="'EDITORIAL'"
|
|
(imageIdsChange)="illustrationImageIds = $event">
|
|
</app-image-gallery>
|
|
<small class="field-hint">{{ 'arcEdit.illustrationsHint' | translate }}</small>
|
|
</div>
|
|
|
|
<!-- Cartes & plans -->
|
|
<div class="field">
|
|
<label>{{ 'arcEdit.mapsLabel' | translate }}</label>
|
|
<app-image-gallery
|
|
[imageIds]="mapImageIds"
|
|
[editable]="true"
|
|
[layout]="'MAPS'"
|
|
(imageIdsChange)="mapImageIds = $event">
|
|
</app-image-gallery>
|
|
<small class="field-hint">{{ 'arcEdit.mapsHint' | translate }}</small>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="arc-edit-name">{{ 'arcEdit.nameLabel' | translate }}</label>
|
|
<input
|
|
id="arc-edit-name"
|
|
type="text"
|
|
formControlName="name"
|
|
[placeholder]="'arcEdit.namePlaceholder' | translate"
|
|
[class.invalid]="form.get('name')?.invalid && form.get('name')?.touched"
|
|
/>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="arc-edit-description">{{ 'arcEdit.synopsisLabel' | translate }}</label>
|
|
<textarea
|
|
id="arc-edit-description"
|
|
formControlName="description"
|
|
[placeholder]="'arcEdit.synopsisPlaceholder' | translate"
|
|
rows="5">
|
|
</textarea>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label>{{ 'arcEdit.structureLabel' | translate }}</label>
|
|
<div class="arc-type-choice">
|
|
<label class="arc-type-option" [class.selected]="form.get('type')?.value === 'LINEAR'">
|
|
<input type="radio" formControlName="type" value="LINEAR" />
|
|
<span class="arc-type-title">{{ 'arcEdit.linearTitle' | translate }}</span>
|
|
<span class="arc-type-desc">{{ 'arcEdit.linearDesc' | translate }}</span>
|
|
</label>
|
|
<label class="arc-type-option" [class.selected]="form.get('type')?.value === 'HUB'">
|
|
<input type="radio" formControlName="type" value="HUB" />
|
|
<span class="arc-type-title">{{ 'arcEdit.hubTitle' | translate }}</span>
|
|
<span class="arc-type-desc">{{ 'arcEdit.hubDesc' | translate }}</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label>{{ 'arcEdit.iconLabel' | translate }}</label>
|
|
<app-icon-picker [options]="campaignIconOptions" [(selected)]="selectedIcon"></app-icon-picker>
|
|
</div>
|
|
|
|
<div class="field-row">
|
|
<div class="field">
|
|
<label for="arc-edit-themes">{{ 'arcEdit.themesLabel' | translate }}</label>
|
|
<textarea
|
|
id="arc-edit-themes"
|
|
formControlName="themes"
|
|
[placeholder]="'arcEdit.themesPlaceholder' | translate"
|
|
rows="4">
|
|
</textarea>
|
|
</div>
|
|
<div class="field">
|
|
<label for="arc-edit-stakes">{{ 'arcEdit.stakesLabel' | translate }}</label>
|
|
<textarea
|
|
id="arc-edit-stakes"
|
|
formControlName="stakes"
|
|
[placeholder]="'arcEdit.stakesPlaceholder' | translate"
|
|
rows="4">
|
|
</textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="arc-edit-gm-notes">{{ 'arcEdit.gmNotesLabel' | translate }}</label>
|
|
<textarea
|
|
id="arc-edit-gm-notes"
|
|
formControlName="gmNotes"
|
|
[placeholder]="'arcEdit.gmNotesPlaceholder' | translate"
|
|
rows="5">
|
|
</textarea>
|
|
<small class="field-hint">{{ 'arcEdit.gmNotesHint' | translate }}</small>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="arc-edit-rewards">{{ 'arcEdit.rewardsLabel' | translate }}</label>
|
|
<textarea
|
|
id="arc-edit-rewards"
|
|
formControlName="rewards"
|
|
[placeholder]="'arcEdit.rewardsPlaceholder' | translate"
|
|
rows="4">
|
|
</textarea>
|
|
</div>
|
|
|
|
<div class="field">
|
|
<label for="arc-edit-resolution">{{ 'arcEdit.resolutionLabel' | translate }}</label>
|
|
<textarea
|
|
id="arc-edit-resolution"
|
|
formControlName="resolution"
|
|
[placeholder]="'arcEdit.resolutionPlaceholder' | translate"
|
|
rows="4">
|
|
</textarea>
|
|
</div>
|
|
|
|
<!-- ===== Pages Lore associées (phase B2 cross-context) ===== -->
|
|
@if (loreId) {
|
|
<div class="field">
|
|
<label>{{ 'arcEdit.relatedPagesLabel' | translate }}</label>
|
|
<app-lore-link-picker
|
|
[value]="relatedPageIds"
|
|
[availablePages]="availablePages"
|
|
[loreId]="loreId"
|
|
(valueChange)="relatedPageIds = $event">
|
|
</app-lore-link-picker>
|
|
<small class="field-hint">
|
|
{{ 'arcEdit.relatedPagesHint' | translate }}
|
|
</small>
|
|
</div>
|
|
}
|
|
|
|
@if (!loreId) {
|
|
<div class="field lore-hint">
|
|
<small class="field-hint">
|
|
{{ 'arcEdit.noLoreHint' | translate }}
|
|
</small>
|
|
</div>
|
|
}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<!-- Drawer chat IA (hors .edit-page pour couvrir le viewport à droite) -->
|
|
<app-ai-chat-drawer
|
|
[campaignId]="campaignId"
|
|
entityType="arc"
|
|
[entityId]="arcId"
|
|
[isOpen]="chatOpen"
|
|
[welcomeMessage]="'arcEdit.chatWelcome' | translate"
|
|
[quickSuggestions]="chatQuickSuggestions"
|
|
(close)="chatOpen = false">
|
|
</app-ai-chat-drawer>
|