From 5a48002575fd8d9ba4e788bef05964d8ee845972 Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Sat, 26 Sep 2020 11:05:18 +0000
Subject: [PATCH] Account selector for the community page

---
 src/Module/Conversation/Community.php        | 15 +++++++++++++++
 view/templates/widget/community_accounts.tpl | 11 +++++++++++
 2 files changed, 26 insertions(+)
 create mode 100644 view/templates/widget/community_accounts.tpl

diff --git a/src/Module/Conversation/Community.php b/src/Module/Conversation/Community.php
index c86bf9176c..a23f603508 100644
--- a/src/Module/Conversation/Community.php
+++ b/src/Module/Conversation/Community.php
@@ -113,6 +113,21 @@ class Community extends BaseModule
 
 		$o .= $pager->renderMinimal(count($items));
 
+		DI::page()['aside'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/community_accounts.tpl'), [
+			'$content'               => self::$content,
+			'$title'                 => DI::l10n()->t('Accounts'),
+			'$all'                   => DI::l10n()->t('All Accounts'),
+			'$all_selected'          => ($parameters['accounttype'] == '') ? 'selected' : '',
+			'$person'                => DI::l10n()->t('Personal Accounts'),
+			'$person_selected'       => ($parameters['accounttype'] == 'person') ? 'selected' : '',
+			'$organisation'          => DI::l10n()->t('Organisation Accounts'),
+			'$organisation_selected' => ($parameters['accounttype'] == 'organisation') ? 'selected' : '',
+			'$news'                  => DI::l10n()->t('News Accounts'),
+			'$news_selected'         => ($parameters['accounttype'] == 'news') ? 'selected' : '',
+			'$community'             => DI::l10n()->t('Communities'),
+			'$community_selected'    => ($parameters['accounttype'] == 'community') ? 'selected' : '',
+		]);
+
 		if (Feature::isEnabled(local_user(), 'trending_tags')) {
 			DI::page()['aside'] .= TrendingTags::getHTML(self::$content);
 		}
diff --git a/view/templates/widget/community_accounts.tpl b/view/templates/widget/community_accounts.tpl
new file mode 100644
index 0000000000..adc036106d
--- /dev/null
+++ b/view/templates/widget/community_accounts.tpl
@@ -0,0 +1,11 @@
+<div id="sidebar-community-accounts" class="widget">
+	<h3>{{$title}}</h3>
+
+	<ul class="sidebar-community-accounts-ul">
+		<li role="menuitem" class="sidebar-community-accounts-li {{$all_selected}}"><a href="community/{{$content}}">{{$all}}</a></li>
+		<li role="menuitem" class="sidebar-community-accounts-li {{$person_selected}}"><a href="community/{{$content}}/person">{{$person}}</a></li>
+		<li role="menuitem" class="sidebar-community-accounts-li {{$organisation_selected}}"><a href="community/{{$content}}/organisation">{{$organisation}}</a></li>
+		<li role="menuitem" class="sidebar-community-accounts-li {{$news_selected}}"><a href="community/{{$content}}/news">{{$news}}</a></li>
+		<li role="menuitem" class="sidebar-community-accounts-li {{$community_selected}}"><a href="community/{{$content}}/community">{{$community}}</a></li>
+	</ul>
+</div>
-- 
2.39.5