Standardize ZXDB UI; add SSR search/tables
Unify the look and feel of all /zxdb pages and minimize client pop-in. - Make all /zxdb pages full-width to match /explorer - Convert Languages, Genres, Machine Types, and Labels lists to Bootstrap tables with table-striped and table-hover inside table-responsive wrappers - Replace raw FK IDs with linked names via SSR repository joins - Add scoped search boxes on detail pages (labels, genres, languages, machine types) with SSR filtering and pagination that preserves q/tab - Keep explorer results consistent: show Machine/Language names with links, no client lookups required This improves consistency, readability, and first paint stability across the ZXDB section while keeping navigation fast and discoverable. Signed-off-by: Junie@lucy.xalior.com
This commit is contained in:
@@ -6,8 +6,14 @@ export const entries = mysqlTable("entries", {
|
||||
title: varchar("title", { length: 250 }).notNull(),
|
||||
isXrated: tinyint("is_xrated").notNull(),
|
||||
machinetypeId: tinyint("machinetype_id"),
|
||||
maxPlayers: tinyint("max_players").notNull().default(1),
|
||||
languageId: char("language_id", { length: 2 }),
|
||||
genretypeSpotId: tinyint("spot_genretype_id"),
|
||||
genretypeId: tinyint("genretype_id"),
|
||||
availabletypeId: char("availabletype_id", { length: 1 }),
|
||||
withoutLoadScreen: tinyint("without_load_screen").notNull(),
|
||||
withoutInlay: tinyint("without_inlay").notNull(),
|
||||
issueId: int("issue_id"),
|
||||
});
|
||||
|
||||
// Helper table created by ZXDB_help_search.sql
|
||||
|
||||
Reference in New Issue
Block a user