diff --git a/css/dashboard.css b/css/dashboard.css
new file mode 100644
index 00000000..6f79efe9
--- /dev/null
+++ b/css/dashboard.css
@@ -0,0 +1,7 @@
+.icon-social {
+ background-image: url('../img/social-dark.svg');
+}
+
+body.theme--dark .icon-social {
+ background-image: url('../img/social.svg');
+}
diff --git a/img/add_user.svg b/img/add_user.svg
new file mode 100644
index 00000000..c9c2b73a
--- /dev/null
+++ b/img/add_user.svg
@@ -0,0 +1,87 @@
+
+
+
+
\ No newline at end of file
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 1324c806..93f45f6b 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -38,6 +38,7 @@ use OCA\Social\Service\ConfigService;
use OCA\Social\Service\UpdateService;
use OCA\Social\WellKnown\WebfingerHandler;
use OCA\Social\Listeners\ProfileSectionListener;
+use OCA\Social\Dashboard\SocialWidget;
use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;
use OCP\AppFramework\Bootstrap\IBootstrap;
@@ -68,6 +69,7 @@ class Application extends App implements IBootstrap {
$context->registerSearchProvider(UnifiedSearchProvider::class);
$context->registerWellKnownHandler(WebfingerHandler::class);
$context->registerEventListener(BeforeTemplateRenderedEvent::class, ProfileSectionListener::class);
+ $context->registerDashboardWidget(SocialWidget::class);
}
public function boot(IBootContext $context): void {
diff --git a/lib/Dashboard/SocialWidget.php b/lib/Dashboard/SocialWidget.php
new file mode 100644
index 00000000..495dddcb
--- /dev/null
+++ b/lib/Dashboard/SocialWidget.php
@@ -0,0 +1,83 @@
+
+ *
+ * @author Julien Veyssier
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * 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 .
+ *
+ */
+
+namespace OCA\Social\Dashboard;
+
+use OCP\Dashboard\IWidget;
+use OCP\IL10N;
+use OCA\Social\AppInfo\Application;
+
+class SocialWidget implements IWidget {
+
+ /** @var IL10N */
+ private $l10n;
+
+ public function __construct(
+ IL10N $l10n
+ ) {
+ $this->l10n = $l10n;
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function getId(): string {
+ return 'social_notifications';
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function getTitle(): string {
+ return $this->l10n->t('Social notifications');
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function getOrder(): int {
+ return 10;
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function getIconClass(): string {
+ return 'icon-social';
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function getUrl(): ?string {
+ return \OC::$server->getURLGenerator()->linkToRoute('social.local.streamNotifications', []);
+ }
+
+ /**
+ * @inheritDoc
+ */
+ public function load(): void {
+ \OC_Util::addScript(Application::APP_NAME, 'dashboard');
+ \OC_Util::addStyle(Application::APP_NAME, 'dashboard');
+ }
+}
\ No newline at end of file
diff --git a/src/dashboard.js b/src/dashboard.js
new file mode 100644
index 00000000..48132a91
--- /dev/null
+++ b/src/dashboard.js
@@ -0,0 +1,32 @@
+/* jshint esversion: 6 */
+
+/**
+ * Nextcloud - social
+ *
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Julien Veyssier
+ * @copyright Julien Veyssier 2020
+ */
+
+import Vue from 'vue'
+import { translate, translatePlural } from '@nextcloud/l10n'
+import Dashboard from './views/Dashboard'
+
+Vue.prototype.t = translate
+Vue.prototype.n = translatePlural
+Vue.prototype.OC = window.OC
+Vue.prototype.OCA = window.OCA
+
+document.addEventListener('DOMContentLoaded', function() {
+
+ OCA.Dashboard.register('social_notifications', (el, { widget }) => {
+ const View = Vue.extend(Dashboard)
+ new View({
+ propsData: { title: widget.title },
+ }).$mount(el)
+ })
+
+})
diff --git a/src/views/Dashboard.vue b/src/views/Dashboard.vue
new file mode 100644
index 00000000..bb5cbf8a
--- /dev/null
+++ b/src/views/Dashboard.vue
@@ -0,0 +1,200 @@
+
+
+
+
+
+ {{ emptyContentMessage }}
+