- Export button in AoE Timeline card title row (replaces bottom bar) - Import modal with mechanic-only vs with-mitigations choice, new plan vs merge into existing plan - Merge logic: match by abilityName + timestamp ±5s, keep existing assignments - Color-coded assignment badges: blue=buff, red=debuff, gold=shield - buffType stored in assignments for color rendering - Modal radio button layout fix (override global input width:100%) - Auto-switch to Planner tab after import - window.showTab exposed from tabs.js Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
48 lines
1.8 KiB
PHP
48 lines
1.8 KiB
PHP
<div id="analysis-loading" class="loading" style="display:none">
|
|
<div class="spinner"></div>
|
|
<span>Analysiere Fight-Daten...</span>
|
|
</div>
|
|
|
|
<div id="analysis-empty" class="empty">
|
|
<div class="empty-icon">📊</div>
|
|
<h3 id="analysis-empty-msg">Bitte zuerst einen Fight im Report-Tab auswählen</h3>
|
|
</div>
|
|
|
|
<div id="analysis-content" style="display:none">
|
|
|
|
<div class="card section-gap">
|
|
<div class="card-title-row">
|
|
<div class="card-title">Spieler</div>
|
|
<select id="ref-fight-select" class="filter-input" style="display:none">
|
|
<option value="">Kein Vergleich</option>
|
|
</select>
|
|
</div>
|
|
<div id="player-grid" class="player-grid"></div>
|
|
<div id="ref-player-section" style="display:none">
|
|
<div class="ref-player-label">REF Spieler</div>
|
|
<div id="ref-player-grid" class="player-grid"></div>
|
|
</div>
|
|
<div class="ref-ext-row">
|
|
<button id="ref-ext-toggle" class="btn btn-sm">+ Anderer Report</button>
|
|
<div id="ref-ext-panel" style="display:none">
|
|
<input type="text" id="ref-report-input" class="ref-report-input" placeholder="Report-Code">
|
|
<button id="ref-report-load" class="btn btn-sm">Laden</button>
|
|
<select id="ref-ext-fight-select" class="filter-input" style="display:none">
|
|
<option value="">— Fight auswählen —</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-title-row">
|
|
<div class="card-title">AoE Timeline</div>
|
|
<select id="phase-select" class="filter-input" style="display:none"></select>
|
|
<input type="text" id="player-filter" class="filter-input" placeholder="Spieler filtern…">
|
|
<button id="export-to-planner-btn" class="btn btn-sm btn-gold" style="display:none">📋 Exportieren</button>
|
|
</div>
|
|
<div id="aoe-timeline"></div>
|
|
</div>
|
|
|
|
</div>
|