구독 관리
-
구독을 일시정지하거나 취소할 수 있습니다
+
+ 구독을 일시정지하거나 취소할 수 있습니다
+
);
-}
\ No newline at end of file
+}
diff --git a/src/query/keys.ts b/src/query/keys.ts
new file mode 100644
index 0000000..61a74f8
--- /dev/null
+++ b/src/query/keys.ts
@@ -0,0 +1,68 @@
+// api 연동 시작할때 queryKey 규칙을 통일하기 위한 파일
+
+type QueryParamsValue = string | number | boolean | null;
+type Params = Readonly>;
+
+export const queryKeys = {
+ auth: {
+ all: ["auth"] as const,
+ me: () => ["auth", "me"] as const,
+ },
+
+ user: {
+ all: ["user"] as const,
+ me: () => ["user", "me"] as const,
+ detail: (userId: string | number) => ["user", "detail", userId] as const,
+ },
+
+ restaurant: {
+ all: ["restaurant"] as const,
+
+ lists: () => ["restaurant", "list"] as const,
+ list: (params?: Params) => ["restaurant", "list", params ?? {}] as const,
+
+ details: () => ["restaurant", "detail"] as const,
+ detail: (restaurantId: string | number) =>
+ ["restaurant", "detail", restaurantId] as const,
+
+ menus: (restaurantId: string | number) =>
+ ["restaurant", restaurantId, "menus"] as const,
+ seats: (restaurantId: string | number) =>
+ ["restaurant", restaurantId, "seats"] as const,
+ },
+ reservation: {
+ all: ["reservation"] as const,
+
+ lists: () => ["reservation", "list"] as const,
+ list: (params?: Params) => ["reservation", "list", params ?? {}] as const,
+
+ details: () => ["reservation", "detail"] as const,
+ detail: (reservationId: string | number) =>
+ ["reservation", "detail", reservationId] as const,
+
+ availability: (restaurantId: string | number, params?: Params) =>
+ ["reservation", "availability", restaurantId, params ?? {}] as const,
+ },
+ payment: {
+ all: ["payment"] as const,
+ detail: (paymentId: string | number) =>
+ ["payment", "detail", paymentId] as const,
+ },
+ owner: {
+ all: ["owner"] as const,
+ restaurants: () => ["owner", "restaurants"] as const,
+ restaurant: (restaurantId: string | number) =>
+ ["owner", "restaurant", restaurantId] as const,
+
+ menus: () => ["owner", "menus"] as const,
+ menuList: (restaurantId: string | number) =>
+ ["owner", "menus", restaurantId] as const,
+
+ reservations: () => ["owner", "reservations"] as const,
+ reservationList: (restaurantId: string | number, params?: Params) =>
+ ["owner", "reservations", restaurantId, params ?? {}] as const,
+
+ seats: (restaurantId: string | number) =>
+ ["owner", "seats", restaurantId] as const,
+ },
+} as const;
diff --git a/src/query/queryClient.ts b/src/query/queryClient.ts
new file mode 100644
index 0000000..8d516b5
--- /dev/null
+++ b/src/query/queryClient.ts
@@ -0,0 +1,21 @@
+import { QueryClient } from "@tanstack/react-query";
+
+export const queryClient = new QueryClient({
+ defaultOptions: {
+ queries: {
+ refetchOnWindowFocus: false,
+ refetchOnReconnect: true,
+
+ staleTime: 30000,
+ gcTime: 5 * 60000,
+
+ retry: (failureCount, error) => {
+ if (failureCount >= 2) return false;
+ return true;
+ },
+ },
+ mutations: {
+ retry: false,
+ },
+ },
+});
diff --git a/src/styles/globals.css b/src/styles/globals.css
new file mode 100644
index 0000000..acbde7f
--- /dev/null
+++ b/src/styles/globals.css
@@ -0,0 +1,156 @@
+@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap");
+@import "tailwindcss";
+@import "tw-animate-css";
+
+@custom-variant dark (&:is(.dark *));
+
+@theme inline {
+ --radius-sm: calc(var(--radius) - 4px);
+ --radius-md: calc(var(--radius) - 2px);
+ --radius-lg: var(--radius);
+ --radius-xl: calc(var(--radius) + 4px);
+ --radius-2xl: calc(var(--radius) + 8px);
+ --radius-3xl: calc(var(--radius) + 12px);
+ --radius-4xl: calc(var(--radius) + 16px);
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --color-card: var(--card);
+ --color-card-foreground: var(--card-foreground);
+ --color-popover: var(--popover);
+ --color-popover-foreground: var(--popover-foreground);
+ --color-primary: var(--primary);
+ --color-primary-foreground: var(--primary-foreground);
+ --color-secondary: var(--secondary);
+ --color-secondary-foreground: var(--secondary-foreground);
+ --color-muted: var(--muted);
+ --color-muted-foreground: var(--muted-foreground);
+ --color-accent: var(--accent);
+ --color-accent-foreground: var(--accent-foreground);
+ --color-destructive: var(--destructive);
+ --color-border: var(--border);
+ --color-input: var(--input);
+ --color-ring: var(--ring);
+ --color-chart-1: var(--chart-1);
+ --color-chart-2: var(--chart-2);
+ --color-chart-3: var(--chart-3);
+ --color-chart-4: var(--chart-4);
+ --color-chart-5: var(--chart-5);
+ --color-sidebar: var(--sidebar);
+ --color-sidebar-foreground: var(--sidebar-foreground);
+ --color-sidebar-primary: var(--sidebar-primary);
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
+ --color-sidebar-accent: var(--sidebar-accent);
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
+ --color-sidebar-border: var(--sidebar-border);
+ --color-sidebar-ring: var(--sidebar-ring);
+}
+
+:root {
+ --radius: 0.625rem;
+ --background: oklch(1 0 0);
+ --foreground: oklch(0.13 0.028 261.692);
+ --card: oklch(1 0 0);
+ --card-foreground: oklch(0.13 0.028 261.692);
+ --popover: oklch(1 0 0);
+ --popover-foreground: oklch(0.13 0.028 261.692);
+ --primary: oklch(0.21 0.034 264.665);
+ --primary-foreground: oklch(0.985 0.002 247.839);
+ --secondary: oklch(0.967 0.003 264.542);
+ --secondary-foreground: oklch(0.21 0.034 264.665);
+ --muted: oklch(0.967 0.003 264.542);
+ --muted-foreground: oklch(0.551 0.027 264.364);
+ --accent: oklch(0.967 0.003 264.542);
+ --accent-foreground: oklch(0.21 0.034 264.665);
+ --destructive: oklch(0.577 0.245 27.325);
+ --border: oklch(0.928 0.006 264.531);
+ --input: oklch(0.928 0.006 264.531);
+ --ring: oklch(0.707 0.022 261.325);
+ --chart-1: oklch(0.646 0.222 41.116);
+ --chart-2: oklch(0.6 0.118 184.704);
+ --chart-3: oklch(0.398 0.07 227.392);
+ --chart-4: oklch(0.828 0.189 84.429);
+ --chart-5: oklch(0.769 0.188 70.08);
+ --sidebar: oklch(0.985 0.002 247.839);
+ --sidebar-foreground: oklch(0.13 0.028 261.692);
+ --sidebar-primary: oklch(0.21 0.034 264.665);
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
+ --sidebar-accent: oklch(0.967 0.003 264.542);
+ --sidebar-accent-foreground: oklch(0.21 0.034 264.665);
+ --sidebar-border: oklch(0.928 0.006 264.531);
+ --sidebar-ring: oklch(0.707 0.022 261.325);
+}
+
+.dark {
+ --background: oklch(0.13 0.028 261.692);
+ --foreground: oklch(0.985 0.002 247.839);
+ --card: oklch(0.21 0.034 264.665);
+ --card-foreground: oklch(0.985 0.002 247.839);
+ --popover: oklch(0.21 0.034 264.665);
+ --popover-foreground: oklch(0.985 0.002 247.839);
+ --primary: oklch(0.928 0.006 264.531);
+ --primary-foreground: oklch(0.21 0.034 264.665);
+ --secondary: oklch(0.278 0.033 256.848);
+ --secondary-foreground: oklch(0.985 0.002 247.839);
+ --muted: oklch(0.278 0.033 256.848);
+ --muted-foreground: oklch(0.707 0.022 261.325);
+ --accent: oklch(0.278 0.033 256.848);
+ --accent-foreground: oklch(0.985 0.002 247.839);
+ --destructive: oklch(0.704 0.191 22.216);
+ --border: oklch(1 0 0 / 10%);
+ --input: oklch(1 0 0 / 15%);
+ --ring: oklch(0.551 0.027 264.364);
+ --chart-1: oklch(0.488 0.243 264.376);
+ --chart-2: oklch(0.696 0.17 162.48);
+ --chart-3: oklch(0.769 0.188 70.08);
+ --chart-4: oklch(0.627 0.265 303.9);
+ --chart-5: oklch(0.645 0.246 16.439);
+ --sidebar: oklch(0.21 0.034 264.665);
+ --sidebar-foreground: oklch(0.985 0.002 247.839);
+ --sidebar-primary: oklch(0.488 0.243 264.376);
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
+ --sidebar-accent: oklch(0.278 0.033 256.848);
+ --sidebar-accent-foreground: oklch(0.985 0.002 247.839);
+ --sidebar-border: oklch(1 0 0 / 10%);
+ --sidebar-ring: oklch(0.551 0.027 264.364);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ :where(:not(:has([class*=" text-"]), :has([class^="text-"]))) {
+ h1 {
+ font-size: 1.5rem;
+ font-weight: 700;
+ line-height: 1.5;
+ } /* text-2xl */
+ h2 {
+ font-size: 1.25rem;
+ font-weight: 600;
+ line-height: 1.5;
+ } /* text-xl */
+ h3 {
+ font-size: 1.125rem;
+ font-weight: 600;
+ line-height: 1.5;
+ } /* text-lg */
+ p {
+ font-size: 1rem;
+ font-weight: 400;
+ line-height: 1.5;
+ } /* text-base */
+ }
+
+ body {
+ @apply bg-background text-foreground;
+ font-family:
+ "Noto Sans KR",
+ -apple-system,
+ BlinkMacSystemFont,
+ system-ui,
+ Roboto,
+ sans-serif;
+ word-break: keep-all;
+ overflow-wrap: break-word;
+ }
+}