mirror of
https://github.com/imputnet/cobalt.git
synced 2025-01-01 12:46:07 +00:00
web/safety-warning: early returns
This commit is contained in:
parent
002e70cb89
commit
b4599e68bb
|
@ -7,105 +7,109 @@ import settings, { updateSetting } from "$lib/state/settings";
|
||||||
import { createDialog } from "$lib/dialogs";
|
import { createDialog } from "$lib/dialogs";
|
||||||
|
|
||||||
export const apiOverrideWarning = async () => {
|
export const apiOverrideWarning = async () => {
|
||||||
if (env.DEFAULT_API && !get(settings).processing.seenOverrideWarning) {
|
if (!env.DEFAULT_API || get(settings).processing.seenOverrideWarning) {
|
||||||
let _actions: {
|
return;
|
||||||
resolve: () => void;
|
|
||||||
reject: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const promise = new Promise<void>(
|
|
||||||
(resolve, reject) => (_actions = { resolve, reject })
|
|
||||||
).catch(() => {
|
|
||||||
return {}
|
|
||||||
});
|
|
||||||
|
|
||||||
createDialog({
|
|
||||||
id: "security-api-override",
|
|
||||||
type: "small",
|
|
||||||
icon: "warn-red",
|
|
||||||
title: get(t)("dialog.api.override.title"),
|
|
||||||
bodyText: get(t)("dialog.api.override.body", { value: env.DEFAULT_API }),
|
|
||||||
dismissable: false,
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: get(t)("button.cancel"),
|
|
||||||
main: false,
|
|
||||||
action: () => {
|
|
||||||
_actions.reject();
|
|
||||||
updateSetting({
|
|
||||||
processing: {
|
|
||||||
seenOverrideWarning: true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: get(t)("button.continue"),
|
|
||||||
color: "red",
|
|
||||||
main: true,
|
|
||||||
timeout: 5000,
|
|
||||||
action: () => {
|
|
||||||
_actions.resolve();
|
|
||||||
updateSetting({
|
|
||||||
processing: {
|
|
||||||
allowDefaultOverride: true,
|
|
||||||
seenOverrideWarning: true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
})
|
|
||||||
|
|
||||||
await promise;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let _actions: {
|
||||||
|
resolve: () => void;
|
||||||
|
reject: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
const promise = new Promise<void>(
|
||||||
|
(resolve, reject) => (_actions = { resolve, reject })
|
||||||
|
).catch(() => {
|
||||||
|
return {}
|
||||||
|
});
|
||||||
|
|
||||||
|
createDialog({
|
||||||
|
id: "security-api-override",
|
||||||
|
type: "small",
|
||||||
|
icon: "warn-red",
|
||||||
|
title: get(t)("dialog.api.override.title"),
|
||||||
|
bodyText: get(t)("dialog.api.override.body", { value: env.DEFAULT_API }),
|
||||||
|
dismissable: false,
|
||||||
|
buttons: [
|
||||||
|
{
|
||||||
|
text: get(t)("button.cancel"),
|
||||||
|
main: false,
|
||||||
|
action: () => {
|
||||||
|
_actions.reject();
|
||||||
|
updateSetting({
|
||||||
|
processing: {
|
||||||
|
seenOverrideWarning: true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: get(t)("button.continue"),
|
||||||
|
color: "red",
|
||||||
|
main: true,
|
||||||
|
timeout: 5000,
|
||||||
|
action: () => {
|
||||||
|
_actions.resolve();
|
||||||
|
updateSetting({
|
||||||
|
processing: {
|
||||||
|
allowDefaultOverride: true,
|
||||||
|
seenOverrideWarning: true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
await promise;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const customInstanceWarning = async () => {
|
export const customInstanceWarning = async () => {
|
||||||
if (!get(settings).processing.seenCustomWarning) {
|
if (get(settings).processing.seenCustomWarning) {
|
||||||
let _actions: {
|
return;
|
||||||
resolve: () => void;
|
|
||||||
reject: () => void;
|
|
||||||
};
|
|
||||||
|
|
||||||
const promise = new Promise<void>(
|
|
||||||
(resolve, reject) => (_actions = { resolve, reject })
|
|
||||||
).catch(() => {
|
|
||||||
return {}
|
|
||||||
});
|
|
||||||
|
|
||||||
createDialog({
|
|
||||||
id: "security-api-custom",
|
|
||||||
type: "small",
|
|
||||||
icon: "warn-red",
|
|
||||||
title: get(t)("dialog.safety.title"),
|
|
||||||
bodyText: get(t)("dialog.safety.custom_instance.body"),
|
|
||||||
leftAligned: true,
|
|
||||||
buttons: [
|
|
||||||
{
|
|
||||||
text: get(t)("button.cancel"),
|
|
||||||
main: false,
|
|
||||||
action: () => {
|
|
||||||
_actions.reject();
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: get(t)("button.continue"),
|
|
||||||
color: "red",
|
|
||||||
main: true,
|
|
||||||
timeout: 15000,
|
|
||||||
action: () => {
|
|
||||||
_actions.resolve();
|
|
||||||
updateSetting({
|
|
||||||
processing: {
|
|
||||||
seenCustomWarning: true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
})
|
|
||||||
|
|
||||||
await promise;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let _actions: {
|
||||||
|
resolve: () => void;
|
||||||
|
reject: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
const promise = new Promise<void>(
|
||||||
|
(resolve, reject) => (_actions = { resolve, reject })
|
||||||
|
).catch(() => {
|
||||||
|
return {}
|
||||||
|
});
|
||||||
|
|
||||||
|
createDialog({
|
||||||
|
id: "security-api-custom",
|
||||||
|
type: "small",
|
||||||
|
icon: "warn-red",
|
||||||
|
title: get(t)("dialog.safety.title"),
|
||||||
|
bodyText: get(t)("dialog.safety.custom_instance.body"),
|
||||||
|
leftAligned: true,
|
||||||
|
buttons: [
|
||||||
|
{
|
||||||
|
text: get(t)("button.cancel"),
|
||||||
|
main: false,
|
||||||
|
action: () => {
|
||||||
|
_actions.reject();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: get(t)("button.continue"),
|
||||||
|
color: "red",
|
||||||
|
main: true,
|
||||||
|
timeout: 15000,
|
||||||
|
action: () => {
|
||||||
|
_actions.resolve();
|
||||||
|
updateSetting({
|
||||||
|
processing: {
|
||||||
|
seenCustomWarning: true,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})
|
||||||
|
|
||||||
|
await promise;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue