aboutsummaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-09-14 13:35:31 +0200
committerGitHub <noreply@github.com>2022-09-14 13:35:31 +0200
commit7ea015f0d199e8637392921ea5938394f9b78e73 (patch)
tree192e8141e965f283885f8087606de612db1e3d8a /core/src
parent979652430d8166e897c5370afaea01918917ea48 (diff)
parent66a7a89898678f30118151733be42ce041f55816 (diff)
downloadnextcloud-server-7ea015f0d199e8637392921ea5938394f9b78e73.tar.gz
nextcloud-server-7ea015f0d199e8637392921ea5938394f9b78e73.zip
Merge pull request #34042 from nextcloud/profile/section-plugin
Add api to load additional section in profile page
Diffstat (limited to 'core/src')
-rw-r--r--core/src/profile.js14
-rw-r--r--core/src/profile/ProfileSections.js43
-rw-r--r--core/src/views/Profile.vue11
3 files changed, 65 insertions, 3 deletions
diff --git a/core/src/profile.js b/core/src/profile.js
index 5e3711841a6..79465c6a28d 100644
--- a/core/src/profile.js
+++ b/core/src/profile.js
@@ -25,12 +25,22 @@ import { getRequestToken } from '@nextcloud/auth'
import { translate as t } from '@nextcloud/l10n'
import VTooltip from 'v-tooltip'
-import logger from './logger'
+import logger from './logger.js'
-import Profile from './views/Profile'
+import Profile from './views/Profile.vue'
+import ProfileSections from './profile/ProfileSections.js'
__webpack_nonce__ = btoa(getRequestToken())
+if (!window.OCA) {
+ window.OCA = {}
+}
+
+if (!window.OCA.Core) {
+ window.OCA.Core = {}
+}
+Object.assign(window.OCA.Core, { ProfileSections: new ProfileSections() })
+
Vue.use(VTooltip)
Vue.mixin({
diff --git a/core/src/profile/ProfileSections.js b/core/src/profile/ProfileSections.js
new file mode 100644
index 00000000000..4091c8332d6
--- /dev/null
+++ b/core/src/profile/ProfileSections.js
@@ -0,0 +1,43 @@
+
+/**
+ * @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net>
+ *
+ * @author Julius Härtl <jus@bitgrid.net>
+ *
+ * @license AGPL-3.0-or-later
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+export default class ProfileSections {
+
+ _sections
+
+ constructor() {
+ this._sections = []
+ }
+
+ /**
+ * @param {registerSectionCallback} section To be called to mount the section to the profile page
+ */
+ registerSection(section) {
+ this._sections.push(section)
+ }
+
+ getSections() {
+ return this._sections
+ }
+
+}
diff --git a/core/src/views/Profile.vue b/core/src/views/Profile.vue
index 93b8316e4da..c7571fff148 100644
--- a/core/src/views/Profile.vue
+++ b/core/src/views/Profile.vue
@@ -118,13 +118,21 @@
</p>
</div>
</div>
- <template v-if="headline || biography">
+ <template v-if="headline || biography || sections.length > 0">
<div v-if="headline" class="profile__blocks-headline">
<h3>{{ headline }}</h3>
</div>
<div v-if="biography" class="profile__blocks-biography">
<p>{{ biography }}</p>
</div>
+
+ <!-- additional entries, use it with cautious -->
+ <div v-for="(section, index) in sections"
+ :ref="'section-' + index"
+ :key="index"
+ class="profile__additionalContent">
+ <component :is="section($refs['section-'+index], userId)" :userId="userId" />
+ </div>
</template>
<template v-else>
<div class="profile__blocks-empty-info">
@@ -204,6 +212,7 @@ export default {
biography,
actions,
isUserAvatarVisible,
+ sections: OCA.Core.ProfileSections.getSections(),
}
},