Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 1 | import {AppConfig} from '../../config/app.config'; |
| 2 | |
| 3 | export interface IXosResourceService { |
| 4 | getResource(url: string): ng.resource.IResourceClass<any>; |
| 5 | } |
| 6 | |
| 7 | export class ModelRest implements IXosResourceService { |
| 8 | static $inject = ['$resource']; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 9 | |
| 10 | /** @ngInject */ |
| 11 | constructor( |
| 12 | private $resource: ng.resource.IResourceService |
| 13 | ) { |
| 14 | |
| 15 | } |
| 16 | |
| 17 | public getResource(url: string): ng.resource.IResourceClass<ng.resource.IResource<any>> { |
Matteo Scandolo | 0a8b02e | 2017-01-06 14:43:36 -0800 | [diff] [blame] | 18 | const resource: angular.resource.IResourceClass<any> = this.$resource(`${AppConfig.apiEndpoint}${url}/:id/`, {id: '@id'}, { |
| 19 | update: { method: 'PUT' } |
| 20 | }); |
| 21 | |
| 22 | resource.prototype.$save = function() { |
| 23 | if (this.id) { |
| 24 | return this.$update(); |
| 25 | } else { |
| 26 | return resource.save(this).$promise; |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | return resource; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 31 | } |
| 32 | } |