| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { coreModule } from 'app/core/core';
- export class RowOptionsCtrl {
- row: any;
- source: any;
- dismiss: any;
- onUpdated: any;
- showDelete: boolean;
- /** @ngInject */
- constructor() {
- this.source = this.row;
- this.row = this.row.getSaveModel();
- }
- update() {
- this.source.title = this.row.title;
- this.source.repeat = this.row.repeat;
- this.onUpdated();
- this.dismiss();
- }
- }
- export function rowOptionsDirective() {
- return {
- restrict: 'E',
- templateUrl: 'public/app/features/dashboard/components/RowOptions/template.html',
- controller: RowOptionsCtrl,
- bindToController: true,
- controllerAs: 'ctrl',
- scope: {
- row: '=',
- dismiss: '&',
- onUpdated: '&',
- },
- };
- }
- coreModule.directive('rowOptions', rowOptionsDirective);
|