fix media initial enable to force reload window

This commit is contained in:
dswbx
2025-01-17 13:57:37 +01:00
parent c3d0f01390
commit 9422cc5bb8
2 changed files with 15 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
"type": "module", "type": "module",
"sideEffects": false, "sideEffects": false,
"bin": "./dist/cli/index.js", "bin": "./dist/cli/index.js",
"version": "0.6.0-rc.3", "version": "0.6.0-rc.5",
"description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, Remix, Astro, Cloudflare, Bun, Node, AWS Lambda & more.", "description": "Lightweight Firebase/Supabase alternative built to run anywhere — incl. Next.js, Remix, Astro, Cloudflare, Bun, Node, AWS Lambda & more.",
"homepage": "https://bknd.io", "homepage": "https://bknd.io",
"repository": { "repository": {

View File

@@ -6,7 +6,7 @@ import { Link } from "ui/components/wouter/Link";
import { useBrowserTitle } from "ui/hooks/use-browser-title"; import { useBrowserTitle } from "ui/hooks/use-browser-title";
import * as AppShell from "ui/layouts/AppShell/AppShell"; import * as AppShell from "ui/layouts/AppShell/AppShell";
import { Route, Switch } from "wouter"; import { Route, Switch } from "wouter";
import { Setting } from "./components/Setting"; import { Setting, type SettingProps } from "./components/Setting";
import { AuthSettings } from "./routes/auth.settings"; import { AuthSettings } from "./routes/auth.settings";
import { DataSettings } from "./routes/data.settings"; import { DataSettings } from "./routes/data.settings";
import { FlowsSettings } from "./routes/flows.settings"; import { FlowsSettings } from "./routes/flows.settings";
@@ -117,13 +117,24 @@ const SettingRoutesRoutes = () => {
<ServerSettings schema={schema.server} config={config.server} /> <ServerSettings schema={schema.server} config={config.server} />
<DataSettings schema={schema.data} config={config.data} /> <DataSettings schema={schema.data} config={config.data} />
<AuthSettings schema={schema.auth} config={config.auth} /> <AuthSettings schema={schema.auth} config={config.auth} />
<FallbackRoutes module="media" schema={schema} config={config} uiSchema={uiSchema.media} /> <FallbackRoutes
module="media"
schema={schema}
config={config}
uiSchema={uiSchema.media}
options={{ reloadOnSave: true }}
/>
<FlowsSettings schema={schema.flows} config={config.flows} /> <FlowsSettings schema={schema.flows} config={config.flows} />
</> </>
); );
}; };
const FallbackRoutes = ({ module, schema, config, ...settingProps }) => { const FallbackRoutes = ({
module,
schema,
config,
...settingProps
}: SettingProps<any> & { module: string }) => {
const { app } = useBknd(); const { app } = useBknd();
const basepath = app.getAdminConfig(); const basepath = app.getAdminConfig();
const prefix = `~/${basepath}/settings`.replace(/\/+/g, "/"); const prefix = `~/${basepath}/settings`.replace(/\/+/g, "/");