forked from xziino/ff14-mitigator
When an external reference report is loaded and its roster differs from the current report, a second player section appears below the main grid showing all REF report players. REF tanks are hidden by default. Clicking any REF player card toggles their visibility in the REF timeline rows. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
1.7 KiB
PHP
47 lines
1.7 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…">
|
|
</div>
|
|
<div id="aoe-timeline"></div>
|
|
</div>
|
|
|
|
</div>
|