mirror of
https://github.com/Dvorinka/PPve.git
synced 2026-06-03 20:12:59 +00:00
407 lines
18 KiB
HTML
407 lines
18 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Kontakty</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
|
|
<style>
|
|
.contact-card {
|
|
transition: all 0.2s ease-in-out;
|
|
border-top: 4px solid #2563eb;
|
|
}
|
|
.contact-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
|
}
|
|
.search-highlight {
|
|
background-color: #fef3c7;
|
|
padding: 1px 2px;
|
|
border-radius: 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-100 min-h-screen">
|
|
<header class="bg-gradient-to-r from-blue-600 to-indigo-700 text-white shadow-lg" style="margin-bottom: 20px;">
|
|
<div class="container mx-auto px-4 py-6">
|
|
<h1 class="text-3xl font-bold">📞 Firemní telefonní seznam</h1>
|
|
<p class="mt-2 text-blue-100">Poppe + Potthoff kontakty</p>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="container mx-auto px-4 py-8 max-w-7xl">
|
|
<div class="bg-white rounded-xl shadow p-6 md:p-8">
|
|
<!-- Header -->
|
|
<div class="flex flex-col sm:flex-row justify-between items-start sm:items-center mb-8 gap-4">
|
|
<div>
|
|
<h1 class="text-4xl font-bold text-gray-800 mb-2">📞 Kontakty</h1>
|
|
<p class="text-gray-600">Firemní telefonní seznam</p>
|
|
</div>
|
|
<button onclick="reloadContacts()" id="reloadBtn"
|
|
class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg transition-all duration-200 shadow-md hover:shadow-lg flex items-center gap-2">
|
|
<i class="fas fa-sync-alt"></i>
|
|
Obnovit
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Search Bar -->
|
|
<div class="mb-6">
|
|
<div class="relative">
|
|
<input type="text" id="searchInput" placeholder="Hledat podle jména, pozice nebo telefonu..."
|
|
class="w-full px-4 py-3 pl-12 rounded-lg shadow-sm border-gray-200 focus:border-blue-500 focus:ring-2 focus:ring-blue-500 focus:outline-none text-lg"
|
|
onkeyup="filterContacts()">
|
|
<i class="fas fa-search absolute left-4 top-1/2 transform -translate-y-1/2 text-gray-400"></i>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Switcher -->
|
|
<div class="flex items-center justify-center mb-8">
|
|
<div class="inline-flex rounded-md shadow-sm" role="group">
|
|
<button
|
|
id="showMainContacts"
|
|
class="switcher-btn px-4 py-2 text-sm font-medium rounded-l-lg border border-gray-200 bg-blue-600 text-white focus:z-10 focus:ring-2 focus:ring-blue-500 active"
|
|
onclick="switchTab(this)"
|
|
data-type="main">
|
|
Hlavní kontakty
|
|
</button>
|
|
<button
|
|
id="showInternalContacts"
|
|
class="switcher-btn px-4 py-2 text-sm font-medium rounded-r-md border border-gray-200 bg-gray-100 text-gray-700 hover:bg-gray-200 focus:z-10 focus:ring-2 focus:ring-blue-500"
|
|
onclick="switchTab(this)"
|
|
data-type="internal">
|
|
Interní kontakty
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Loading State -->
|
|
<div id="loading" class="text-center py-16">
|
|
<div class="inline-block animate-spin rounded-full h-12 w-12 border-b-2 border-blue-500 mb-4"></div>
|
|
<p class="text-gray-600 text-lg">Načítání kontaktů...</p>
|
|
</div>
|
|
|
|
<!-- Main Content -->
|
|
<div id="contactsList" class="hidden">
|
|
<!-- Stats -->
|
|
<div id="stats" class="mb-6 p-4 bg-gray-50 rounded-lg border text-sm text-gray-700"></div>
|
|
|
|
<!-- Contacts Grid -->
|
|
<div class="container">
|
|
<h1>Kontakty</h1>
|
|
|
|
<div class="section">
|
|
<h2>Hlavní kontakty</h2>
|
|
<div id="contacts" class="grid gap-6 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"></div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Interní kontakty</h2>
|
|
<div id="internal-contacts" class="grid gap-6 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- No Results -->
|
|
<div id="noResults" class="hidden text-center py-16">
|
|
<div class="text-6xl mb-4">🔍</div>
|
|
<h3 class="text-xl font-semibold text-gray-700 mb-2">Žádné výsledky</h3>
|
|
<p class="text-gray-500">Zkuste změnit hledaný výraz</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Error State -->
|
|
<div id="error" class="hidden text-center py-16">
|
|
<div class="text-6xl mb-4">⚠️</div>
|
|
<h3 class="text-xl font-semibold text-red-600 mb-2">Chyba při načítání</h3>
|
|
<p class="text-gray-600 mb-4">Nepodařilo se načíst kontakty</p>
|
|
<button onclick="loadContacts()" class="bg-red-600 hover:bg-red-700 text-white px-4 py-2 rounded-lg transition-colors">
|
|
Zkusit znovu
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<footer class="bg-gray-800 text-gray-400 py-6 mt-12">
|
|
<div class="container mx-auto px-4 text-center">
|
|
<p>2025 Poppe + Potthoff</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
let currentData = {
|
|
Contacts: [],
|
|
InternalContacts: [],
|
|
last_updated: new Date().toISOString()
|
|
};
|
|
|
|
async function loadContacts() {
|
|
try {
|
|
showLoading();
|
|
const response = await fetch('http://localhost:8081/contacts');
|
|
|
|
if (!response.ok) {
|
|
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
|
|
}
|
|
|
|
const apiData = await response.json();
|
|
|
|
// Transform API data to match our expected structure
|
|
currentData = {
|
|
Contacts: apiData.contacts.filter(c => !c.name.includes('Interní')),
|
|
InternalContacts: apiData.contacts.filter(c => c.name.includes('Interní')),
|
|
last_updated: apiData.last_updated
|
|
};
|
|
|
|
hideLoading();
|
|
showContactsList();
|
|
updateStats(currentData);
|
|
filterContacts();
|
|
} catch (error) {
|
|
console.error('Error loading contacts:', error);
|
|
hideLoading();
|
|
showError(error.message);
|
|
}
|
|
}
|
|
|
|
function showLoading() {
|
|
document.getElementById('loading').classList.remove('hidden');
|
|
document.getElementById('contactsList').classList.add('hidden');
|
|
document.getElementById('error').classList.add('hidden');
|
|
}
|
|
|
|
function hideLoading() {
|
|
document.getElementById('loading').classList.add('hidden');
|
|
}
|
|
|
|
function showContactsList() {
|
|
const contactsList = document.getElementById('contactsList');
|
|
const errorElement = document.getElementById('error');
|
|
|
|
if (contactsList) contactsList.classList.remove('hidden');
|
|
if (errorElement) errorElement.classList.add('hidden');
|
|
|
|
// Show default tab (main contacts) if none active
|
|
const mainBtn = document.querySelector('.switcher-btn[data-type="main"]');
|
|
const activeBtn = document.querySelector('.switcher-btn.active');
|
|
|
|
if (!activeBtn && mainBtn) {
|
|
mainBtn.classList.add('active');
|
|
}
|
|
|
|
filterContacts();
|
|
}
|
|
|
|
function switchTab(btn) {
|
|
// Update button states
|
|
document.querySelectorAll('.switcher-btn').forEach(b => {
|
|
b.classList.remove('active', 'bg-blue-600', 'text-white');
|
|
b.classList.add('bg-gray-100', 'text-gray-700');
|
|
});
|
|
|
|
// Set active button
|
|
btn.classList.add('active', 'bg-blue-600', 'text-white');
|
|
btn.classList.remove('bg-gray-100', 'text-gray-700');
|
|
|
|
// Filter and display contacts
|
|
filterContacts();
|
|
}
|
|
|
|
function filterContacts() {
|
|
const query = document.getElementById('searchInput').value.toLowerCase().trim();
|
|
const activeTab = document.querySelector('.switcher-btn.active')?.dataset.type || 'main';
|
|
|
|
// Get contacts for active tab
|
|
const contacts = activeTab === 'main' ? currentData.Contacts : currentData.InternalContacts;
|
|
|
|
// Apply search filter
|
|
const filteredContacts = query ?
|
|
contacts.filter(c =>
|
|
c.name.toLowerCase().includes(query) ||
|
|
c.position.toLowerCase().includes(query) ||
|
|
c.phone.includes(query) ||
|
|
(c.service_phone && c.service_phone.includes(query))
|
|
) : contacts;
|
|
|
|
displayContacts(filteredContacts, query);
|
|
}
|
|
|
|
function showError(message) {
|
|
document.getElementById('error').classList.remove('hidden');
|
|
document.getElementById('error').querySelector('p').textContent = message;
|
|
document.getElementById('contactsList').classList.add('hidden');
|
|
}
|
|
|
|
function updateStats(data) {
|
|
const lastUpdated = new Date(data.last_updated).toLocaleString('cs-CZ');
|
|
const totalContacts = (data.Contacts?.length || 0) + (data.InternalContacts?.length || 0);
|
|
|
|
document.getElementById('stats').innerHTML = `
|
|
<div class="flex flex-wrap items-center gap-4 text-sm">
|
|
<div class="flex items-center gap-2">
|
|
<span class="w-2 h-2 bg-green-500 rounded-full"></span>
|
|
<span><strong>Celkem:</strong> ${totalContacts} kontaktů</span>
|
|
</div>
|
|
<div class="flex items-center gap-2">
|
|
<span class="w-2 h-2 bg-gray-400 rounded-full"></span>
|
|
<span><strong>Poslední aktualizace:</strong> ${lastUpdated}</span>
|
|
</div>
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
function displayContacts(contacts = [], searchQuery = '') {
|
|
const container = document.getElementById('contacts');
|
|
const noResults = document.getElementById('noResults');
|
|
|
|
// Clear previous results
|
|
container.innerHTML = '';
|
|
|
|
if (!contacts || !contacts.length) {
|
|
noResults.classList.remove('hidden');
|
|
noResults.querySelector('h3').textContent = 'Žádné kontakty';
|
|
noResults.querySelector('p').textContent = searchQuery
|
|
? 'Nebyly nalezeny žádné odpovídající kontakty'
|
|
: 'Nebyly načteny žádné kontakty';
|
|
return;
|
|
}
|
|
|
|
noResults.classList.add('hidden');
|
|
|
|
// Display contacts
|
|
container.innerHTML = contacts
|
|
.map(contact => formatContactCard(contact, searchQuery))
|
|
.join('');
|
|
}
|
|
|
|
function formatContactCard(contact, searchQuery) {
|
|
const name = contact.name || 'Bez jména';
|
|
const position = contact.position || '';
|
|
|
|
return `<div class="contact-card bg-white p-6 rounded-lg border border-gray-200 hover:shadow-lg transition-all duration-200">
|
|
<div class="flex items-start justify-between mb-3">
|
|
<h3 class="font-bold text-gray-800 text-lg leading-tight">${highlightText(name, searchQuery)}</h3>
|
|
</div>
|
|
${position ? `<p class="text-gray-600 mb-4 text-sm leading-relaxed">${highlightText(position, searchQuery)}</p>` : ''}
|
|
<div class="space-y-2">
|
|
${contact.phone ? `
|
|
<div class="flex items-center text-sm group">
|
|
<i class="fas fa-phone-alt text-gray-400 mr-3 flex-shrink-0"></i>
|
|
<span class="font-medium text-gray-700 mr-2">Tel:</span>
|
|
<a href="tel:${contact.phone}" class="text-blue-600 hover:text-blue-800 hover:underline transition-colors">
|
|
${highlightText(contact.phone, searchQuery)}
|
|
</a>
|
|
</div>
|
|
` : ''}
|
|
${contact.service_phone ? `
|
|
<div class="flex items-center text-sm group">
|
|
<i class="fas fa-phone-alt text-gray-400 mr-3 flex-shrink-0"></i>
|
|
<span class="font-medium text-gray-700 mr-2">Služební:</span>
|
|
<a href="tel:${contact.service_phone}" class="text-blue-600 hover:text-blue-800 hover:underline transition-colors">
|
|
${highlightText(contact.service_phone, searchQuery)}
|
|
</a>
|
|
</div>
|
|
` : ''}
|
|
${!contact.phone && !contact.service_phone ? '<p class="text-gray-400 text-sm italic">Bez telefonu</p>' : ''}
|
|
</div>
|
|
</div>`;
|
|
}
|
|
|
|
function highlightText(text, query) {
|
|
if (!query || !text) return text;
|
|
const regex = new RegExp(`(${query})`, 'gi');
|
|
return text.replace(regex, '<span class="search-highlight">$1</span>');
|
|
}
|
|
|
|
async function reloadContacts() {
|
|
const btn = document.getElementById('reloadBtn');
|
|
const originalText = btn.innerHTML;
|
|
|
|
btn.disabled = true;
|
|
btn.innerHTML = `
|
|
<i class="fas fa-sync-alt animate-spin"></i>
|
|
Načítání...
|
|
`;
|
|
|
|
try {
|
|
const response = await fetch('http://localhost:8081/reload', { method: 'POST' });
|
|
if (!response.ok) {
|
|
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
|
|
}
|
|
|
|
// Small delay to show the loading state
|
|
await new Promise(resolve => setTimeout(resolve, 500));
|
|
await loadContacts();
|
|
|
|
// Show success feedback
|
|
btn.innerHTML = `
|
|
<i class="fas fa-check text-green-500"></i>
|
|
Obnoveno
|
|
`;
|
|
|
|
setTimeout(() => {
|
|
btn.innerHTML = originalText;
|
|
}, 2000);
|
|
|
|
} catch (error) {
|
|
console.error('Error reloading:', error);
|
|
btn.innerHTML = `
|
|
<i class="fas fa-times text-red-500"></i>
|
|
Chyba
|
|
`;
|
|
|
|
setTimeout(() => {
|
|
btn.innerHTML = originalText;
|
|
}, 2000);
|
|
|
|
alert('Chyba při obnovování: ' + error.message);
|
|
} finally {
|
|
btn.disabled = false;
|
|
}
|
|
}
|
|
|
|
// Initialize filter button styles
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
const style = document.createElement('style');
|
|
style.textContent = `
|
|
.filter-btn {
|
|
@apply px-4 py-2 rounded-lg border border-gray-300 text-gray-700 hover:bg-gray-50 transition-all duration-200 text-sm font-medium;
|
|
}
|
|
.filter-btn.active {
|
|
@apply bg-blue-500 text-white border-blue-500 shadow-md;
|
|
}
|
|
.filter-btn:hover:not(.active) {
|
|
@apply bg-gray-100 border-gray-400;
|
|
}
|
|
`;
|
|
document.head.appendChild(style);
|
|
});
|
|
|
|
// Load contacts on page load
|
|
document.addEventListener('DOMContentLoaded', loadContacts);
|
|
|
|
// Add keyboard shortcuts
|
|
document.addEventListener('keydown', function(e) {
|
|
// Ctrl/Cmd + K to focus search
|
|
if ((e.ctrlKey || e.metaKey) && e.key === 'k') {
|
|
e.preventDefault();
|
|
document.getElementById('searchInput').focus();
|
|
}
|
|
|
|
// Escape to clear search
|
|
if (e.key === 'Escape') {
|
|
document.getElementById('searchInput').value = '';
|
|
filterContacts();
|
|
}
|
|
});
|
|
|
|
// Add search input focus ring and animations
|
|
document.getElementById('searchInput').addEventListener('focus', function() {
|
|
this.parentElement.classList.add('ring-2', 'ring-blue-500');
|
|
});
|
|
|
|
document.getElementById('searchInput').addEventListener('blur', function() {
|
|
this.parentElement.classList.remove('ring-2', 'ring-blue-500');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |