89136cbf6a
Manual interventions: • decorators on the same line for service and controller injections and most computed property macros • preserving import order when possible, both per-line and intra-line • moving new imports to the bottom • removal of classic decorator for trivial cases • conversion of init to constructor when appropriate
25 lines
696 B
JavaScript
25 lines
696 B
JavaScript
import Component from '@ember/component';
|
|
import { computed as overridable } from 'ember-overridable-computed';
|
|
import { inject as service } from '@ember/service';
|
|
import { tagName } from '@ember-decorators/component';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
@tagName('')
|
|
export default class RescheduleEventRow extends Component {
|
|
@service store;
|
|
|
|
// When given a string, the component will fetch the allocation
|
|
allocationId = null;
|
|
|
|
// An allocation can also be provided directly
|
|
@overridable('allocationId', function() {
|
|
return this.store.findRecord('allocation', this.allocationId);
|
|
})
|
|
allocation;
|
|
|
|
time = null;
|
|
linkToAllocation = true;
|
|
label = '';
|
|
}
|