Last active
December 21, 2016 21:39
-
-
Save karlhorky/a52f87c2dacfc4d8b875 to your computer and use it in GitHub Desktop.
Directive class extending with ECMAScript 6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AutocompleteController { | |
constructor () { | |
'ngInject'; | |
} | |
querySearch (query) { | |
return this.service.search(query); | |
} | |
selectedItemChange(item) { | |
this.item = item; | |
} | |
} | |
export default AutocompleteController; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AutocompleteDirective { | |
constructor (directive) { | |
'ngInject'; | |
this.directive = { | |
restrict: 'E', | |
scope: { | |
placeholder: '@' | |
}, | |
controllerAs: 'ctrl', | |
bindToController: true | |
}; | |
} | |
} | |
export default AutocompleteDirective; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import AutocompleteDirective from '../autocomplete.directive'; | |
import AutocompleteController from '../autocomplete.controller'; | |
class CompanyAutocompleteDirective extends AutocompleteDirective { | |
constructor () { | |
'ngInject'; | |
super(); | |
this.directive = angular.merge(this.directive, { | |
templateUrl: 'app/components/autocomplete/company/company.html', | |
controller : CompanyAutocompleteController, | |
scope : { | |
item : '=company' | |
}, | |
}); | |
return this.directive; | |
} | |
} | |
class CompanyAutocompleteController extends AutocompleteController { | |
constructor ($log, companyService) { | |
'ngInject'; | |
super(); | |
this.service = companyService; | |
} | |
} | |
export default CompanyAutocompleteDirective; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CompanyService { | |
constructor ($http, apiService) { | |
'ngInject'; | |
this.$http = $http; | |
this.$log = $log; | |
this.apiHost = `${apiService.url}/companies`; | |
} | |
search (query) { | |
return this.$http.get(`${this.apiHost}/search?q=${query}`) | |
.then((response) => { | |
return response.data; | |
}) | |
.catch((error) => { | |
this.$log.error(`XHR Failed for CompanyService.search\n${angular.toJson(error.data, true)}`); | |
}); | |
} | |
} | |
export default CompanyService; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import CompanyService from '../app/components/autocomplete/company/company.service'; | |
angular.module('app', ['ui.router', 'ngMaterial']) | |
.service('companyService', CompanyService) | |
.directive('companyAutocomplete', () => new CompanyAutocompleteDirective()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment