nextcloud/apps/systemtags/src/filesplugin.js

48 lines
987 B
JavaScript

/*
* Copyright (c) 2015 Vincent Petry <pvince81@owncloud.com>
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
(function() {
OCA.SystemTags = _.extend({}, OCA.SystemTags)
if (!OCA.SystemTags) {
/**
* @namespace
*/
OCA.SystemTags = {}
}
/**
* @namespace
*/
OCA.SystemTags.FilesPlugin = {
ignoreLists: [
'trashbin',
'files.public',
],
attach(fileList) {
if (this.ignoreLists.indexOf(fileList.id) >= 0) {
return
}
// only create and attach once
// FIXME: this should likely be done on a different code path now
// for the sidebar to only have it registered once
if (!OCA.SystemTags.View) {
const systemTagsInfoView = new OCA.SystemTags.SystemTagsInfoView()
fileList.registerDetailView(systemTagsInfoView)
OCA.SystemTags.View = systemTagsInfoView
}
},
}
})()
OC.Plugins.register('OCA.Files.FileList', OCA.SystemTags.FilesPlugin)