Arno Kaimbacher
b06ccae603
Some checks failed
CI Pipeline / japa-tests (push) Failing after 1m2s
- mail_settings_controller for setting smtp settings - added view ror rjecting dataset for editor - added new model AppConfig for stroing appwide config values - better validate_chesum.ts command with process chunking - added vue3 apps 'BasicSettings' like email, profile settings - started with 2 multilingual capabilities - npm updates
79 lines
2.3 KiB
Vue
79 lines
2.3 KiB
Vue
<template>
|
|
<div id="profile-settings" class="section">
|
|
<h2 class="inlineblock">
|
|
{{ t('settings', 'Profile') }}
|
|
</h2>
|
|
|
|
<p class="settings-hint">
|
|
{{ t('settings', 'Enable or disable profile by default for new accounts.') }}
|
|
</p>
|
|
|
|
<NcCheckboxRadioSwitch type="switch" :checked.sync="initialProfileEnabledByDefault"
|
|
@update:checked="onProfileDefaultChange">
|
|
{{ t('settings', 'Enable') }}
|
|
</NcCheckboxRadioSwitch>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
// import { loadState } from '@nextcloud/initial-state'
|
|
import { loadState } from '@/utils/initialState';
|
|
import { showError } from '@/utils/toast.js';
|
|
|
|
import { saveProfileDefault } from '../../service/ProfileService.js'
|
|
import { validateBoolean } from '../../utils/validate.js'
|
|
import logger from '../../logger.ts'
|
|
|
|
// import NcCheckboxRadioSwitch from '@nextcloud/vue/dist/Components/NcCheckboxRadioSwitch.js'
|
|
|
|
const profileEnabledByDefault = loadState('settings', 'profileEnabledByDefault', true)
|
|
|
|
export default {
|
|
name: 'ProfileSettings',
|
|
|
|
components: {
|
|
NcCheckboxRadioSwitch,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
initialProfileEnabledByDefault: profileEnabledByDefault,
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
async onProfileDefaultChange(isEnabled: boolean) {
|
|
if (validateBoolean(isEnabled)) {
|
|
await this.updateProfileDefault(isEnabled)
|
|
}
|
|
},
|
|
|
|
async updateProfileDefault(isEnabled: boolean) {
|
|
try {
|
|
const responseData = await saveProfileDefault(isEnabled)
|
|
this.handleResponse({
|
|
isEnabled,
|
|
status: responseData.ocs?.meta?.status,
|
|
})
|
|
} catch (e) {
|
|
this.handleResponse({
|
|
errorMessage: t('settings', 'Unable to update profile default setting'),
|
|
error: e,
|
|
})
|
|
}
|
|
},
|
|
|
|
handleResponse({ isEnabled, status, errorMessage, error }) {
|
|
if (status === 'ok') {
|
|
this.initialProfileEnabledByDefault = isEnabled
|
|
} else {
|
|
showError(errorMessage)
|
|
logger.error(errorMessage, error)
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="css" scoped></style>
|