2020-03-31 17:03:15 +00:00
|
|
|
import Component from '@ember/component';
|
|
|
|
import { set } from '@ember/object';
|
|
|
|
import { inject as service } from '@ember/service';
|
|
|
|
|
|
|
|
export default Component.extend({
|
|
|
|
service: service('state'),
|
|
|
|
tagName: '',
|
|
|
|
didReceiveAttrs: function() {
|
|
|
|
if (typeof this.state === 'undefined') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let match = true;
|
|
|
|
if (typeof this.matches !== 'undefined') {
|
|
|
|
match = this.service.matches(this.state, this.matches);
|
2020-07-09 09:08:47 +00:00
|
|
|
} else if (typeof this.notMatches !== 'undefined') {
|
|
|
|
match = !this.service.matches(this.state, this.notMatches);
|
2020-03-31 17:03:15 +00:00
|
|
|
}
|
|
|
|
set(this, 'rendering', match);
|
|
|
|
},
|
|
|
|
});
|