-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Benjamin Brahmer <[email protected]>
- Loading branch information
Showing
11 changed files
with
317 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
.icon-newsdashboard { | ||
background-image: url('../img/app-dark.svg'); | ||
filter: var(--background-invert-if-dark); | ||
} | ||
|
||
.widget-list li { | ||
list-style-type: disc; | ||
} | ||
|
||
#app-dashboard .panels .panel--header h2 { | ||
display: flex; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?php | ||
|
||
namespace OCA\News\Dashboard; | ||
|
||
use OCA\News\Service\FeedServiceV2; | ||
use OCP\AppFramework\Services\IInitialState; | ||
use OCP\Dashboard\IAPIWidget; | ||
use OCP\IL10N; | ||
use OCP\IURLGenerator; | ||
use OCP\Dashboard\Model\WidgetItem; | ||
|
||
use Psr\Log\LoggerInterface; | ||
|
||
use OCA\News\AppInfo\Application; | ||
use OCA\News\Db\ListType; | ||
use OCP\Util; | ||
|
||
class FeedWidget implements IAPIWidget { | ||
|
||
|
||
private $l10n; | ||
private $feedService; | ||
private $initialStateService; | ||
private $userId; | ||
private $urlGenerator; | ||
private $logger; | ||
|
||
public function __construct(IL10N $l10n, | ||
IURLGenerator $urlGenerator, | ||
FeedServiceV2 $feedService, | ||
IInitialState $initialStateService, | ||
LoggerInterface $loggerInterface, | ||
?string $userId) { | ||
$this->l10n = $l10n; | ||
$this->feedService = $feedService; | ||
$this->initialStateService = $initialStateService; | ||
$this->userId = $userId; | ||
$this->urlGenerator = $urlGenerator; | ||
$this->logger = $loggerInterface; | ||
} | ||
|
||
public function getId(): string { | ||
return 'news-feed-widget'; | ||
} | ||
|
||
public function getTitle(): string { | ||
$this->logger->debug("Requested title"); | ||
return $this->l10n->t('News Feed widget'); | ||
} | ||
|
||
public function getOrder(): int { | ||
$this->logger->debug("Requested order"); | ||
return 20; | ||
} | ||
|
||
public function getIconClass(): string { | ||
return 'icon-newsdashboard'; | ||
$this->logger->debug("Requested icon"); | ||
} | ||
|
||
public function getUrl(): ?string { | ||
return $this->urlGenerator->linkToRoute('news.page.index'); | ||
$this->logger->debug("Requested url"); | ||
} | ||
|
||
public function load(): void { | ||
$this->logger->debug("Requested load with user: " . $this->userId); | ||
if ($this->userId !== null) { | ||
$items = $this->getItems($this->userId); | ||
$this->initialStateService->provideInitialState('dashboard-widget-feeds', $items); | ||
} | ||
|
||
Util::addScript(Application::NAME, 'build/' . Application::NAME . '-dashboard-feeds'); | ||
Util::addStyle(Application::NAME, 'dashboard'); | ||
} | ||
|
||
public function getItems(string $userId, ?string $since = null, int $limit = 7): array { | ||
$items = $this->feedService->findAllForUser($userId); | ||
|
||
return $items; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
<?php | ||
|
||
namespace OCA\News\Dashboard; | ||
|
||
use OCA\News\Service\ItemServiceV2; | ||
use OCP\AppFramework\Services\IInitialState; | ||
use OCP\Dashboard\IAPIWidget; | ||
use OCP\IL10N; | ||
use OCP\IURLGenerator; | ||
//maybe this can be used to craft items with things from the feed | ||
use OCP\Dashboard\Model\WidgetItem; | ||
|
||
use Psr\Log\LoggerInterface; | ||
|
||
use OCA\News\AppInfo\Application; | ||
use OCA\News\Db\ListType; | ||
use OCP\Util; | ||
|
||
class ItemWidget implements IAPIWidget { | ||
|
||
|
||
private $l10n; | ||
private $itemService; | ||
private $initialStateService; | ||
private $userId; | ||
private $urlGenerator; | ||
private $logger; | ||
|
||
public function __construct(IL10N $l10n, | ||
IURLGenerator $urlGenerator, | ||
ItemServiceV2 $itemService, | ||
IInitialState $initialStateService, | ||
LoggerInterface $loggerInterface, | ||
?string $userId) { | ||
$this->l10n = $l10n; | ||
$this->itemService = $itemService; | ||
$this->initialStateService = $initialStateService; | ||
$this->userId = $userId; | ||
$this->urlGenerator = $urlGenerator; | ||
$this->logger = $loggerInterface; | ||
} | ||
|
||
public function getId(): string { | ||
return 'news-item-widget'; | ||
} | ||
|
||
public function getTitle(): string { | ||
$this->logger->debug("Requested title"); | ||
return $this->l10n->t('News Item widget'); | ||
} | ||
|
||
public function getOrder(): int { | ||
$this->logger->debug("Requested order"); | ||
return 20; | ||
} | ||
|
||
public function getIconClass(): string { | ||
return 'icon-newsdashboard'; // TODO | ||
$this->logger->debug("Requested icon"); | ||
} | ||
|
||
public function getUrl(): ?string { | ||
return $this->urlGenerator->linkToRoute('news.page.index'); | ||
$this->logger->debug("Requested url"); | ||
} | ||
|
||
public function load(): void { | ||
$this->logger->debug("Requested load with user: " . $this->userId); | ||
if ($this->userId !== null) { | ||
$items = $this->getItems($this->userId); | ||
$this->initialStateService->provideInitialState('dashboard-widget-items', $items); | ||
} | ||
|
||
Util::addScript(Application::NAME, 'build/' . Application::NAME . '-dashboard-items'); | ||
Util::addStyle(Application::NAME, 'dashboard'); | ||
} | ||
|
||
public function getItems(string $userId, ?string $since = null, int $limit = 7): array { | ||
$offset = (int) ($since ?? 0); | ||
$items = $this->itemService->findAllWithFilters($userId, ListType::ALL_ITEMS ,$limit, $offset, false); | ||
|
||
return $items; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<template> | ||
<NcDashboardWidget :items="items"> | ||
<template #default="{ item }"> | ||
<NcDashboardWidgetItem | ||
:main-text="item.mainText" | ||
:sub-text="item.subText" | ||
:target-url="item.targetURL" | ||
:avatar-is-no-user="true" | ||
:avatar-url="item.favicon"> | ||
|
||
<NcDashboardWidgetItem> | ||
</template> | ||
</NcDashboardWidget> | ||
</template> | ||
|
||
<script> | ||
import NcDashboardWidget from '@nextcloud/vue/dist/Components/NcDashboardWidget.js' | ||
import NcDashboardWidgetItem from '@nextcloud/vue/dist/Components/NcDashboardWidgetItem' | ||
import { loadState } from '@nextcloud/initial-state' | ||
import { generateUrl } from '@nextcloud/router' | ||
const newsItems = loadState('news', 'dashboard-widget-feeds') | ||
console.log(newsItems) | ||
export default { | ||
name: 'NewsFeedWidget', | ||
components: { | ||
NcDashboardWidget, | ||
NcDashboardWidgetItem, | ||
}, | ||
props: [], | ||
data() { | ||
return { | ||
newsItems: newsItems | ||
} | ||
}, | ||
computed: { | ||
items() { | ||
return this.newsItems.map((g) => { | ||
return { | ||
id: g.id, | ||
mainText: g.title, | ||
subText: `Unread: ${g.unreadCount}`, | ||
targetURL: generateUrl(`/apps/news/#/items/feeds/${g.id}`), | ||
favicon: g.faviconLink, | ||
} | ||
}) | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<template> | ||
<NcDashboardWidget :items="items"> | ||
<template #default="{ item }"> | ||
<NcDashboardWidgetItem | ||
:main-text="item.mainText" | ||
:sub-text="item.subText" | ||
:target-url="item.targetURL"> | ||
|
||
<NcDashboardWidgetItem> | ||
</template> | ||
</NcDashboardWidget> | ||
</template> | ||
|
||
<script> | ||
import NcDashboardWidget from '@nextcloud/vue/dist/Components/NcDashboardWidget.js' | ||
import NcDashboardWidgetItem from '@nextcloud/vue/dist/Components/NcDashboardWidgetItem' | ||
import { loadState } from '@nextcloud/initial-state' | ||
import { generateUrl } from '@nextcloud/router' | ||
const newsItems = loadState('news', 'dashboard-widget-items') | ||
console.log(newsItems) | ||
export default { | ||
name: 'NewsItemWidget', | ||
components: { | ||
NcDashboardWidget, | ||
NcDashboardWidgetItem, | ||
}, | ||
props: [], | ||
data() { | ||
return { | ||
newsItems: newsItems | ||
} | ||
}, | ||
computed: { | ||
items() { | ||
return this.newsItems.map((g) => { | ||
return { | ||
id: g.id, | ||
mainText: g.title, | ||
subText: g.intro, | ||
targetURL: generateUrl(`/apps/news/#/items/feeds/${g.feedId}`) | ||
} | ||
}) | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Vue from 'vue' | ||
import NewsFeedWidget from './components/FeedDashboard.vue' | ||
|
||
document.addEventListener('DOMContentLoaded', () => { | ||
console.log("I'm alive") | ||
OCA.Dashboard.register('news-feed-widget', (el) => { | ||
console.log("Dashboard registered") | ||
const View = Vue.extend(NewsFeedWidget) | ||
new View().$mount(el) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Vue from 'vue' | ||
import NewsItemWidget from './components/ItemDashboard.vue' | ||
|
||
document.addEventListener('DOMContentLoaded', () => { | ||
console.log("I'm alive") | ||
OCA.Dashboard.register('news-item-widget', (el) => { | ||
console.log("Dashboard registered") | ||
const View = Vue.extend(NewsItemWidget) | ||
new View().$mount(el) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import Vue from 'vue' | ||
import { translate, translatePlural } from '@nextcloud/l10n' | ||
|
||
Vue.prototype.t = translate | ||
Vue.prototype.n = translatePlural | ||
Vue.prototype.OC = window.OC | ||
Vue.prototype.OCA = window.OCA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters