Files
no-copy-frontend/src/app/ui/violations/violations-table.tsx
T

80 lines
2.3 KiB
TypeScript
Raw Normal View History

2026-01-15 14:18:08 +07:00
export default function ViolationsTable() {
return (
<div className="violations-table-section">
<div className="section-header">
<div className="section-title">Обнаруженные нарушения (17)</div>
</div>
<div className="violations-table-container">
<table className="violations-table">
<thead>
<tr>
<th></th>
<th>Файл</th>
<th>URL нарушения</th>
<th>Статистика</th>
<th>DMCA Жалоба</th>
<th>Действия</th>
</tr>
</thead>
<tbody>
<tr>
<td className="violation-preview-cell">
<div className="violation-preview">
<img src="image-preview.php?id=303" alt="Preview" loading="lazy" />
</div>
</td>
<td className="violation-filename-cell">
<div className="violation-filename" title="banner111.png">
banner111.png</div>
<div className="violation-date">
📅 17.10.2025</div>
</td>
<td className="violation-url-cell">
<a href="https://m.apkpure.com/th/4k-wallpapers/com.starwalls.BACKGROUND.wallpapers4K.starwall" target="_blank" className="violation-link" title="https://m.apkpure.com/th/4k-wallpapers/com.starwalls.BACKGROUND.wallpapers4K.starwall">
https://m.apkpure.com/th/4k-wallpapers/com.starwalls.BACKGROUND.wallpapers4K.starwall</a>
</td>
<td className="violation-stats-cell">
<div className="confidence-badge">
📊 85%
</div>
<div className="sources-count">
🔗 2 источников
</div>
</td>
<td className="violation-dmca-cell">
<button className="btn-dmca-complaint" title="Подать DMCA жалобу">
🚨 ПОЖАЛОВАТЬСЯ
</button>
</td>
<td className="violation-actions-cell">
<div className="violation-actions">
<button className="action-icon-btn btn-view" title="Детали">
👁️
</button>
<button className="action-icon-btn btn-ok" title="Одобрить">
</button>
<button className="action-icon-btn btn-block" title="Жалоба">
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
)
}