blob: b3cab9e202358b9f8996b13c8cc8d511a8048b49 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {default as ListEditableController, ID, ItemScope} from '../../controller';
import {ListEditableTransclude} from '../list-editable-transclude/directive';
const CUSTOM_EVENT_TYPE = '$ngModel.change';
/**
* Emits $ngModel.change event on every ngModel.$viewValue change
*/
export function ngModel<T>(): ng.IDirective {
return {
link(scope, el, attr, {ngModel, list}: {ngModel: ng.INgModelController, list?: ListEditableController<T>}) {
if (!list)
return;
ngModel.$viewChangeListeners.push(() => {
el[0].dispatchEvent(new CustomEvent(CUSTOM_EVENT_TYPE, {bubbles: true, cancelable: true}));
});
},
require: {
ngModel: 'ngModel',
list: '?^listEditable'
}
};
}
/**
* Triggers $ctrl.save when any ngModel emits $ngModel.change event
*/
export function listEditableTransclude<T>(): ng.IDirective {
return {
link(scope: ItemScope<T>, el, attr, {list, transclude}: {list?: ListEditableController<T>, transclude: ListEditableTransclude<T>}) {
if (attr.listEditableTransclude !== 'itemEdit')
return;
if (!list)
return;
let listener = (e) => {
e.stopPropagation();
scope.$evalAsync(() => {
if (scope.form.$valid) list.save(scope.item, list.id(scope.item, transclude.$index));
});
};
el[0].addEventListener(CUSTOM_EVENT_TYPE, listener);
scope.$on('$destroy', () => {
el[0].removeEventListener(CUSTOM_EVENT_TYPE, listener);
listener = null;
});
},
require: {
list: '?^listEditable',
transclude: 'listEditableTransclude'
}
};
}