feat: user-chosen browse views with grid/list toggle and profile sync
Build & Push Docker Image / build (push) Successful in 2m25s

- view modes grid | table | rows + density cozy/compact, persisted via
  localStorage and shareable ?view=?density= URL params (URL wins)
- table view: sortable columns (name, rating, reviews), new sort options
  name_asc/name_desc/recently_updated (backend enum + handler)
- live debounced search, removable filter chips, '/' focuses search
- virtualization via @tanstack/react-virtual for table and rows views
- profile sync: users.preferences jsonb + GET/PUT /api/auth/me/preferences;
  preference precedence URL > server profile > localStorage > default
- add local rollup/lightningcss/tailwindcss oxide native binaries for macos dev
This commit is contained in:
opencode
2026-08-02 09:34:53 +02:00
parent bcc74328d6
commit 78244c3197
22 changed files with 1061 additions and 73 deletions
+7 -1
View File
@@ -1,7 +1,12 @@
import { pgTable, text, serial, timestamp } from "drizzle-orm/pg-core";
import { pgTable, text, serial, timestamp, jsonb } from "drizzle-orm/pg-core";
import { createInsertSchema } from "drizzle-zod";
import { z } from "zod/v4";
export type UserPreferences = {
view?: "grid" | "table" | "rows";
density?: "cozy" | "compact";
};
export const usersTable = pgTable("users", {
id: serial("id").primaryKey(),
username: text("username").notNull().unique(),
@@ -12,6 +17,7 @@ export const usersTable = pgTable("users", {
authProvider: text("auth_provider").notNull().default("local"),
authProviderId: text("auth_provider_id"),
displayName: text("display_name"),
preferences: jsonb("preferences").$type<UserPreferences>().notNull().default({}),
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
});