Files
api/web/components/ConnectSettings/ConnectSettings.ce.vue
T
Pujit Mehrotra 9dfdb8dce7 fix: make settings grid responsive (#1463)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit

* **New Features**
* Introduced a new SettingsGrid component for consistent and responsive
grid layouts.

* **Refactor**
* Updated settings-related layouts to use the new SettingsGrid
component, improving maintainability and visual consistency across the
interface.

* **Chores**
  * Removed an unused CSS breakpoint variable from global styles.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-07-22 09:21:35 -04:00

156 lines
4.5 KiB
Vue

<script lang="ts" setup>
// import { useI18n } from 'vue-i18n';
// const { t } = useI18n();
import { ref, computed, watch } from 'vue';
import { storeToRefs } from 'pinia';
import { watchDebounced } from '@vueuse/core';
import { useMutation, useQuery } from '@vue/apollo-composable';
import { BrandButton, jsonFormsRenderers, Label, SettingsGrid } from '@unraid/ui';
import { JsonForms } from '@jsonforms/vue';
import { useServerStore } from '~/store/server';
// unified settings values are returned as JSON, so use a generic record type
// import type { ConnectSettingsValues } from '~/composables/gql/graphql';
import { getConnectSettingsForm, updateConnectSettings } from './graphql/settings.query';
const { connectPluginInstalled } = storeToRefs(useServerStore());
/**--------------------------------------------
* Settings State & Form definition
*---------------------------------------------**/
const formState = ref<Record<string, unknown>>({});
const { result, refetch } = useQuery(getConnectSettingsForm);
const settings = computed(() => {
if (!result.value) return;
return result.value.settings.unified;
});
watch(result, () => {
if (!result.value) return;
// unified values are namespaced (e.g., { api: { ... } })
formState.value = structuredClone(result.value.settings.unified.values ?? {});
});
const restartRequired = computed(() => {
interface SandboxValues {
api?: {
sandbox?: boolean;
};
}
const currentSandbox = (settings.value?.values as SandboxValues)?.api?.sandbox;
const updatedSandbox = (formState.value as SandboxValues)?.api?.sandbox;
return currentSandbox !== updatedSandbox;
});
/**--------------------------------------------
* Update Settings Actions
*---------------------------------------------**/
const {
mutate: mutateSettings,
loading: mutateSettingsLoading,
error: mutateSettingsError,
onDone: onMutateSettingsDone,
} = useMutation(updateConnectSettings);
const isUpdating = ref(false);
// prevent ui flash if loading finishes too fast
watchDebounced(
mutateSettingsLoading,
(loading) => {
isUpdating.value = loading;
},
{
debounce: 100,
}
);
// show a toast when the update is done
onMutateSettingsDone(() => {
globalThis.toast.success('Updated API Settings', {
description: restartRequired.value ? 'The API is restarting...' : undefined,
});
});
/**--------------------------------------------
* Form Config & Actions
*---------------------------------------------**/
const jsonFormsConfig = {
restrict: false,
trim: false,
};
const renderers = [...jsonFormsRenderers];
/** Called when the user clicks the "Apply" button */
const submitSettingsUpdate = async () => {
console.log('[ConnectSettings] trying to update settings to', formState.value);
await mutateSettings({ input: formState.value });
await refetch();
};
/** Called whenever a JSONForms form control changes */
const onChange = ({ data }: { data: Record<string, unknown> }) => {
formState.value = data;
};
</script>
<template>
<!-- common api-related actions -->
<SettingsGrid>
<template v-if="connectPluginInstalled">
<Label>Account Status:</Label>
<div v-html="'<unraid-auth></unraid-auth>'"/>
</template>
<Label>Download Unraid API Logs:</Label>
<div
v-html="
'<unraid-download-api-logs></unraid-download-api-logs>'
"
/>
</SettingsGrid>
<!-- auto-generated settings form -->
<div class="mt-6 pl-3 [&_.vertical-layout]:space-y-6">
<JsonForms
v-if="settings"
:schema="settings.dataSchema"
:uischema="settings.uiSchema"
:renderers="renderers"
:data="formState"
:config="jsonFormsConfig"
:readonly="isUpdating"
@change="onChange"
/>
<!-- form submission & fallback reaction message -->
<div class="mt-6 grid grid-cols-settings gap-y-6 items-baseline">
<div class="text-sm text-end">
<p v-if="isUpdating">Applying Settings...</p>
<p v-else-if="restartRequired">The API will restart after settings are applied.</p>
</div>
<div class="col-start-2 ml-10 space-y-4">
<BrandButton
padding="lean"
size="12px"
class="leading-normal"
@click="submitSettingsUpdate"
>
Apply
</BrandButton>
<p v-if="mutateSettingsError" class="text-sm text-unraid-red-500">
Error: {{ mutateSettingsError.message }}
</p>
</div>
</div>
</div>
</template>
<style >
/* Import unraid-ui globals first */
@import '@unraid/ui/styles';
@import '../../assets/main.css';
</style>