mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
50 lines
1.9 KiB
JavaScript
50 lines
1.9 KiB
JavaScript
/*
|
|
* We don't document the ionActionSheet directive, we instead document
|
|
* the $ionicActionSheet service
|
|
*/
|
|
IonicModule
|
|
.directive('ionActionSheet', ['$document', function($document) {
|
|
return {
|
|
restrict: 'E',
|
|
scope: true,
|
|
replace: true,
|
|
link: function($scope, $element) {
|
|
|
|
var keyUp = function(e) {
|
|
if (e.which == 27) {
|
|
$scope.cancel();
|
|
$scope.$apply();
|
|
}
|
|
};
|
|
|
|
var backdropClick = function(e) {
|
|
if (e.target == $element[0]) {
|
|
$scope.cancel();
|
|
$scope.$apply();
|
|
}
|
|
};
|
|
$scope.$on('$destroy', function() {
|
|
$element.remove();
|
|
$document.unbind('keyup', keyUp);
|
|
});
|
|
|
|
$document.bind('keyup', keyUp);
|
|
$element.bind('click', backdropClick);
|
|
},
|
|
template: '<div class="action-sheet-backdrop">' +
|
|
'<div class="action-sheet-wrapper">' +
|
|
'<div class="action-sheet" ng-class="{\'action-sheet-has-icons\': $actionSheetHasIcon}">' +
|
|
'<div class="action-sheet-group action-sheet-options">' +
|
|
'<div class="action-sheet-title" ng-if="titleText" ng-bind-html="titleText"></div>' +
|
|
'<button class="button action-sheet-option" ng-click="buttonClicked($index)" ng-repeat="b in buttons" ng-bind-html="b.text"></button>' +
|
|
'<button class="button destructive action-sheet-destructive" ng-if="destructiveText" ng-click="destructiveButtonClicked()" ng-bind-html="destructiveText"></button>' +
|
|
'</div>' +
|
|
'<div class="action-sheet-group action-sheet-cancel" ng-if="cancelText">' +
|
|
'<button class="button" ng-click="cancel()" ng-bind-html="cancelText"></button>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>' +
|
|
'</div>'
|
|
};
|
|
}]);
|