Browse Source
Add the projects sidebar
Add the projects sidebar
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/2399/head
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
5 changed files with 30 additions and 127 deletions
-
1.eslintignore
-
63src/collectionsintegration.js
-
37src/components/Sidebar/Sidebar.vue
-
55src/views/CollaborationView.vue
-
1webpack.common.js
@ -1,63 +0,0 @@ |
|||
/* |
|||
* @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net> |
|||
* |
|||
* @author Julius Härtl <jus@bitgrid.net> |
|||
* |
|||
* @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/>.
|
|||
* |
|||
*/ |
|||
|
|||
import Vue from 'vue' |
|||
import CollaborationView from './views/CollaborationView' |
|||
|
|||
// eslint-disable-next-line no-unexpected-multiline
|
|||
(function(OCP, OCA) { |
|||
// eslint-disable-next-line
|
|||
__webpack_nonce__ = btoa(OC.requestToken) |
|||
// eslint-disable-next-line
|
|||
__webpack_public_path__ = OC.linkTo('spreed', 'js/') |
|||
|
|||
Vue.prototype.t = t |
|||
Vue.prototype.n = n |
|||
Vue.prototype.OC = OC |
|||
|
|||
OCA.Talk = Object.assign({}, OCA.Talk) |
|||
OCA.Talk.CollectionsTabView = { |
|||
|
|||
ComponentVM: null, |
|||
MountingPoint: null, |
|||
|
|||
init(MountingPoint, roomModel) { |
|||
this.ComponentVM = new Vue({ |
|||
data: { |
|||
model: roomModel.toJSON(), |
|||
}, |
|||
render: h => h(CollaborationView), |
|||
}) |
|||
|
|||
if (MountingPoint) { |
|||
this.ComponentVM.$mount(MountingPoint) |
|||
} |
|||
}, |
|||
setRoomModel(roomModel) { |
|||
if (this.ComponentVM) { |
|||
this.ComponentVM.model = roomModel.toJSON() |
|||
} |
|||
}, |
|||
|
|||
} |
|||
|
|||
})(window.OCP, window.OCA) |
@ -1,55 +0,0 @@ |
|||
<!-- |
|||
- @copyright Copyright (c) 2019 Julius Härtl <jus@bitgrid.net> |
|||
- |
|||
- @author Julius Härtl <jus@bitgrid.net> |
|||
- |
|||
- @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/>. |
|||
- |
|||
--> |
|||
|
|||
<template> |
|||
<div> |
|||
<CollectionList v-if="roomId" |
|||
:id="roomId" |
|||
type="room" |
|||
:name="roomTitle" /> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import { CollectionList } from 'nextcloud-vue-collections' |
|||
|
|||
export default { |
|||
name: 'CollaborationView', |
|||
components: { |
|||
CollectionList: CollectionList, |
|||
}, |
|||
computed: { |
|||
roomId() { |
|||
if (this.$root.model && this.$root.model.token) { |
|||
return '' + this.$root.model.token |
|||
} |
|||
return null |
|||
}, |
|||
roomTitle() { |
|||
if (this.$root.model && this.$root.model.displayName) { |
|||
return '' + this.$root.model.displayName |
|||
} |
|||
return '' |
|||
}, |
|||
}, |
|||
} |
|||
</script> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue