Files
dodep-simulator/templates/inventory.html
T

426 lines
24 KiB
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Инвентарь — CS2 Simulator</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<a href="/" class="logo">CS2 <span>Simulator</span></a>
<button class="mobile-toggle" id="mobileToggle"></button>
<div class="nav-links" id="navLinks">
<a href="/cases" class="nav-link">Кейсы</a>
<a href="/contracts" class="nav-link">Контракты</a>
<a href="/upgrade" class="nav-link">Апгрейд</a>
<a href="/crash" class="nav-link">Crash</a>
<a href="/inventory" class="nav-link active">Инвентарь</a>
<a href="/activity" class="nav-link">Лента</a>
<a href="/achievements" class="nav-link">Достижения</a>
<a href="/profile" class="nav-link">Профиль</a>
<span class="user-balance">{{ "%.2f"|format(user.balance) }} ₽</span>
<button onclick="toggleSafeMode()" class="btn btn-ghost" id="safeModeToggle" title="Режим записи">🎙️</button>
<button onclick="logout()" class="btn btn-ghost">Выйти</button>
</div>
</div>
</nav>
<main class="section">
<div class="container">
<div class="section-header">
<div>
<h1 class="section-title">🎒 Инвентарь</h1>
<p class="section-subtitle">Всего предметов: <span id="totalItemsCount">{{ inventory_items|length }}</span></p>
</div>
<div class="flex gap-2" style="flex-wrap:wrap;">
<label class="form-checkbox">
<input type="checkbox" id="selectAllCheckbox" onchange="toggleSelectAll()">
<span class="text-sm">Все</span>
</label>
<span class="badge badge-red" id="selectedCountBadge" style="display:none;">0</span>
<span class="badge badge-green" id="totalPriceBadge" style="display:none;">0 ₽</span>
<button class="btn btn-danger btn-sm" id="sellSelectedBtn" onclick="sellSelected()" disabled>Продать</button>
<button class="btn btn-outline btn-sm" onclick="openBulkSellModal()">Массовая продажа</button>
</div>
</div>
<div class="filter-bar">
<select id="rarityFilter" class="form-select" style="width:auto;min-width:140px;" onchange="filterItems()">
<option value="">Все редкости</option>
{% for rarity in rarities %}
<option value="{{ rarity }}">{{ rarity }}</option>
{% endfor %}
</select>
<select id="typeFilter" class="form-select" style="width:auto;min-width:120px;" onchange="filterItems()">
<option value="">Все типы</option>
{% for type in types %}
<option value="{{ type }}">{{ type }}</option>
{% endfor %}
</select>
<input type="text" id="searchInput" class="form-input" placeholder="Поиск..." oninput="filterItems()" style="min-width:160px;">
<button onclick="resetFilters()" class="btn btn-ghost btn-sm">Сбросить</button>
</div>
{% if inventory_items %}
<div class="grid grid-auto-sm" id="inventoryGrid">
{% for item in inventory_items %}
<div class="card" style="position:relative;padding:0.85rem;"
data-inventory-id="{{ item.id }}"
data-rarity="{{ item.rarity }}"
data-type="{{ item.type }}"
data-name="{{ item.name|lower }}"
data-price="{{ item.price_rub or 100 }}">
<input type="checkbox" class="item-select-checkbox"
onchange="onItemSelect(this)"
data-id="{{ item.id }}"
data-price="{{ item.price_rub or 100 }}"
style="position:absolute;top:8px;left:8px;width:18px;height:18px;accent-color:var(--primary);z-index:2;cursor:pointer;">
<div style="width:100%;height:90px;display:flex;align-items:center;justify-content:center;background:var(--bg-dark);border-radius:var(--radius-sm);margin-bottom:0.5rem;">
<img src="{{ item.image_url or '/static/placeholder.png' }}" alt="{{ item.name }}"
style="max-width:85%;max-height:80px;object-fit:contain;"
onerror="this.src='/static/placeholder.png'">
</div>
<div class="text-sm truncate" title="{{ item.name }}">{{ item.name }}</div>
<div class="text-xs text-dim" style="margin-top:0.15rem;">
<span>{{ item.rarity }}</span>
<span>Float: {{ "%.6f"|format(item.float) }}</span>
</div>
<div class="text-xs text-dim">{{ item.type }} / {{ item.wear }}</div>
<div style="display:flex;align-items:center;justify-content:space-between;margin-top:0.5rem;">
<span style="color:var(--primary);font-weight:600;font-size:0.85rem;">💰 {{ "%.0f"|format(item.price_rub or 100) }} ₽</span>
<button onclick="sellSingleItem({{ item.id }})" class="btn btn-ghost btn-sm" style="color:var(--danger);">Продать</button>
</div>
</div>
{% endfor %}
</div>
{% else %}
<div class="empty-state">
<div class="empty-state-icon">📭</div>
<div class="empty-state-title">Ваш инвентарь пуст</div>
<div class="empty-state-desc">Откройте кейсы, чтобы получить первые предметы!</div>
<a href="/cases" class="btn btn-primary">Открыть кейсы</a>
</div>
{% endif %}
</div>
</main>
<!-- Bulk Sell Modal -->
<div class="modal-overlay" id="bulkSellModal" style="display:none;">
<div class="modal" style="max-width:420px;">
<div class="modal-header">
<div class="modal-title">📦 Массовая продажа</div>
<button class="modal-close" onclick="closeBulkSellModal()"></button>
</div>
<div class="modal-body">
<p class="text-dim text-sm" style="margin-bottom:0.75rem;">Выберите редкости предметов для продажи:</p>
<div id="bulkSellOptions" style="display:flex;flex-direction:column;gap:0.35rem;margin-bottom:1rem;"></div>
<div class="text-sm" style="margin-bottom:0.5rem;">
<span>Будет продано: <strong id="bulkSellCount">0</strong></span>
<span style="margin-left:1rem;">Сумма: <strong id="bulkSellTotal" style="color:var(--success);">0 ₽</strong></span>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-ghost" onclick="closeBulkSellModal()">Отмена</button>
<button class="btn btn-danger" onclick="executeBulkSell()">Продать</button>
</div>
</div>
</div>
<script>
let selectedItems = new Set();
let itemPrices = new Map();
document.querySelectorAll('.card[data-inventory-id]').forEach(card => {
const id = parseInt(card.dataset.inventoryId);
const price = parseFloat(card.dataset.price);
itemPrices.set(id, price);
});
function onItemSelect(checkbox) {
const card = checkbox.closest('.card');
const itemId = parseInt(checkbox.dataset.id);
if (checkbox.checked) {
selectedItems.add(itemId);
card.style.borderColor = 'var(--danger)';
card.style.boxShadow = '0 0 15px rgba(239,68,68,0.25)';
} else {
selectedItems.delete(itemId);
card.style.borderColor = '';
card.style.boxShadow = '';
document.getElementById('selectAllCheckbox').checked = false;
}
updateSelectionUI();
}
function toggleSelectAll() {
const selectAll = document.getElementById('selectAllCheckbox');
document.querySelectorAll('.item-select-checkbox').forEach(cb => {
const card = cb.closest('.card');
if (card && card.style.display !== 'none') {
cb.checked = selectAll.checked;
const itemId = parseInt(cb.dataset.id);
if (selectAll.checked) {
selectedItems.add(itemId);
card.style.borderColor = 'var(--danger)';
card.style.boxShadow = '0 0 15px rgba(239,68,68,0.25)';
} else {
selectedItems.delete(itemId);
card.style.borderColor = '';
card.style.boxShadow = '';
}
}
});
updateSelectionUI();
}
function updateSelectionUI() {
const count = selectedItems.size;
const countBadge = document.getElementById('selectedCountBadge');
const priceBadge = document.getElementById('totalPriceBadge');
const sellBtn = document.getElementById('sellSelectedBtn');
if (count > 0) {
countBadge.style.display = 'inline-block';
countBadge.textContent = count;
let total = 0;
selectedItems.forEach(id => { total += itemPrices.get(id) || 100; });
priceBadge.style.display = 'inline-block';
priceBadge.textContent = `${total.toFixed(0)}`;
sellBtn.disabled = false;
} else {
countBadge.style.display = 'none';
priceBadge.style.display = 'none';
sellBtn.disabled = true;
}
}
async function refreshBalance() {
try {
const res = await fetch('/web/api/user/balance');
const data = await res.json();
if (data.success) {
document.querySelectorAll('.user-balance').forEach(el => {
el.textContent = `${Math.floor(data.balance)}`;
});
}
} catch (e) {}
}
async function sellSingleItem(inventoryId) {
if (!confirm('Продать этот предмет?')) return;
const formData = new FormData();
formData.append('inventory_id', inventoryId);
try {
const response = await fetch('/web/api/inventory/sell', { method: 'POST', body: formData });
const data = await response.json();
if (data.success) {
const card = document.querySelector(`.card[data-inventory-id="${inventoryId}"]`);
if (card) { card.style.opacity = '0'; card.style.transform = 'scale(0.8)'; card.style.transition = 'all 0.3s'; setTimeout(() => card.remove(), 300); }
await refreshBalance();
} else { alert(data.error || 'Ошибка'); }
} catch (e) { alert('Ошибка соединения'); }
}
async function sellSelected() {
if (selectedItems.size === 0) return;
let total = 0;
selectedItems.forEach(id => { total += itemPrices.get(id) || 100; });
if (!confirm(`Продать ${selectedItems.size} предметов за ${total.toFixed(0)} ₽?`)) return;
const ids = Array.from(selectedItems);
const formData = new FormData();
formData.append('inventory_ids', JSON.stringify(ids));
try {
const response = await fetch('/web/api/inventory/sell/bulk', { method: 'POST', body: formData });
const data = await response.json();
if (data.success) {
ids.forEach(id => {
const card = document.querySelector(`.card[data-inventory-id="${id}"]`);
if (card) { card.style.opacity = '0'; card.style.transform = 'scale(0.8)'; card.style.transition = 'all 0.3s'; setTimeout(() => card.remove(), 300); }
});
selectedItems.clear();
await refreshBalance();
updateSelectionUI();
} else { alert(data.error || 'Ошибка'); }
} catch (e) { alert('Ошибка соединения'); }
}
function openBulkSellModal() {
const modal = document.getElementById('bulkSellModal');
const optionsDiv = document.getElementById('bulkSellOptions');
const rarities = new Set();
document.querySelectorAll('.card[data-inventory-id]').forEach(card => {
if (card.style.display !== 'none') rarities.add(card.dataset.rarity);
});
let html = `<label class="bulk-sell-option" style="display:flex;align-items:center;gap:0.5rem;padding:0.4rem 0.6rem;background:var(--bg-dark);border-radius:var(--radius-sm);cursor:pointer;">
<input type="checkbox" value="all" onchange="toggleAllRarities(this)" style="width:16px;height:16px;accent-color:var(--primary);">
<span style="flex:1;font-weight:500;" class="text-sm">Все предметы</span>
<span class="text-xs text-dim" id="totalVisibleCount">0</span>
</label>`;
Array.from(rarities).sort().forEach(rarity => {
const count = document.querySelectorAll(`.card[data-rarity="${rarity}"]`).length;
html += `<label style="display:flex;align-items:center;gap:0.5rem;padding:0.4rem 0.6rem;background:var(--bg-dark);border-radius:var(--radius-sm);cursor:pointer;">
<input type="checkbox" value="${rarity}" onchange="updateBulkSellCount()" style="width:16px;height:16px;accent-color:var(--primary);">
<span style="flex:1;" class="text-sm">${rarity}</span>
<span class="text-xs text-dim">${count} шт.</span>
</label>`;
});
optionsDiv.innerHTML = html;
updateVisibleCount();
updateBulkSellCount();
modal.style.display = 'flex';
}
function closeBulkSellModal() { document.getElementById('bulkSellModal').style.display = 'none'; }
function toggleAllRarities(checkbox) {
document.querySelectorAll('#bulkSellOptions input[type="checkbox"]').forEach(cb => { if (cb !== checkbox) cb.checked = checkbox.checked; });
updateBulkSellCount();
}
function updateVisibleCount() {
const visibleCards = document.querySelectorAll('.card[data-inventory-id]:not([style*="display: none"])');
document.getElementById('totalVisibleCount').textContent = visibleCards.length;
}
function updateBulkSellCount() {
const selectedRarities = [];
document.querySelectorAll('#bulkSellOptions input[type="checkbox"]:checked').forEach(cb => {
if (cb.value && cb.value !== 'all') selectedRarities.push(cb.value);
});
const allChecked = document.querySelector('#bulkSellOptions input[value="all"]')?.checked;
let count = 0, total = 0;
document.querySelectorAll('.card[data-inventory-id]').forEach(card => {
if (card.style.display !== 'none') {
if (allChecked || selectedRarities.includes(card.dataset.rarity)) {
count++;
total += parseFloat(card.dataset.price) || 100;
}
}
});
document.getElementById('bulkSellCount').textContent = count;
document.getElementById('bulkSellTotal').textContent = `${total.toFixed(0)}`;
}
async function executeBulkSell() {
const selectedRarities = [];
document.querySelectorAll('#bulkSellOptions input[type="checkbox"]:checked').forEach(cb => {
if (cb.value && cb.value !== 'all') selectedRarities.push(cb.value);
});
const allChecked = document.querySelector('#bulkSellOptions input[value="all"]')?.checked;
const idsToSell = [];
document.querySelectorAll('.card[data-inventory-id]').forEach(card => {
if (card.style.display !== 'none') {
if (allChecked || selectedRarities.includes(card.dataset.rarity)) {
idsToSell.push(parseInt(card.dataset.inventoryId));
}
}
});
if (idsToSell.length === 0) { alert('Выберите хотя бы одну редкость'); return; }
if (!confirm(`Продать ${idsToSell.length} предметов?`)) return;
const formData = new FormData();
formData.append('inventory_ids', JSON.stringify(idsToSell));
try {
const response = await fetch('/web/api/inventory/sell/bulk', { method: 'POST', body: formData });
const data = await response.json();
if (data.success) {
await refreshBalance();
document.querySelectorAll('.card[data-inventory-id]').forEach(card => {
card.style.opacity = '0'; card.style.transform = 'scale(0.8)'; card.style.transition = 'all 0.3s'; setTimeout(() => card.remove(), 300);
});
} else { alert(data.error || 'Ошибка'); }
} catch (e) { alert('Ошибка соединения'); }
}
function filterItems() {
const rarityFilter = document.getElementById('rarityFilter').value.toLowerCase();
const typeFilter = document.getElementById('typeFilter').value.toLowerCase();
const searchQuery = document.getElementById('searchInput').value.toLowerCase();
let visibleCount = 0;
document.querySelectorAll('.card[data-inventory-id]').forEach(item => {
const r = item.dataset.rarity.toLowerCase();
const t = item.dataset.type.toLowerCase();
const n = item.dataset.name;
let visible = true;
if (rarityFilter && r !== rarityFilter) visible = false;
if (typeFilter && t !== typeFilter) visible = false;
if (searchQuery && !n.includes(searchQuery)) visible = false;
item.style.display = visible ? '' : 'none';
if (visible) visibleCount++;
});
document.getElementById('totalItemsCount').textContent = visibleCount;
selectedItems.clear();
document.querySelectorAll('.item-select-checkbox').forEach(cb => cb.checked = false);
document.querySelectorAll('.card[data-inventory-id]').forEach(c => { c.style.borderColor = ''; c.style.boxShadow = ''; });
document.getElementById('selectAllCheckbox').checked = false;
updateSelectionUI();
}
function resetFilters() {
document.getElementById('rarityFilter').value = '';
document.getElementById('typeFilter').value = '';
document.getElementById('searchInput').value = '';
filterItems();
}
document.getElementById('bulkSellModal').addEventListener('click', (e) => { if (e.target === e.currentTarget) closeBulkSellModal(); });
</script>
<script src="/static/js/sounds.js"></script>
<script src="/static/js/websocket.js"></script>
<script src="/static/js/safemode.js"></script>
<script>
function toggleSound() {
const enabled = SoundManager.toggle();
document.getElementById('soundToggle').textContent = enabled ? '🔊' : '🔇';
}
document.addEventListener('DOMContentLoaded', () => {
const btn = document.getElementById('soundToggle');
if (btn) btn.textContent = localStorage.getItem('sound_enabled') !== 'false' ? '🔊' : '🔇';
});
WS.on('inventory_update', () => refreshInventory());
WS.on('item_sold', () => refreshInventory());
WS.on('balance_update', () => { if (typeof refreshBalance === 'function') refreshBalance(); });
let refreshTimeout;
function refreshInventory() {
clearTimeout(refreshTimeout);
refreshTimeout = setTimeout(() => {
fetch('/web/api/inventory/items').then(r => r.json()).then(items => rebuildInventoryGrid(items)).catch(() => {});
}, 800);
}
function rebuildInventoryGrid(items) {
const grid = document.getElementById('inventoryGrid');
if (!grid) return;
if (!items.length) {
grid.innerHTML = '<div class="empty-state"><div class="empty-state-icon">📭</div><div class="empty-state-title">Ваш инвентарь пуст</div><div class="empty-state-desc">Откройте кейсы, чтобы получить первые предметы!</div><a href="/cases" class="btn btn-primary">Открыть кейсы</a></div>';
document.getElementById('selectAllCheckbox') && (document.getElementById('selectAllCheckbox').checked = false);
selectedItems.clear(); updateSelectionUI(); return;
}
let html = '';
items.forEach(item => {
html += `<div class="card" style="position:relative;padding:0.85rem;" data-inventory-id="${item.id}" data-rarity="${item.rarity || ''}" data-type="${item.type || ''}" data-name="${(item.name||'').toLowerCase()}" data-price="${item.price_rub || 100}">
<input type="checkbox" class="item-select-checkbox" onchange="onItemSelect(this)" data-id="${item.id}" data-price="${item.price_rub || 100}" style="position:absolute;top:8px;left:8px;width:18px;height:18px;accent-color:var(--primary);z-index:2;cursor:pointer;">
<div style="width:100%;height:90px;display:flex;align-items:center;justify-content:center;background:var(--bg-dark);border-radius:var(--radius-sm);margin-bottom:0.5rem;">
<img src="${item.image_url || '/static/placeholder.png'}" alt="${item.name}" style="max-width:85%;max-height:80px;object-fit:contain;" onerror="this.src='/static/placeholder.png'">
</div>
<div class="text-sm truncate" title="${item.name}">${item.name}</div>
<div class="text-xs text-dim" style="margin-top:0.15rem;"><span>${item.rarity || ''}</span><span> Float: ${item.float ? item.float.toFixed(6) : ''}</span></div>
<div class="text-xs text-dim">${item.type || ''} / ${item.wear || ''}</div>
<div style="display:flex;align-items:center;justify-content:space-between;margin-top:0.5rem;">
<span style="color:var(--primary);font-weight:600;font-size:0.85rem;">💰 ${(item.price_rub || 100).toLocaleString()} ₽</span>
<button onclick="sellSingleItem(${item.id})" class="btn btn-ghost btn-sm" style="color:var(--danger);">Продать</button>
</div>
</div>`;
});
grid.innerHTML = html;
selectedItems.clear(); updateSelectionUI();
document.getElementById('selectAllCheckbox') && (document.getElementById('selectAllCheckbox').checked = false);
if (typeof filterItems === 'function') filterItems();
}
</script>
{% include '_activity_sidebar.html' %}
</body>
</html>