aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/plugins/search/folderSearch.ts
blob: 626b1daa72b4e506dfe0b7ff7894ce6e0b0d2a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

import type { Node } from '@nextcloud/files'
import { emit } from '@nextcloud/event-bus'
import { getFilePickerBuilder } from '@nextcloud/dialogs'
import { imagePath } from '@nextcloud/router'
import { translate as t } from '@nextcloud/l10n'
import logger from '../../logger'

/**
 * Initialize the unified search plugin.
 */
function init() {
	const OCA = window.OCA
	if (!OCA.UnifiedSearch) {
		return
	}

	logger.info('Initializing unified search plugin: folder search from files app')
	OCA.UnifiedSearch.registerFilterAction({
		id: 'in-folder',
		appId: 'files',
		searchFrom: 'files',
		label: t('files', 'In folder'),
		icon: imagePath('files', 'app.svg'),
		callback: (showFilePicker: boolean = true) => {
			if (showFilePicker) {
				const filepicker = getFilePickerBuilder('Pick plain text files')
					.addMimeTypeFilter('httpd/unix-directory')
					.allowDirectories(true)
					.addButton({
						label: 'Pick',
						callback: (nodes: Node[]) => {
							logger.info('Folder picked', { folder: nodes[0] })
							const folder = nodes[0]
							emit('nextcloud:unified-search:add-filter', {
								id: 'in-folder',
								appId: 'files',
								searchFrom: 'files',
								payload: folder,
								filterUpdateText: t('files', 'Search in folder: {folder}', { folder: folder.basename }),
								filterParams: { path: folder.path },
							})
						},
					})
					.build()
				filepicker.pick()
			} else {
				logger.debug('Folder search callback was handled without showing the file picker, it might already be open')
			}
		},
	})
}

document.addEventListener('DOMContentLoaded', init)