Add Slides builder, data source selector, fix cross-year labels

Features:
- Slides page: build presentations with configurable charts per slide
- Export slides as HTML zip
- Data source dropdown (Museums active, Coffees/eCommerce placeholders)
- Renamed app to 'HiHala Data' with 'Museums' as subtitle

Fixes:
- Cross-year period labels now show 'Nov 25–Jan 26' instead of misleading year
- Period display boxes updated to use smart labels

UI:
- New nav link for Slides
- Mobile nav updated
- Data source select styled to match brand
This commit is contained in:
fahed
2026-02-02 17:36:15 +03:00
parent 75a11170f6
commit a2e7aa16cd
10 changed files with 1358 additions and 81 deletions

View File

@@ -152,29 +152,74 @@ body {
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
justify-content: center;
position: sticky;
top: 0;
z-index: 100;
}
.nav-content {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
max-width: 1400px;
}
.nav-brand {
display: flex;
align-items: center;
gap: 8px;
font-size: 1rem;
gap: 10px;
}
.nav-brand-icon {
color: #3b82f6;
}
.nav-brand-text {
font-family: 'DM Sans', 'Inter', -apple-system, sans-serif;
font-size: 1.125rem;
font-weight: 600;
color: var(--text-secondary);
color: #1e3a5f;
letter-spacing: -0.02em;
}
.nav-logo {
height: 24px;
width: auto;
.data-source-select {
appearance: none;
-webkit-appearance: none;
background: transparent;
border: none;
color: #3b82f6;
font-family: inherit;
font-size: inherit;
font-weight: 500;
cursor: pointer;
padding: 2px 20px 2px 6px;
margin-left: 4px;
border-radius: 6px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 4px center;
transition: background-color 0.15s ease;
}
.nav-brand span {
color: var(--text-secondary);
.data-source-select:hover {
background-color: rgba(59, 130, 246, 0.08);
}
.data-source-select:focus {
outline: none;
background-color: rgba(59, 130, 246, 0.12);
}
.data-source-select option {
color: #1e3a5f;
background: white;
font-weight: 500;
}
.data-source-select option:disabled {
color: #94a3b8;
}
.nav-links {
@@ -1015,15 +1060,25 @@ table tbody tr:hover {
.nav-bar {
padding: 12px 16px;
height: auto;
}
.nav-content {
justify-content: center;
}
.nav-brand {
font-size: 0.9rem;
.nav-brand-text {
font-size: 1rem;
}
.nav-logo {
height: 20px;
.nav-brand-icon {
width: 18px;
height: 18px;
}
.data-source-select {
font-size: 0.9rem;
padding: 2px 18px 2px 4px;
}
/* Mobile Bottom Navigation */
@@ -1310,3 +1365,412 @@ table tbody tr:hover {
gap: 4px;
}
}
/* ========== Slides Builder ========== */
.slides-builder {
padding: 24px;
max-width: 1400px;
margin: 0 auto;
}
.slides-toolbar {
display: flex;
gap: 12px;
margin-bottom: 24px;
flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.15s ease;
border: none;
}
.btn-primary {
background: var(--accent);
color: white;
}
.btn-primary:hover {
background: #2563eb;
}
.btn-secondary {
background: var(--bg-secondary);
color: var(--text-primary);
border: 1px solid var(--border);
}
.btn-secondary:hover {
background: var(--bg-tertiary);
}
.slides-workspace {
display: grid;
grid-template-columns: 280px 1fr;
gap: 24px;
min-height: 600px;
}
.slides-list {
background: var(--bg-secondary);
border-radius: 12px;
padding: 16px;
border: 1px solid var(--border);
}
.slides-list h3 {
font-size: 14px;
color: var(--text-secondary);
margin-bottom: 16px;
font-weight: 500;
}
.empty-slides {
text-align: center;
padding: 40px 20px;
color: var(--text-secondary);
}
.empty-slides button {
margin-top: 16px;
padding: 8px 16px;
background: var(--accent);
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
}
.slides-thumbnails {
display: flex;
flex-direction: column;
gap: 8px;
}
.slide-thumbnail {
display: grid;
grid-template-columns: 32px 32px 1fr auto;
align-items: center;
gap: 8px;
padding: 12px;
background: var(--bg-primary);
border-radius: 8px;
cursor: pointer;
transition: all 0.15s ease;
border: 2px solid transparent;
}
.slide-thumbnail:hover {
border-color: var(--border);
}
.slide-thumbnail.active {
border-color: var(--accent);
background: rgba(59, 130, 246, 0.05);
}
.slide-thumbnail .slide-number {
width: 24px;
height: 24px;
background: var(--bg-tertiary);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
}
.slide-thumbnail .slide-icon {
font-size: 18px;
}
.slide-thumbnail .slide-title-preview {
font-size: 13px;
font-weight: 500;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.slide-thumbnail .slide-actions {
display: flex;
gap: 4px;
opacity: 0;
transition: opacity 0.15s ease;
}
.slide-thumbnail:hover .slide-actions {
opacity: 1;
}
.slide-actions button {
width: 24px;
height: 24px;
border: none;
background: var(--bg-tertiary);
border-radius: 4px;
cursor: pointer;
font-size: 12px;
color: var(--text-secondary);
}
.slide-actions button:hover {
background: var(--border);
}
.slide-actions button.delete:hover {
background: #fee2e2;
color: #dc2626;
}
/* Slide Editor */
.slide-editor {
background: var(--bg-secondary);
border-radius: 12px;
padding: 24px;
border: 1px solid var(--border);
}
.editor-section {
margin-bottom: 20px;
}
.editor-section label {
display: block;
font-size: 13px;
font-weight: 500;
color: var(--text-secondary);
margin-bottom: 8px;
}
.editor-section input[type="text"],
.editor-section input[type="date"],
.editor-section select {
width: 100%;
padding: 10px 12px;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 14px;
background: var(--bg-primary);
color: var(--text-primary);
}
.editor-section input:focus,
.editor-section select:focus {
outline: none;
border-color: var(--accent);
}
.editor-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.chart-type-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
.chart-type-btn {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
padding: 16px 12px;
border: 2px solid var(--border);
border-radius: 10px;
background: var(--bg-primary);
cursor: pointer;
transition: all 0.15s ease;
}
.chart-type-btn:hover {
border-color: var(--accent);
}
.chart-type-btn.active {
border-color: var(--accent);
background: rgba(59, 130, 246, 0.05);
}
.chart-type-btn .chart-icon {
font-size: 24px;
}
.chart-type-btn span:last-child {
font-size: 12px;
font-weight: 500;
color: var(--text-secondary);
}
.slide-preview-box {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid var(--border);
}
.slide-preview-box h4 {
font-size: 13px;
font-weight: 500;
color: var(--text-secondary);
margin-bottom: 16px;
}
.preview-chart {
background: var(--bg-primary);
border-radius: 8px;
padding: 16px;
height: 200px;
}
.preview-kpis {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
}
.preview-kpi {
background: var(--bg-primary);
border-radius: 8px;
padding: 16px;
text-align: center;
}
.preview-kpi .kpi-value {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent);
}
.preview-kpi .kpi-label {
font-size: 12px;
color: var(--text-secondary);
margin-top: 4px;
}
/* Preview Fullscreen */
.preview-fullscreen {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
z-index: 1000;
display: flex;
flex-direction: column;
}
.preview-slide {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px;
}
.preview-title {
color: #f8fafc;
font-size: 2.5rem;
font-weight: 600;
margin-bottom: 40px;
text-align: center;
}
.preview-content {
width: 100%;
max-width: 900px;
}
.preview-content .preview-chart {
height: 350px;
background: rgba(255, 255, 255, 0.03);
border-radius: 16px;
padding: 30px;
}
.preview-content .preview-kpis .preview-kpi {
background: rgba(255, 255, 255, 0.05);
padding: 30px;
}
.preview-content .preview-kpis .kpi-value {
font-size: 2.5rem;
}
.preview-content .preview-kpis .kpi-label {
color: #94a3b8;
}
.preview-footer {
color: #64748b;
font-size: 14px;
margin-top: 40px;
}
.preview-controls {
display: flex;
justify-content: center;
gap: 12px;
padding: 20px;
background: rgba(0, 0, 0, 0.3);
}
.preview-controls button {
padding: 10px 24px;
background: rgba(255, 255, 255, 0.1);
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
}
.preview-controls button:hover:not(:disabled) {
background: rgba(255, 255, 255, 0.2);
}
.preview-controls button:disabled {
opacity: 0.3;
cursor: not-allowed;
}
@media (max-width: 768px) {
.slides-workspace {
grid-template-columns: 1fr;
}
.slides-list {
max-height: 200px;
overflow-y: auto;
}
.editor-row {
grid-template-columns: 1fr;
}
.chart-type-grid {
grid-template-columns: repeat(4, 1fr);
}
.preview-slide {
padding: 30px;
}
.preview-title {
font-size: 1.5rem;
}
}