mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 15:07:13 +08:00
Fixed #138 - radio and checkbox tap/click
This commit is contained in:
7
dist/css/ionic.css
vendored
7
dist/css/ionic.css
vendored
@ -4884,6 +4884,13 @@ a.button {
|
||||
-webkit-animation: fadeIn 0.3s;
|
||||
animation: fadeIn 0.3s; }
|
||||
|
||||
.fade-in-not-out.ng-enter, .fade-in-not-out .ng-enter {
|
||||
position: relative;
|
||||
-webkit-animation: fadeIn 0.3s;
|
||||
animation: fadeIn 0.3s; }
|
||||
.fade-in-not-out.ng-leave, .fade-in-not-out .ng-leave {
|
||||
display: none; }
|
||||
|
||||
@-moz-keyframes spin {
|
||||
100% {
|
||||
-moz-transform: rotate(360deg); } }
|
||||
|
||||
71
dist/js/ionic-angular.js
vendored
71
dist/js/ionic-angular.js
vendored
@ -23165,13 +23165,15 @@ angular.module('ionic.service.modal', ['ionic.service.templateLoad', 'ngAnimate'
|
||||
},
|
||||
// Show the modal
|
||||
show: function() {
|
||||
var _this = this;
|
||||
var element = angular.element(this.el);
|
||||
if(!element.parent().length) {
|
||||
$animate.enter(element, angular.element($document[0].body));
|
||||
$animate.enter(element, angular.element($document[0].body), null, function() {
|
||||
ionic.views.Modal.prototype.show.call(_this);
|
||||
});
|
||||
}
|
||||
$animate.addClass(element, this.animation);
|
||||
|
||||
ionic.views.Modal.prototype.show.call(this);
|
||||
$animate.addClass(element, this.animation, function() {
|
||||
});
|
||||
},
|
||||
// Hide the modal
|
||||
hide: function() {
|
||||
@ -23542,36 +23544,49 @@ angular.module('ionic.ui.checkbox', [])
|
||||
restrict: 'E',
|
||||
replace: true,
|
||||
require: '?ngModel',
|
||||
scope: true,
|
||||
template: '<div class="checkbox"><input type="checkbox"><div class="handle"></div></div>',
|
||||
scope: {},
|
||||
template: '<label class="checkbox"><input type="checkbox"></label>',
|
||||
|
||||
|
||||
link: function($scope, $element, $attr, ngModel) {
|
||||
var checkbox, handle;
|
||||
var checkbox;
|
||||
|
||||
if(!ngModel) { return; }
|
||||
|
||||
checkbox = $element.children().eq(0);
|
||||
handle = $element.children().eq(1);
|
||||
|
||||
if(!checkbox.length || !handle.length) { return; }
|
||||
if(!checkbox.length) { return; }
|
||||
|
||||
$scope.checkbox = new ionic.views.Checkbox({
|
||||
el: $element[0],
|
||||
checkbox: checkbox[0],
|
||||
handle: handle[0]
|
||||
});
|
||||
|
||||
$element.bind('click', function(e) {
|
||||
$scope.checkbox.tap(e);
|
||||
var tapHandler = function(e) {
|
||||
checkbox[0].checked = !checkbox[0].checked;
|
||||
$scope.$apply(function() {
|
||||
ngModel.$setViewValue(checkbox[0].checked);
|
||||
});
|
||||
e.preventDefault();
|
||||
};
|
||||
|
||||
var clickHandler = function(e) {
|
||||
checkbox[0].checked = !checkbox[0].checked;
|
||||
$scope.$apply(function() {
|
||||
ngModel.$setViewValue(checkbox[0].checked);
|
||||
});
|
||||
};
|
||||
|
||||
$scope.$on('$destroy', function() {
|
||||
$element.unbind('tap', tapHandler);
|
||||
$element.unbind('click', clickHandler);
|
||||
});
|
||||
|
||||
if(ngModel) {
|
||||
$element.bind('tap', tapHandler);
|
||||
$element.bind('click', clickHandler);
|
||||
|
||||
ngModel.$render = function() {
|
||||
$scope.checkbox.val(ngModel.$viewValue);
|
||||
console.log('checkbox redern', ngModel.$viewValue);
|
||||
checkbox[0].checked = ngModel.$viewValue;
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
@ -24186,11 +24201,24 @@ angular.module('ionic.ui.radio', [])
|
||||
|
||||
if(!radio.length) { return; }
|
||||
|
||||
radio.bind('click', function(e) {
|
||||
$scope.$apply(function() {
|
||||
var tapHandler = function(e) {
|
||||
radio[0].checked = true;
|
||||
ngModel.$setViewValue($scope.$eval($attr.ngValue));
|
||||
e.preventDefault();
|
||||
};
|
||||
|
||||
var clickHandler = function(e) {
|
||||
ngModel.$setViewValue($scope.$eval($attr.ngValue));
|
||||
};
|
||||
|
||||
$scope.$on('$destroy', function() {
|
||||
$element.unbind('tap', tapHandler);
|
||||
$element.unbind('click', clickHandler);
|
||||
});
|
||||
});
|
||||
|
||||
if(ngModel) {
|
||||
$element.bind('tap', tapHandler);
|
||||
$element.bind('click', clickHandler);
|
||||
|
||||
ngModel.$render = function() {
|
||||
var val = $scope.$eval($attr.ngValue);
|
||||
@ -24201,6 +24229,7 @@ angular.module('ionic.ui.radio', [])
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
92
dist/js/ionic.js
vendored
92
dist/js/ionic.js
vendored
@ -1769,7 +1769,7 @@ window.ionic = {
|
||||
ionic.Platform.detect();
|
||||
})(window.ionic);
|
||||
;
|
||||
(function(ionic) {
|
||||
(function(window, document, ionic) {
|
||||
'use strict';
|
||||
|
||||
// From the man himself, Mr. Paul Irish.
|
||||
@ -1799,7 +1799,71 @@ window.ionic = {
|
||||
}
|
||||
})();
|
||||
|
||||
})(window.ionic);
|
||||
|
||||
// polyfill use to simulate native "tap"
|
||||
function inputTapPolyfill(ele, e) {
|
||||
if(ele.type === "radio" || ele.type === "checkbox") {
|
||||
console.log('RADIOPOLY');
|
||||
ele.checked = !ele.checked;
|
||||
} else if(ele.type === "submit" || ele.type === "button") {
|
||||
ele.click();
|
||||
} else {
|
||||
ele.focus();
|
||||
}
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
||||
function tapPolyfill(e) {
|
||||
// if the source event wasn't from a touch event then don't use this polyfill
|
||||
if(!e.gesture || e.gesture.pointerType !== "touch" || !e.gesture.srcEvent) return;
|
||||
|
||||
if(e.defaultPrevented) {
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
||||
e = e.gesture.srcEvent; // evaluate the actual source event, not the created event by gestures.js
|
||||
|
||||
var ele = e.target;
|
||||
|
||||
while(ele) {
|
||||
if( ele.tagName === "INPUT" || ele.tagName === "TEXTAREA" || ele.tagName === "SELECT" ) {
|
||||
return inputTapPolyfill(ele, e);
|
||||
} else if( ele.tagName === "LABEL" ) {
|
||||
if(ele.control) {
|
||||
return inputTapPolyfill(ele.control, e);
|
||||
}
|
||||
}
|
||||
/* Let ng-click handle this
|
||||
else if( ele.tagName === "A" || ele.tagName === "BUTTON" ) {
|
||||
ele.click();
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
*/
|
||||
ele = ele.parentElement;
|
||||
}
|
||||
|
||||
// they didn't tap one of the above elements
|
||||
// if the currently active element is an input, and they tapped outside
|
||||
// of the current input, then unset its focus (blur) so the keyboard goes away
|
||||
var activeElement = document.activeElement;
|
||||
if(activeElement && (activeElement.tagName === "INPUT" || activeElement.tagName === "TEXTAREA" || activeElement.tagName === "SELECT")) {
|
||||
activeElement.blur();
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// global tap event listener polyfill for HTML elements that were "tapped" by the user
|
||||
ionic.on("tap", tapPolyfill, window);
|
||||
|
||||
})(this, document, ionic);
|
||||
;
|
||||
(function(ionic) {
|
||||
|
||||
@ -2779,30 +2843,6 @@ window.ionic = {
|
||||
}
|
||||
});
|
||||
|
||||
})(ionic);
|
||||
;
|
||||
(function(ionic) {
|
||||
'use strict';
|
||||
|
||||
ionic.views.Checkbox = ionic.views.View.inherit({
|
||||
initialize: function(opts) {
|
||||
this.el = opts.el;
|
||||
this.checkbox = opts.checkbox;
|
||||
this.handle = opts.handle;
|
||||
},
|
||||
|
||||
tap: function(e) {
|
||||
this.val( !this.checkbox.checked );
|
||||
},
|
||||
|
||||
val: function(value) {
|
||||
if(value === true || value === false) {
|
||||
this.checkbox.checked = value;
|
||||
}
|
||||
return this.checkbox.checked;
|
||||
}
|
||||
});
|
||||
|
||||
})(ionic);
|
||||
;
|
||||
(function(ionic) {
|
||||
|
||||
41
js/ext/angular/src/directive/ionicCheckbox.js
vendored
41
js/ext/angular/src/directive/ionicCheckbox.js
vendored
@ -9,36 +9,49 @@ angular.module('ionic.ui.checkbox', [])
|
||||
restrict: 'E',
|
||||
replace: true,
|
||||
require: '?ngModel',
|
||||
scope: true,
|
||||
template: '<div class="checkbox"><input type="checkbox"><div class="handle"></div></div>',
|
||||
scope: {},
|
||||
template: '<label class="checkbox"><input type="checkbox"></label>',
|
||||
|
||||
|
||||
link: function($scope, $element, $attr, ngModel) {
|
||||
var checkbox, handle;
|
||||
var checkbox;
|
||||
|
||||
if(!ngModel) { return; }
|
||||
|
||||
checkbox = $element.children().eq(0);
|
||||
handle = $element.children().eq(1);
|
||||
|
||||
if(!checkbox.length || !handle.length) { return; }
|
||||
if(!checkbox.length) { return; }
|
||||
|
||||
$scope.checkbox = new ionic.views.Checkbox({
|
||||
el: $element[0],
|
||||
checkbox: checkbox[0],
|
||||
handle: handle[0]
|
||||
});
|
||||
|
||||
$element.bind('click', function(e) {
|
||||
$scope.checkbox.tap(e);
|
||||
var tapHandler = function(e) {
|
||||
checkbox[0].checked = !checkbox[0].checked;
|
||||
$scope.$apply(function() {
|
||||
ngModel.$setViewValue(checkbox[0].checked);
|
||||
});
|
||||
e.preventDefault();
|
||||
};
|
||||
|
||||
var clickHandler = function(e) {
|
||||
checkbox[0].checked = !checkbox[0].checked;
|
||||
$scope.$apply(function() {
|
||||
ngModel.$setViewValue(checkbox[0].checked);
|
||||
});
|
||||
};
|
||||
|
||||
$scope.$on('$destroy', function() {
|
||||
$element.unbind('tap', tapHandler);
|
||||
$element.unbind('click', clickHandler);
|
||||
});
|
||||
|
||||
if(ngModel) {
|
||||
$element.bind('tap', tapHandler);
|
||||
$element.bind('click', clickHandler);
|
||||
|
||||
ngModel.$render = function() {
|
||||
$scope.checkbox.val(ngModel.$viewValue);
|
||||
console.log('checkbox redern', ngModel.$viewValue);
|
||||
checkbox[0].checked = ngModel.$viewValue;
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
20
js/ext/angular/src/directive/ionicRadio.js
vendored
20
js/ext/angular/src/directive/ionicRadio.js
vendored
@ -30,11 +30,24 @@ angular.module('ionic.ui.radio', [])
|
||||
|
||||
if(!radio.length) { return; }
|
||||
|
||||
radio.bind('click', function(e) {
|
||||
$scope.$apply(function() {
|
||||
var tapHandler = function(e) {
|
||||
radio[0].checked = true;
|
||||
ngModel.$setViewValue($scope.$eval($attr.ngValue));
|
||||
e.preventDefault();
|
||||
};
|
||||
|
||||
var clickHandler = function(e) {
|
||||
ngModel.$setViewValue($scope.$eval($attr.ngValue));
|
||||
};
|
||||
|
||||
$scope.$on('$destroy', function() {
|
||||
$element.unbind('tap', tapHandler);
|
||||
$element.unbind('click', clickHandler);
|
||||
});
|
||||
});
|
||||
|
||||
if(ngModel) {
|
||||
$element.bind('tap', tapHandler);
|
||||
$element.bind('click', clickHandler);
|
||||
|
||||
ngModel.$render = function() {
|
||||
var val = $scope.$eval($attr.ngValue);
|
||||
@ -45,6 +58,7 @@ angular.module('ionic.ui.radio', [])
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
|
||||
10
js/ext/angular/src/service/ionicModal.js
vendored
10
js/ext/angular/src/service/ionicModal.js
vendored
@ -9,13 +9,15 @@ angular.module('ionic.service.modal', ['ionic.service.templateLoad', 'ngAnimate'
|
||||
},
|
||||
// Show the modal
|
||||
show: function() {
|
||||
var _this = this;
|
||||
var element = angular.element(this.el);
|
||||
if(!element.parent().length) {
|
||||
$animate.enter(element, angular.element($document[0].body));
|
||||
$animate.enter(element, angular.element($document[0].body), null, function() {
|
||||
ionic.views.Modal.prototype.show.call(_this);
|
||||
});
|
||||
}
|
||||
$animate.addClass(element, this.animation);
|
||||
|
||||
ionic.views.Modal.prototype.show.call(this);
|
||||
$animate.addClass(element, this.animation, function() {
|
||||
});
|
||||
},
|
||||
// Hide the modal
|
||||
hide: function() {
|
||||
|
||||
@ -9,12 +9,14 @@
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<content has-header="true" ng-controller="TestCtrl" class="reveal-animation">
|
||||
<div ng-controller="TestCtrl">
|
||||
<content has-header="true" class="reveal-animation">
|
||||
<p><checkbox ng-model="data.isLovely"></checkbox></p>
|
||||
<button type="submit" class="button button-danger" ng-click="setToTrue()">Set to true</button>
|
||||
<button type="submit" class="button button-danger" ng-click="setToFalse()">Set to false</button>
|
||||
<button type="submit" class="button button-danger" ng-click="getValue()">Get Value</button>
|
||||
</content>
|
||||
</div>
|
||||
|
||||
<script src="../../../../dist/js/ionic.js"></script>
|
||||
<script src="../../../../dist/js/ionic-angular.js"></script>
|
||||
|
||||
35
js/ext/angular/test/input.html
Normal file
35
js/ext/angular/test/input.html
Normal file
@ -0,0 +1,35 @@
|
||||
<html ng-app="navTest">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Checkbox</title>
|
||||
|
||||
<!-- Sets initial viewport load and disables zooming -->
|
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
<link rel="stylesheet" href="../../../../dist/css/ionic.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<content has-header="true" class="reveal-animation">
|
||||
<div class="list">
|
||||
<label class="item item-input">
|
||||
<span class="input-label">First Name</span>
|
||||
<input type="text" placeholder="John">
|
||||
</label>
|
||||
<label class="item item-input">
|
||||
<span class="input-label">Last Name</span>
|
||||
<input type="text" placeholder="Suhr">
|
||||
</label>
|
||||
</div>
|
||||
</content>
|
||||
</div>
|
||||
|
||||
<script src="../../../../dist/js/ionic.js"></script>
|
||||
<script src="../../../../dist/js/ionic-angular.js"></script>
|
||||
<script>
|
||||
angular.module('navTest', ['ionic']);
|
||||
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
(function(ionic) {
|
||||
(function(window, document, ionic) {
|
||||
'use strict';
|
||||
|
||||
// From the man himself, Mr. Paul Irish.
|
||||
@ -28,4 +28,68 @@
|
||||
}
|
||||
})();
|
||||
|
||||
})(window.ionic);
|
||||
|
||||
// polyfill use to simulate native "tap"
|
||||
function inputTapPolyfill(ele, e) {
|
||||
if(ele.type === "radio" || ele.type === "checkbox") {
|
||||
console.log('RADIOPOLY');
|
||||
ele.checked = !ele.checked;
|
||||
} else if(ele.type === "submit" || ele.type === "button") {
|
||||
ele.click();
|
||||
} else {
|
||||
ele.focus();
|
||||
}
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
||||
function tapPolyfill(e) {
|
||||
// if the source event wasn't from a touch event then don't use this polyfill
|
||||
if(!e.gesture || e.gesture.pointerType !== "touch" || !e.gesture.srcEvent) return;
|
||||
|
||||
if(e.defaultPrevented) {
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
|
||||
e = e.gesture.srcEvent; // evaluate the actual source event, not the created event by gestures.js
|
||||
|
||||
var ele = e.target;
|
||||
|
||||
while(ele) {
|
||||
if( ele.tagName === "INPUT" || ele.tagName === "TEXTAREA" || ele.tagName === "SELECT" ) {
|
||||
return inputTapPolyfill(ele, e);
|
||||
} else if( ele.tagName === "LABEL" ) {
|
||||
if(ele.control) {
|
||||
return inputTapPolyfill(ele.control, e);
|
||||
}
|
||||
}
|
||||
/* Let ng-click handle this
|
||||
else if( ele.tagName === "A" || ele.tagName === "BUTTON" ) {
|
||||
ele.click();
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
*/
|
||||
ele = ele.parentElement;
|
||||
}
|
||||
|
||||
// they didn't tap one of the above elements
|
||||
// if the currently active element is an input, and they tapped outside
|
||||
// of the current input, then unset its focus (blur) so the keyboard goes away
|
||||
var activeElement = document.activeElement;
|
||||
if(activeElement && (activeElement.tagName === "INPUT" || activeElement.tagName === "TEXTAREA" || activeElement.tagName === "SELECT")) {
|
||||
activeElement.blur();
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// global tap event listener polyfill for HTML elements that were "tapped" by the user
|
||||
ionic.on("tap", tapPolyfill, window);
|
||||
|
||||
})(this, document, ionic);
|
||||
|
||||
@ -1,23 +0,0 @@
|
||||
(function(ionic) {
|
||||
'use strict';
|
||||
|
||||
ionic.views.Checkbox = ionic.views.View.inherit({
|
||||
initialize: function(opts) {
|
||||
this.el = opts.el;
|
||||
this.checkbox = opts.checkbox;
|
||||
this.handle = opts.handle;
|
||||
},
|
||||
|
||||
tap: function(e) {
|
||||
this.val( !this.checkbox.checked );
|
||||
},
|
||||
|
||||
val: function(value) {
|
||||
if(value === true || value === false) {
|
||||
this.checkbox.checked = value;
|
||||
}
|
||||
return this.checkbox.checked;
|
||||
}
|
||||
});
|
||||
|
||||
})(ionic);
|
||||
@ -198,6 +198,17 @@ $slide-in-up-function: cubic-bezier(.1, .7, .1, 1);
|
||||
}
|
||||
}
|
||||
|
||||
.fade-in-not-out {
|
||||
&.ng-enter, .ng-enter {
|
||||
position: relative;
|
||||
-webkit-animation: fadeIn 0.3s;
|
||||
animation: fadeIn 0.3s;
|
||||
}
|
||||
&.ng-leave, .ng-leave {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@-moz-keyframes spin {
|
||||
100% { -moz-transform: rotate(360deg); }
|
||||
}
|
||||
@ -210,3 +221,4 @@ $slide-in-up-function: cubic-bezier(.1, .7, .1, 1);
|
||||
transform:rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user