41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import Vue from 'vue'
|
|
|
|
import './../css/collections.css'
|
|
import FileSharingPicker from './views/FileSharingPicker.js'
|
|
import { buildSelector } from './helpers/selector.js'
|
|
|
|
import './shared-init.js'
|
|
|
|
Vue.prototype.t = t
|
|
Vue.prototype.n = n
|
|
Vue.prototype.OC = OC
|
|
|
|
window.addEventListener('DOMContentLoaded', () => {
|
|
if (OCA.Sharing && OCA.Sharing.ShareSearch) {
|
|
OCA.Sharing.ShareSearch.addNewResult(FileSharingPicker)
|
|
}
|
|
|
|
window.OCP.Collaboration.registerType('deck', {
|
|
action: () => {
|
|
const BoardSelector = () => import('./BoardSelector.vue')
|
|
return buildSelector(BoardSelector)
|
|
},
|
|
typeString: t('deck', 'Link to a board'),
|
|
typeIconClass: 'icon-deck',
|
|
})
|
|
|
|
window.OCP.Collaboration.registerType('deck-card', {
|
|
action: () => {
|
|
const CardSelector = () => import('./CardSelector.vue')
|
|
return buildSelector(CardSelector)
|
|
},
|
|
typeString: t('deck', 'Link to a card'),
|
|
typeIconClass: 'icon-deck',
|
|
})
|
|
})
|