Skip to content

Instantly share code, notes, and snippets.

@karlhorky
Last active December 21, 2016 21:39
Show Gist options
  • Save karlhorky/a52f87c2dacfc4d8b875 to your computer and use it in GitHub Desktop.
Save karlhorky/a52f87c2dacfc4d8b875 to your computer and use it in GitHub Desktop.
Directive class extending with ECMAScript 6
class AutocompleteController {
constructor () {
'ngInject';
}
querySearch (query) {
return this.service.search(query);
}
selectedItemChange(item) {
this.item = item;
}
}
export default AutocompleteController;
class AutocompleteDirective {
constructor (directive) {
'ngInject';
this.directive = {
restrict: 'E',
scope: {
placeholder: '@'
},
controllerAs: 'ctrl',
bindToController: true
};
}
}
export default AutocompleteDirective;
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;
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;
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