angular-material 是 AngularJS 的一个子项目,用来提供实现了 Material Design 风格的组件。
Material 提供了大量的android 风格的UI组件,使用 angularjs + Material 可以很容易开发出风格接近原生 Android 5.x 的web界面。但在实际使用的过程中并不总是能满足我们的需求。开发一个组件就成了我们必须学习的内容。
下面是一个组件的实现:
代码
directive('mdSearchInput',[function(){
return{
restrict:'E',controller:['$scope','$timeout',function($scope,$timeout){
var tsk=null;
$scope.delay=1000;
$scope.on_changed=function(){
if(null !== tsk) {$timeout.cancel(tsk);} //去掉前一个任务
tsk = $timeout(function(){
$timeout.cancel(tsk);tsk=null;
$scope.onSearch()($scope.searchText);
},$scope.delay);
};$scope.on_clear=function(){
var tsk=null;$scope.searchText='';
tsk=$timeout(function(){
$timeout.cancel(tsk);tsk=null;
$scope.onSearch()($scope.searchText);
},100);
}
}],scope:{
inputName: '@mdInputName',searchText: '=?mdSearchText',onSearch: '&?mdSearch',placeholder: '@placeholder',delay: '@delay'
},template:'\
\
',link:function($scope,$element){
}
};
}]);