adds color themeing support to the site

This commit is contained in:
2026-06-29 21:23:51 +00:00
parent bfd6c5bb9e
commit ee79662e5d
37 changed files with 1046 additions and 15 deletions
+177 -1
View File
@@ -13,6 +13,7 @@ import { Underwriter } from '../interfaces/underwriter';
import { ShowService } from '../services/show.service';
import { EventService } from '../services/event.service';
import { StationConfigService } from '../services/station-config.service';
import { ThemeService } from '../services/theme.service';
import { HistoryEntryService } from '../services/history-entry.service';
import { TeamMemberService } from '../services/team-member.service';
import { CommunityHighlightService } from '../services/community-highlight.service';
@@ -25,8 +26,37 @@ import { AdminTeamFormComponent } from './admin-team-form.component';
import { AdminCommunityFormComponent } from './admin-community-form.component';
import { AdminUnderwriterFormComponent } from './admin-underwriter-form.component';
import { AdminStatsDashboardComponent } from './admin-stats-dashboard.component';
import {
COLOR_ROLES,
HARMONY_RULE_LABELS,
detectHarmonyRule,
validatePalette,
autoFixPalette,
generateLight,
generateDark,
generateMuted,
HarmonyRule,
ColorValidation,
} from '../utils/color-harmony';
type TabKey = 'shows' | 'events' | 'station' | 'history' | 'team' | 'community' | 'underwriters' | 'stats';
type TabKey = 'shows' | 'events' | 'station' | 'theme' | 'history' | 'team' | 'community' | 'underwriters' | 'stats';
interface ThemeColorState {
color_primary: string;
color_primary_light: string;
color_primary_dark: string;
color_primary_muted: string;
color_accent: string;
color_accent_light: string;
color_accent_dark: string;
color_accent_muted: string;
color_background: string;
color_text: string;
color_success: string;
color_danger: string;
color_info: string;
[key: string]: string;
}
@Component({
selector: 'app-admin',
@@ -51,6 +81,7 @@ export class AdminComponent implements OnInit {
private showService = inject(ShowService);
private eventService = inject(EventService);
private stationConfigService = inject(StationConfigService);
private themeService = inject(ThemeService);
private historyEntryService = inject(HistoryEntryService);
private teamMemberService = inject(TeamMemberService);
private communityHighlightService = inject(CommunityHighlightService);
@@ -75,6 +106,45 @@ export class AdminComponent implements OnInit {
readonly communityHighlights$ = new BehaviorSubject<CommunityHighlight[]>([]);
readonly underwriters$ = new BehaviorSubject<Underwriter[]>([]);
// ── Theme tab state ──────────────────────────────────────────
/** Local editable color palette (copied from StationConfig on tab open). */
themeColors: ThemeColorState = {} as ThemeColorState;
/** Current harmony rule detected from the palette. */
themeHarmonyRule: HarmonyRule = 'none';
/** Validation results per color field. */
themeValidation: { [key: string]: ColorValidation } = {};
/** Whether auto-generate variants is enabled. */
themeAutoVariants = true;
/** Saving state for theme tab. */
themeSaving = false;
themeSaveSuccess = '';
themeSaveError = '';
/** Color role definitions for the template. */
readonly colorRoles = COLOR_ROLES;
/** Default palette for reset. */
readonly themeDefaults: ThemeColorState = {
color_primary: '#1a3a5c',
color_primary_light: '#2a5a8c',
color_primary_dark: '#0e2440',
color_primary_muted: '#3a6a9c',
color_accent: '#e87a2e',
color_accent_light: '#f09a4e',
color_accent_dark: '#c85a1e',
color_accent_muted: '#f0a86a',
color_background: '#faf6f0',
color_text: '#3a3632',
color_success: '#4a9e4f',
color_danger: '#c83030',
color_info: '#3a8abf',
};
showShowForm = false;
showEventForm = false;
showStationForm = false;
@@ -322,4 +392,110 @@ export class AdminComponent implements OnInit {
await firstValueFrom(this.underwriterService.deleteUnderwriter(id));
await this.reloadUnderwriters();
}
// ── Theme tab ────────────────────────────────────────────
onTabChanged(): void {
if (this.activeTab() === 'theme') {
this.loadThemeColors();
}
}
loadThemeColors(): void {
const config = this.stationConfigService.config();
this.themeColors = {
color_primary: config.color_primary || this.themeDefaults.color_primary,
color_primary_light: config.color_primary_light || this.themeDefaults.color_primary_light,
color_primary_dark: config.color_primary_dark || this.themeDefaults.color_primary_dark,
color_primary_muted: config.color_primary_muted || this.themeDefaults.color_primary_muted,
color_accent: config.color_accent || this.themeDefaults.color_accent,
color_accent_light: config.color_accent_light || this.themeDefaults.color_accent_light,
color_accent_dark: config.color_accent_dark || this.themeDefaults.color_accent_dark,
color_accent_muted: config.color_accent_muted || this.themeDefaults.color_accent_muted,
color_background: config.color_background || this.themeDefaults.color_background,
color_text: config.color_text || this.themeDefaults.color_text,
color_success: config.color_success || this.themeDefaults.color_success,
color_danger: config.color_danger || this.themeDefaults.color_danger,
color_info: config.color_info || this.themeDefaults.color_info,
};
this.themeSaveSuccess = '';
this.themeSaveError = '';
this.revalidateTheme();
}
/** Re-run harmony detection + validation on the current palette. */
revalidateTheme(): void {
const primary = this.themeColors.color_primary;
const accent = this.themeColors.color_accent;
this.themeHarmonyRule = detectHarmonyRule(primary, accent);
this.themeValidation = validatePalette(this.themeColors, this.themeHarmonyRule);
}
/** Handle color change from the picker. */
onThemeColorChange(field: string, value: string): void {
this.themeColors[field] = value;
// Auto-generate variants for primary/accent bases
if (this.themeAutoVariants) {
if (field === 'color_primary') {
this.themeColors.color_primary_light = generateLight(value);
this.themeColors.color_primary_dark = generateDark(value);
this.themeColors.color_primary_muted = generateMuted(value);
} else if (field === 'color_accent') {
this.themeColors.color_accent_light = generateLight(value);
this.themeColors.color_accent_dark = generateDark(value);
this.themeColors.color_accent_muted = generateMuted(value);
}
}
// Live-apply to DOM for instant preview
this.themeService.apply(this.themeColors as any);
this.revalidateTheme();
}
/** Auto-fix all non-harmonious colors. */
autoFixTheme(): void {
const fixed = autoFixPalette(this.themeColors, this.themeHarmonyRule);
for (const key of Object.keys(fixed) as (keyof ThemeColorState)[]) {
(this.themeColors as any)[key] = fixed[key];
}
this.themeService.apply(this.themeColors as any);
this.revalidateTheme();
}
/** Reset to default palette. */
resetTheme(): void {
for (const key of Object.keys(this.themeDefaults) as (keyof ThemeColorState)[]) {
(this.themeColors as any)[key] = this.themeDefaults[key];
}
this.themeService.apply(this.themeColors as any);
this.revalidateTheme();
}
/** Save theme colors to the database. */
async saveTheme(): Promise<void> {
this.themeSaving = true;
this.themeSaveError = '';
this.themeSaveSuccess = '';
try {
await this.stationConfigService.updateConfig(this.themeColors);
this.themeSaveSuccess = 'Theme saved successfully!';
} catch (err: any) {
this.themeSaveError = err?.error?.detail || 'Failed to save theme.';
} finally {
this.themeSaving = false;
}
}
/** Get harmony rule label for display. */
getHarmonyLabel(): string {
return HARMONY_RULE_LABELS[this.themeHarmonyRule];
}
/** Check if a color field has a harmony issue. */
hasHarmonyIssue(field: string): boolean {
const v = this.themeValidation[field];
return v ? !v.isHarmonious : false;
}
}