hippofish/packages/client/src/pages/admin/object-storage.vue
Kainoa Kanter 78d8767124 feat: allow users to choose icon set
Co-authored-by: naskya <m@naskya.net>
2023-10-17 01:57:20 +00:00

230 lines
6.5 KiB
Vue

<template>
<MkStickyContainer>
<template #header
><MkPageHeader
:actions="headerActions"
:tabs="headerTabs"
:display-back-button="true"
/></template>
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
<FormSuspense :p="init">
<div class="_formRoot">
<FormSwitch v-model="useObjectStorage" class="_formBlock">{{
i18n.ts.useObjectStorage
}}</FormSwitch>
<template v-if="useObjectStorage">
<FormInput
v-model="objectStorageBaseUrl"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageBaseUrl
}}</template>
<template #caption>{{
i18n.ts.objectStorageBaseUrlDesc
}}</template>
</FormInput>
<FormInput
v-model="objectStorageBucket"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageBucket
}}</template>
<template #caption>{{
i18n.ts.objectStorageBucketDesc
}}</template>
</FormInput>
<FormInput
v-model="objectStoragePrefix"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStoragePrefix
}}</template>
<template #caption>{{
i18n.ts.objectStoragePrefixDesc
}}</template>
</FormInput>
<FormInput
v-model="objectStorageEndpoint"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageEndpoint
}}</template>
<template #caption>{{
i18n.ts.objectStorageEndpointDesc
}}</template>
</FormInput>
<FormInput
v-model="objectStorageRegion"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageRegion
}}</template>
<template #caption>{{
i18n.ts.objectStorageRegionDesc
}}</template>
</FormInput>
<FormSplit :min-width="280">
<FormInput
v-model="objectStorageAccessKey"
class="_formBlock"
>
<template #prefix
><i :class="icon('ph-key')"></i
></template>
<template #label>Access key</template>
</FormInput>
<FormInput
v-model="objectStorageSecretKey"
type="password"
class="_formBlock"
>
<template #prefix
><i :class="icon('ph-key')"></i
></template>
<template #label>Secret key</template>
</FormInput>
</FormSplit>
<FormSwitch
v-model="objectStorageUseSSL"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageUseSSL
}}</template>
<template #caption>{{
i18n.ts.objectStorageUseSSLDesc
}}</template>
</FormSwitch>
<FormSwitch
v-model="objectStorageUseProxy"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageUseProxy
}}</template>
<template #caption>{{
i18n.ts.objectStorageUseProxyDesc
}}</template>
</FormSwitch>
<FormSwitch
v-model="objectStorageSetPublicRead"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageSetPublicRead
}}</template>
</FormSwitch>
<FormSwitch
v-model="objectStorageS3ForcePathStyle"
class="_formBlock"
>
<template #label>{{
i18n.ts.objectStorageS3ForcePathStyle
}}</template>
<template #caption>{{
i18n.ts.objectStorageS3ForcePathStyleDesc
}}</template>
</FormSwitch>
</template>
</div>
</FormSuspense>
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
import { computed, ref } from "vue";
import FormSwitch from "@/components/form/switch.vue";
import FormInput from "@/components/form/input.vue";
import FormSuspense from "@/components/form/suspense.vue";
import FormSplit from "@/components/form/split.vue";
import * as os from "@/os";
import { fetchInstance } from "@/instance";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import icon from "@/scripts/icon";
const useObjectStorage = ref(false);
const objectStorageBaseUrl = ref<string | null>(null);
const objectStorageBucket = ref<string | null>(null);
const objectStoragePrefix = ref<string | null>(null);
const objectStorageEndpoint = ref<string | null>(null);
const objectStorageRegion = ref<string | null>(null);
const objectStoragePort = ref<string | null>(null);
const objectStorageAccessKey = ref<string | null>(null);
const objectStorageSecretKey = ref<string | null>(null);
const objectStorageUseSSL = ref(false);
const objectStorageUseProxy = ref(false);
const objectStorageSetPublicRead = ref(false);
const objectStorageS3ForcePathStyle = ref(true);
async function init() {
const meta = await os.api("admin/meta");
useObjectStorage.value = meta.useObjectStorage;
objectStorageBaseUrl.value = meta.objectStorageBaseUrl;
objectStorageBucket.value = meta.objectStorageBucket;
objectStoragePrefix.value = meta.objectStoragePrefix;
objectStorageEndpoint.value = meta.objectStorageEndpoint;
objectStorageRegion.value = meta.objectStorageRegion;
objectStoragePort.value = meta.objectStoragePort;
objectStorageAccessKey.value = meta.objectStorageAccessKey;
objectStorageSecretKey.value = meta.objectStorageSecretKey;
objectStorageUseSSL.value = meta.objectStorageUseSSL;
objectStorageUseProxy.value = meta.objectStorageUseProxy;
objectStorageSetPublicRead.value = meta.objectStorageSetPublicRead;
objectStorageS3ForcePathStyle.value = meta.objectStorageS3ForcePathStyle;
}
function save() {
os.apiWithDialog("admin/update-meta", {
useObjectStorage: useObjectStorage.value,
objectStorageBaseUrl: objectStorageBaseUrl.value,
objectStorageBucket: objectStorageBucket.value,
objectStoragePrefix: objectStoragePrefix.value,
objectStorageEndpoint: objectStorageEndpoint.value,
objectStorageRegion: objectStorageRegion.value,
objectStoragePort: objectStoragePort.value,
objectStorageAccessKey: objectStorageAccessKey.value,
objectStorageSecretKey: objectStorageSecretKey.value,
objectStorageUseSSL: objectStorageUseSSL.value,
objectStorageUseProxy: objectStorageUseProxy.value,
objectStorageSetPublicRead: objectStorageSetPublicRead.value,
objectStorageS3ForcePathStyle: objectStorageS3ForcePathStyle.value,
}).then(() => {
fetchInstance();
});
}
const headerActions = computed(() => [
{
asFullButton: true,
icon: `${icon("ph-check")}`,
text: i18n.ts.save,
handler: save,
},
]);
const headerTabs = computed(() => []);
definePageMetadata({
title: i18n.ts.objectStorage,
icon: `${icon("ph-cloud")}`,
});
</script>