aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/components/PersonalInfo/WebsiteSection.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/WebsiteSection.vue')
-rw-r--r--apps/settings/src/components/PersonalInfo/WebsiteSection.vue43
1 files changed, 43 insertions, 0 deletions
diff --git a/apps/settings/src/components/PersonalInfo/WebsiteSection.vue b/apps/settings/src/components/PersonalInfo/WebsiteSection.vue
new file mode 100644
index 00000000000..762909139dd
--- /dev/null
+++ b/apps/settings/src/components/PersonalInfo/WebsiteSection.vue
@@ -0,0 +1,43 @@
+<!--
+ - SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ - SPDX-License-Identifier: AGPL-3.0-or-later
+-->
+
+<template>
+ <AccountPropertySection v-bind.sync="website"
+ :placeholder="t('settings', 'Your website')"
+ autocomplete="url"
+ type="url"
+ :on-validate="onValidate" />
+</template>
+
+<script>
+import { loadState } from '@nextcloud/initial-state'
+
+import AccountPropertySection from './shared/AccountPropertySection.vue'
+
+import { NAME_READABLE_ENUM } from '../../constants/AccountPropertyConstants.js'
+import { validateUrl } from '../../utils/validate.js'
+
+const { website } = loadState('settings', 'personalInfoParameters', {})
+
+export default {
+ name: 'WebsiteSection',
+
+ components: {
+ AccountPropertySection,
+ },
+
+ data() {
+ return {
+ website: { ...website, readable: NAME_READABLE_ENUM[website.name] },
+ }
+ },
+
+ methods: {
+ onValidate(value) {
+ return validateUrl(value)
+ },
+ },
+}
+</script>