1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 13:49:42 +02:00

Hanel empty state for document meta fields

This commit is contained in:
Harvey Kandola 2018-12-21 17:39:09 +00:00
parent 92cb03a1db
commit b495041222
6 changed files with 32 additions and 170 deletions

View file

@ -10,6 +10,7 @@
// https://documize.com
import { A } from '@ember/array';
import { computed } from '@ember/object';
import { inject as service } from '@ember/service';
import Modals from '../../mixins/modal';
import Component from '@ember/component';
@ -19,10 +20,15 @@ export default Component.extend(Modals, {
sessionService: service('session'),
categoryService: service('category'),
router: service(),
selectedCategories: A([]),
tagz: A([]),
unassigned: computed('selectedCategories', 'tagz', function() {
return this.get('selectedCategories').length === 0 && this.get('tagz').length === 0;
}),
didReceiveAttrs() {
this._super(...arguments);
this.load();
},