2022-03-22 20:41:54 -08:00
|
|
|
import { ref, Ref, useAsync, useContext } from "@nuxtjs/composition-api";
|
|
|
|
import { useAsyncKey } from "../use-utils";
|
2022-10-22 11:51:07 -08:00
|
|
|
import { AppInfo } from "~/lib/api/types/admin";
|
2022-03-15 17:34:53 -08:00
|
|
|
|
|
|
|
export function useAppInfo(): Ref<AppInfo | null> {
|
2022-03-15 19:31:45 -08:00
|
|
|
const appInfo = ref<null | AppInfo>(null);
|
|
|
|
|
2022-04-10 14:07:35 -08:00
|
|
|
const { $axios, i18n } = useContext();
|
|
|
|
$axios.setHeader("Accept-Language", i18n.locale);
|
2022-03-22 20:41:54 -08:00
|
|
|
|
|
|
|
useAsync(async () => {
|
|
|
|
const data = await $axios.get<AppInfo>("/api/app/about");
|
|
|
|
appInfo.value = data.data;
|
|
|
|
}, useAsyncKey());
|
2022-03-15 19:31:45 -08:00
|
|
|
|
|
|
|
return appInfo;
|
2022-03-15 17:34:53 -08:00
|
|
|
}
|