788e176b16
* move api clients and rename * organize recipes composables * rewrite useRecipeContext * refactor(frontend): ♻️ abstract common ingredient functionality. * feat(frontend): ✨ add scale, and back to recipe button + hide ingredients if none * update regex to mach 11. instead of just 1. * minor UX improvements Co-authored-by: Hayden K <hay-kot@pm.me>
289 lines
No EOL
8.6 KiB
Vue
289 lines
No EOL
8.6 KiB
Vue
<template>
|
|
<v-container fluid class="narrow-container">
|
|
<BasePageTitle divider>
|
|
<template #header>
|
|
<v-img max-height="200" max-width="150" :src="require('~/static/svgs/admin-site-settings.svg')"></v-img>
|
|
</template>
|
|
<template #title> {{ $t("settings.site-settings") }} </template>
|
|
</BasePageTitle>
|
|
|
|
<section>
|
|
<BaseCardSectionTitle class="pb-0" :icon="$globals.icons.cog" title="General Configuration">
|
|
</BaseCardSectionTitle>
|
|
<v-card v-for="(check, idx) in simpleChecks" :key="idx" class="mb-4">
|
|
<v-list-item>
|
|
<v-list-item-avatar>
|
|
<v-icon :color="getColor(check.status)">
|
|
{{ check.status ? $globals.icons.checkboxMarkedCircle : $globals.icons.close }}
|
|
</v-icon>
|
|
</v-list-item-avatar>
|
|
<v-list-item-content>
|
|
<v-list-item-title :class="getTextClass(check.status)"> {{ check.text }} </v-list-item-title>
|
|
<v-list-item-subtitle :class="getTextClass(check.status)">
|
|
{{ check.status ? check.successText : check.errorText }}
|
|
</v-list-item-subtitle>
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
</v-card>
|
|
</section>
|
|
<section>
|
|
<BaseCardSectionTitle class="pt-2" :icon="$globals.icons.email" title="Email Configuration">
|
|
</BaseCardSectionTitle>
|
|
<v-card>
|
|
<v-card-text>
|
|
<v-list-item>
|
|
<v-list-item-avatar>
|
|
<v-icon :color="getColor(appConfig.emailReady)">
|
|
{{ appConfig.emailReady ? $globals.icons.checkboxMarkedCircle : $globals.icons.close }}
|
|
</v-icon>
|
|
</v-list-item-avatar>
|
|
<v-list-item-content>
|
|
<v-list-item-title :class="getTextClass(appConfig.emailReady)">
|
|
Email Configuration Status
|
|
</v-list-item-title>
|
|
<v-list-item-subtitle :class="getTextClass(appConfig.emailReady)">
|
|
{{ appConfig.emailReady ? "Ready" : "Not Ready - Check Env Variables" }}
|
|
</v-list-item-subtitle>
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
<v-card-actions>
|
|
<v-text-field v-model="address" class="mr-4" :label="$t('user.email')" :rules="[validators.email]">
|
|
</v-text-field>
|
|
<BaseButton
|
|
color="info"
|
|
:disabled="!appConfig.emailReady || !validEmail"
|
|
:loading="loading"
|
|
@click="testEmail"
|
|
>
|
|
<template #icon> {{ $globals.icons.email }} </template>
|
|
{{ $t("general.test") }}
|
|
</BaseButton>
|
|
</v-card-actions>
|
|
</v-card-text>
|
|
<template v-if="tested">
|
|
<v-divider class="my-x"></v-divider>
|
|
<v-card-text>
|
|
Email Test Result: {{ success ? "Succeeded" : "Failed" }}
|
|
<div>Errors: {{ error }}</div>
|
|
</v-card-text>
|
|
</template>
|
|
</v-card>
|
|
</section>
|
|
<section class="mt-4">
|
|
<BaseCardSectionTitle class="pb-0" :icon="$globals.icons.cog" title="General About"> </BaseCardSectionTitle>
|
|
<v-card class="mb-4">
|
|
<v-list-item v-for="property in appInfo" :key="property.name">
|
|
<v-list-item-icon>
|
|
<v-icon> {{ property.icon || $globals.icons.user }} </v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-content>
|
|
<v-list-item-title>
|
|
<div>{{ property.name }}</div>
|
|
</v-list-item-title>
|
|
<v-list-item-subtitle class="text-end">
|
|
{{ property.value }}
|
|
</v-list-item-subtitle>
|
|
</v-list-item-content>
|
|
</v-list-item>
|
|
</v-card>
|
|
</section>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import {
|
|
computed,
|
|
onMounted,
|
|
reactive,
|
|
toRefs,
|
|
ref,
|
|
defineComponent,
|
|
useAsync,
|
|
useContext,
|
|
} from "@nuxtjs/composition-api";
|
|
import { CheckAppConfig } from "~/api/admin/admin-about";
|
|
import { useAdminApi, useUserApi } from "~/composables/api";
|
|
import { validators } from "~/composables/use-validators";
|
|
import { useAsyncKey } from "~/composables/use-utils";
|
|
|
|
interface SimpleCheck {
|
|
status: boolean;
|
|
text: string;
|
|
successText: string;
|
|
errorText: string;
|
|
}
|
|
|
|
export default defineComponent({
|
|
layout: "admin",
|
|
setup() {
|
|
const state = reactive({
|
|
loading: false,
|
|
address: "",
|
|
success: false,
|
|
error: "",
|
|
tested: false,
|
|
});
|
|
|
|
const appConfig = ref<CheckAppConfig>({
|
|
emailReady: false,
|
|
baseUrlSet: false,
|
|
isSiteSecure: false,
|
|
});
|
|
|
|
const api = useUserApi();
|
|
|
|
const adminApi = useAdminApi();
|
|
onMounted(async () => {
|
|
const { data } = await adminApi.about.checkApp();
|
|
|
|
if (data) {
|
|
appConfig.value = data;
|
|
}
|
|
|
|
appConfig.value.isSiteSecure = isLocalhostorHttps();
|
|
});
|
|
|
|
function isLocalhostorHttps() {
|
|
return window.location.hostname === "localhost" || window.location.protocol === "https:";
|
|
}
|
|
|
|
const simpleChecks = computed<SimpleCheck[]>(() => {
|
|
return [
|
|
{
|
|
status: appConfig.value.baseUrlSet,
|
|
text: "Server Side Base URL",
|
|
errorText: "Error - `BASE_URL` still default on API Server",
|
|
successText: "Server Side URL does not match the default",
|
|
},
|
|
{
|
|
status: appConfig.value.isSiteSecure,
|
|
text: "Secure Site",
|
|
errorText: "Error - Serve via localhost or secure with https.",
|
|
successText: "Site is accessed by localhost or https",
|
|
},
|
|
];
|
|
});
|
|
|
|
async function testEmail() {
|
|
state.loading = true;
|
|
state.tested = false;
|
|
const { data } = await api.email.test({ email: state.address });
|
|
|
|
if (data) {
|
|
if (data.success) {
|
|
state.success = true;
|
|
} else {
|
|
state.error = data.error;
|
|
state.success = false;
|
|
}
|
|
}
|
|
state.loading = false;
|
|
state.tested = true;
|
|
}
|
|
|
|
const validEmail = computed(() => {
|
|
if (state.address === "") {
|
|
return false;
|
|
}
|
|
const valid = validators.email(state.address);
|
|
|
|
// Explicit bool check because validators.email sometimes returns a string
|
|
if (valid === true) {
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
|
|
function getTextClass(booly: boolean | any) {
|
|
return booly ? "success--text" : "error--text";
|
|
}
|
|
function getColor(booly: boolean | any) {
|
|
return booly ? "success" : "error";
|
|
}
|
|
|
|
// ============================================================
|
|
// General About Info
|
|
// @ts-ignore
|
|
const { $globals, i18n } = useContext();
|
|
|
|
function getAppInfo() {
|
|
const statistics = useAsync(async () => {
|
|
const { data } = await adminApi.about.about();
|
|
|
|
if (data) {
|
|
const prettyInfo = [
|
|
{
|
|
name: i18n.t("about.version"),
|
|
icon: $globals.icons.information,
|
|
value: data.version,
|
|
},
|
|
{
|
|
name: i18n.t("about.application-mode"),
|
|
icon: $globals.icons.devTo,
|
|
value: data.production ? i18n.t("about.production") : i18n.t("about.development"),
|
|
},
|
|
{
|
|
name: i18n.t("about.demo-status"),
|
|
icon: $globals.icons.testTube,
|
|
value: data.demoStatus ? i18n.t("about.demo") : i18n.t("about.not-demo"),
|
|
},
|
|
{
|
|
name: i18n.t("about.api-port"),
|
|
icon: $globals.icons.api,
|
|
value: data.apiPort,
|
|
},
|
|
{
|
|
name: i18n.t("about.api-docs"),
|
|
icon: $globals.icons.file,
|
|
value: data.apiDocs ? i18n.t("general.enabled") : i18n.t("general.disabled"),
|
|
},
|
|
{
|
|
name: i18n.t("about.database-type"),
|
|
icon: $globals.icons.database,
|
|
value: data.dbType,
|
|
},
|
|
{
|
|
name: i18n.t("about.database-url"),
|
|
icon: $globals.icons.database,
|
|
value: data.dbUrl,
|
|
},
|
|
{
|
|
name: i18n.t("about.default-group"),
|
|
icon: $globals.icons.group,
|
|
value: data.defaultGroup,
|
|
},
|
|
];
|
|
|
|
return prettyInfo;
|
|
}
|
|
|
|
return data;
|
|
}, useAsyncKey());
|
|
|
|
return statistics;
|
|
}
|
|
|
|
const appInfo = getAppInfo();
|
|
|
|
return {
|
|
simpleChecks,
|
|
getColor,
|
|
getTextClass,
|
|
appConfig,
|
|
validEmail,
|
|
validators,
|
|
...toRefs(state),
|
|
testEmail,
|
|
appInfo,
|
|
};
|
|
},
|
|
head() {
|
|
return {
|
|
title: this.$t("settings.site-settings") as string,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style> |