Initial kitchen scaffold — Phase 1 kitchen port (build-verified 2026-07-11)
FastAPI backend (Python 3.11, MSSQL ODBC for SambaPOS, Azure DI OCR),
kitchen_db on central PG. React/TS/Vite frontend with navy sidebar layout.
Backend: auth.py (APP_SLUG=kitchen, SimpleNamespace — archive routes use
.kitchen_id/.is_admin without modification), main.py (51 migrations, scheduler,
internal router for KDS bookings feed), api/internal.py, full archive API
(31 routers: invoices, recipes, menus, sambapos, resos, newbook, disputes,
purchase_orders, etc.), models, migrations, OCR pipeline.
kitchen_id pinned to 1 (B1 — single hotel).
Frontend: AuthGate (app=kitchen, token shim for archive compat — B5b pending),
Layout (navy sidebar, 6 sections, Lucide icons, teal --app-primary),
App.tsx (Outlet pattern, UploadApp outside Layout), index.css (full :root block).
strict: false — archive components have type issues; build clean.
Note: 45 archive components call fetch('/api/...') without /kitchen/ prefix
(B5b). Runtime 404s; deferred until after initial testing.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
8d688b459d
10003 changed files with 1928395 additions and 0 deletions
106
frontend/node_modules/@tanstack/react-query/build/modern/useBaseQuery.js
generated
vendored
Normal file
106
frontend/node_modules/@tanstack/react-query/build/modern/useBaseQuery.js
generated
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
"use client";
|
||||
|
||||
// src/useBaseQuery.ts
|
||||
import * as React from "react";
|
||||
import { environmentManager, noop, notifyManager } from "@tanstack/query-core";
|
||||
import { useQueryClient } from "./QueryClientProvider.js";
|
||||
import { useQueryErrorResetBoundary } from "./QueryErrorResetBoundary.js";
|
||||
import {
|
||||
ensurePreventErrorBoundaryRetry,
|
||||
getHasError,
|
||||
useClearResetErrorBoundary
|
||||
} from "./errorBoundaryUtils.js";
|
||||
import { useIsRestoring } from "./IsRestoringProvider.js";
|
||||
import {
|
||||
ensureSuspenseTimers,
|
||||
fetchOptimistic,
|
||||
shouldSuspend,
|
||||
willFetch
|
||||
} from "./suspense.js";
|
||||
function useBaseQuery(options, Observer, queryClient) {
|
||||
if (process.env.NODE_ENV !== "production") {
|
||||
if (typeof options !== "object" || Array.isArray(options)) {
|
||||
throw new Error(
|
||||
'Bad argument type. Starting with v5, only the "Object" form is allowed when calling query related functions. Please use the error stack to find the culprit call. More info here: https://tanstack.com/query/latest/docs/react/guides/migrating-to-v5#supports-a-single-signature-one-object'
|
||||
);
|
||||
}
|
||||
}
|
||||
const isRestoring = useIsRestoring();
|
||||
const errorResetBoundary = useQueryErrorResetBoundary();
|
||||
const client = useQueryClient(queryClient);
|
||||
const defaultedOptions = client.defaultQueryOptions(options);
|
||||
client.getDefaultOptions().queries?._experimental_beforeQuery?.(
|
||||
defaultedOptions
|
||||
);
|
||||
const query = client.getQueryCache().get(defaultedOptions.queryHash);
|
||||
if (process.env.NODE_ENV !== "production") {
|
||||
if (!defaultedOptions.queryFn) {
|
||||
console.error(
|
||||
`[${defaultedOptions.queryHash}]: No queryFn was passed as an option, and no default queryFn was found. The queryFn parameter is only optional when using a default queryFn. More info here: https://tanstack.com/query/latest/docs/framework/react/guides/default-query-function`
|
||||
);
|
||||
}
|
||||
}
|
||||
const subscribed = options.subscribed !== false;
|
||||
defaultedOptions._optimisticResults = isRestoring ? "isRestoring" : subscribed ? "optimistic" : void 0;
|
||||
ensureSuspenseTimers(defaultedOptions);
|
||||
ensurePreventErrorBoundaryRetry(defaultedOptions, errorResetBoundary, query);
|
||||
useClearResetErrorBoundary(errorResetBoundary);
|
||||
const isNewCacheEntry = !client.getQueryCache().get(defaultedOptions.queryHash);
|
||||
const [observer] = React.useState(
|
||||
() => new Observer(
|
||||
client,
|
||||
defaultedOptions
|
||||
)
|
||||
);
|
||||
const result = observer.getOptimisticResult(defaultedOptions);
|
||||
const shouldSubscribe = !isRestoring && subscribed;
|
||||
React.useSyncExternalStore(
|
||||
React.useCallback(
|
||||
(onStoreChange) => {
|
||||
const unsubscribe = shouldSubscribe ? observer.subscribe(notifyManager.batchCalls(onStoreChange)) : noop;
|
||||
observer.updateResult();
|
||||
return unsubscribe;
|
||||
},
|
||||
[observer, shouldSubscribe]
|
||||
),
|
||||
() => observer.getCurrentResult(),
|
||||
() => observer.getCurrentResult()
|
||||
);
|
||||
React.useEffect(() => {
|
||||
observer.setOptions(defaultedOptions);
|
||||
}, [defaultedOptions, observer]);
|
||||
if (shouldSuspend(defaultedOptions, result)) {
|
||||
throw fetchOptimistic(defaultedOptions, observer, errorResetBoundary);
|
||||
}
|
||||
if (getHasError({
|
||||
result,
|
||||
errorResetBoundary,
|
||||
throwOnError: defaultedOptions.throwOnError,
|
||||
query,
|
||||
suspense: defaultedOptions.suspense
|
||||
})) {
|
||||
throw result.error;
|
||||
}
|
||||
;
|
||||
client.getDefaultOptions().queries?._experimental_afterQuery?.(
|
||||
defaultedOptions,
|
||||
result
|
||||
);
|
||||
if (defaultedOptions.experimental_prefetchInRender && !environmentManager.isServer() && willFetch(result, isRestoring)) {
|
||||
const promise = isNewCacheEntry ? (
|
||||
// Fetch immediately on render in order to ensure `.promise` is resolved even if the component is unmounted
|
||||
fetchOptimistic(defaultedOptions, observer, errorResetBoundary)
|
||||
) : (
|
||||
// subscribe to the "cache promise" so that we can finalize the currentThenable once data comes in
|
||||
query?.promise
|
||||
);
|
||||
promise?.catch(noop).finally(() => {
|
||||
observer.updateResult();
|
||||
});
|
||||
}
|
||||
return !defaultedOptions.notifyOnChangeProps ? observer.trackResult(result) : result;
|
||||
}
|
||||
export {
|
||||
useBaseQuery
|
||||
};
|
||||
//# sourceMappingURL=useBaseQuery.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue