aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src/components/PersonalInfo/BiographySection.vue
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/src/components/PersonalInfo/BiographySection.vue')
-rw-r--r--apps/settings/src/components/PersonalInfo/BiographySection.vue34
1 files changed, 34 insertions, 0 deletions
diff --git a/apps/settings/src/components/PersonalInfo/BiographySection.vue b/apps/settings/src/components/PersonalInfo/BiographySection.vue
new file mode 100644
index 00000000000..bbfb25e25cc
--- /dev/null
+++ b/apps/settings/src/components/PersonalInfo/BiographySection.vue
@@ -0,0 +1,34 @@
+<!--
+ - SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ - SPDX-License-Identifier: AGPL-3.0-or-later
+-->
+
+<template>
+ <AccountPropertySection v-bind.sync="biography"
+ :placeholder="t('settings', 'Your biography. Markdown is supported.')"
+ :multi-line="true" />
+</template>
+
+<script>
+import { loadState } from '@nextcloud/initial-state'
+
+import AccountPropertySection from './shared/AccountPropertySection.vue'
+
+import { NAME_READABLE_ENUM } from '../../constants/AccountPropertyConstants.js'
+
+const { biography } = loadState('settings', 'personalInfoParameters', {})
+
+export default {
+ name: 'BiographySection',
+
+ components: {
+ AccountPropertySection,
+ },
+
+ data() {
+ return {
+ biography: { ...biography, readable: NAME_READABLE_ENUM[biography.name] },
+ }
+ },
+}
+</script>