-
Notifications
You must be signed in to change notification settings - Fork 440
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Plug-in talk specific filters for unified search
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
- Loading branch information
Showing
4 changed files
with
163 additions
and
0 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,56 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* @copyright Copyright (c) 2024 Fon E. Noel NFEBE <me@nfebe.com> | ||
* | ||
* @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 <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCA\Talk\Search; | ||
|
||
use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent; | ||
use OCP\EventDispatcher\Event; | ||
use OCP\EventDispatcher\IEventListener; | ||
use OCP\IRequest; | ||
use OCP\Util; | ||
|
||
/** | ||
* @template-implements IEventListener<Event> | ||
*/ | ||
class UnifiedSearchFilterPlugin implements IEventListener { | ||
|
||
public function __construct( | ||
private IRequest $request, | ||
) { | ||
} | ||
|
||
public function handle(Event $event): void { | ||
if (!($event instanceof BeforeTemplateRenderedEvent)) { | ||
return; | ||
} | ||
|
||
if (!$event->isLoggedIn()) { | ||
return; | ||
} | ||
|
||
// REVIEW: Only add the talk filter if user is on talk app? | ||
if (str_starts_with($this->request->getPathInfo(), '/apps/spreed')) { | ||
Util::addScript('spreed', 'talk-search'); | ||
} | ||
} | ||
} |
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,104 @@ | ||
/* | ||
* @copyright Copyright (c) 2024 Fon E. Noel NFEBE <me@nfebe.com> | ||
* | ||
* @author Vincent Petry <me@nfebe.com> | ||
* | ||
* @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/>. | ||
* | ||
*/ | ||
|
||
import Vue from 'vue' | ||
|
||
import { getRequestToken } from '@nextcloud/auth' | ||
import { emit } from '@nextcloud/event-bus' | ||
import { translate, translatePlural } from '@nextcloud/l10n' | ||
import { generateFilePath } from '@nextcloud/router' | ||
|
||
import RoomSelector from './components/RoomSelector.vue' | ||
|
||
import { fetchConversation } from './services/conversationsService.js' | ||
|
||
import '@nextcloud/dialogs/style.css' | ||
|
||
(function(OC, OCA, t, n) { | ||
|
||
/** | ||
* | ||
*/ | ||
function init() { | ||
if (!OCA.Core) { | ||
return | ||
} | ||
console.debug('Initializing unified search plugin-filters from talk') | ||
OCA.Core.UnifiedSearch.registerFilterAction({ | ||
id: 'talk-message', | ||
label: t('spreed', 'In conversation'), | ||
icon: '/apps/spreed/img/app.svg', | ||
callback: () => { | ||
const container = document.createElement('div') | ||
container.id = 'spreed-post-card-to-room-select' | ||
const body = document.getElementById('body-user') | ||
body.appendChild(container) | ||
|
||
const ComponentVM = Vue.extend(RoomSelector) | ||
const vm = new ComponentVM({ | ||
el: container, | ||
propsData: { | ||
dialogTitle: t('spreed', 'Select conversation'), | ||
showPostableOnly: true, | ||
}, | ||
}) | ||
|
||
vm.$root.$on('close', () => { | ||
vm.$el.remove() | ||
vm.$destroy() | ||
}) | ||
vm.$root.$on('select', (token) => { | ||
vm.$el.remove() | ||
vm.$destroy() | ||
fetchConversation(token).then(response => { | ||
const conversation = response.data.ocs.data | ||
emit('nextcloud:unified-search:add-filter', { | ||
id: 'talk-message', | ||
payload: conversation, | ||
filterUpdateText: `Search in conversation: ${conversation.displayName}`, | ||
filterParams: { conversation: conversation.token } | ||
}) | ||
}) | ||
}) | ||
}, | ||
}) | ||
} | ||
|
||
// CSP config for webpack dynamic chunk loading | ||
// eslint-disable-next-line | ||
__webpack_nonce__ = btoa(getRequestToken()) | ||
|
||
// Correct the root of the app for chunk loading | ||
// OC.linkTo matches the apps folders | ||
// OC.generateUrl ensure the index.php (or not) | ||
// We do not want the index.php since we're loading files | ||
// eslint-disable-next-line | ||
__webpack_public_path__ = generateFilePath('spreed', '', 'js/') | ||
|
||
Vue.prototype.t = translate | ||
Vue.prototype.n = translatePlural | ||
Vue.prototype.OC = OC | ||
Vue.prototype.OCA = OCA | ||
|
||
document.addEventListener('DOMContentLoaded', init) | ||
|
||
})(window.OC, window.OCA, t, n) |
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