- pulp_client: get_repo / sync_repo / get_task (비동기 task href 반환)
- POST /repos/{uuid}/sync: remote 확인 후 동기화 시작, 진행률 조각 반환
- GET /repos/{uuid}/progress: progress_reports 합산 → 바/퍼센트,
완료/실패 시 hx-trigger 제거로 폴링 중단
- task_store: uuid→task_href 메모리 추적 (단일 인스턴스), 대시보드 '동기화 중' 집계
- views.task_progress: state/done/total/percent + created_resources에서 새 vN
- 동기화는 안전 동작이라 확인 모달 없이 실행 (스펙 §5-1)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
52 lines
2.0 KiB
HTML
52 lines
2.0 KiB
HTML
<div id="repo-list">
|
|
{% if error %}
|
|
<p role="alert" class="status-line status-bad">저장소 목록을 불러오지 못했습니다: {{ error }}</p>
|
|
{% else %}
|
|
<div class="summary">
|
|
<div class="card"><div class="value">{{ summary.total }}</div><div class="label">전체 저장소</div></div>
|
|
<div class="card"><div class="value">{{ summary.syncing }}</div><div class="label">동기화 중</div></div>
|
|
<div class="card"><div class="value">{{ summary.gpg_pass }}</div><div class="label">GPG 검증 통과</div></div>
|
|
<div class="card"><div class="value">{{ summary.total_packages }}</div><div class="label">총 패키지</div></div>
|
|
</div>
|
|
|
|
{% if repos %}
|
|
<div class="table-card">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>저장소</th>
|
|
<th>검증</th>
|
|
<th class="num">최신 버전</th>
|
|
<th class="num">패키지 수</th>
|
|
<th>마지막 동기화</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for repo in repos %}
|
|
<tr>
|
|
<td class="repo-name">{{ repo.name }}</td>
|
|
<td><span class="badge badge-{{ repo.gpg.level }}">{{ repo.gpg.label }}</span></td>
|
|
<td class="num">{% if repo.latest_version is not none %}v{{ repo.latest_version }}{% else %}—{% endif %}</td>
|
|
<td class="num">{% if repo.package_count is not none %}{{ repo.package_count }}{% else %}—{% endif %}</td>
|
|
<td>{{ repo.last_sync or "—" }}</td>
|
|
<td>
|
|
<div id="sync-{{ repo.uuid }}">
|
|
<button class="secondary"
|
|
hx-post="/repos/{{ repo.uuid }}/sync"
|
|
hx-target="#sync-{{ repo.uuid }}"
|
|
hx-swap="innerHTML"
|
|
hx-disabled-elt="this">동기화</button>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{% else %}
|
|
<p>등록된 저장소가 없습니다.</p>
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|