2
2
3
3
var _extends = Object . assign || function ( target ) { for ( var i = 1 ; i < arguments . length ; i ++ ) { var source = arguments [ i ] ; for ( var key in source ) { if ( Object . prototype . hasOwnProperty . call ( source , key ) ) { target [ key ] = source [ key ] ; } } } return target ; } ;
4
4
5
- var _createClass = function ( ) { function defineProperties ( target , props ) { for ( var i = 0 ; i < props . length ; i ++ ) { var descriptor = props [ i ] ; descriptor . enumerable = descriptor . enumerable || false ; descriptor . configurable = true ; if ( "value" in descriptor ) descriptor . writable = true ; Object . defineProperty ( target , descriptor . key , descriptor ) ; } } return function ( Constructor , protoProps , staticProps ) { if ( protoProps ) defineProperties ( Constructor . prototype , protoProps ) ; if ( staticProps ) defineProperties ( Constructor , staticProps ) ; return Constructor ; } ; } ( ) ;
6
-
7
5
var _errorHandler = require ( '../helpers/errorHandler' ) ;
8
6
9
7
var _errorHandler2 = _interopRequireDefault ( _errorHandler ) ;
10
8
11
9
function _interopRequireDefault ( obj ) { return obj && obj . __esModule ? obj : { default : obj } ; }
12
10
13
- function _classCallCheck ( instance , Constructor ) { if ( ! ( instance instanceof Constructor ) ) { throw new TypeError ( "Cannot call a class as a function" ) ; } }
14
-
15
- var Blog = function ( ) {
16
- function Blog ( ) {
17
- var api = arguments . length > 0 && arguments [ 0 ] !== undefined ? arguments [ 0 ] : null ;
18
-
19
- _classCallCheck ( this , Blog ) ;
11
+ var Blog = function Blog ( ) {
12
+ var api = arguments . length > 0 && arguments [ 0 ] !== undefined ? arguments [ 0 ] : null ;
20
13
21
- if ( api === null ) throw new Error ( 'Request instance must be provided on constructor.' ) ;
22
14
23
- this . api = api ;
24
- }
15
+ if ( api === null ) throw new Error ( 'Request instance must be provided on constructor.' ) ;
25
16
26
- _createClass ( Blog , [ {
27
- key : 'getAllBlogs' ,
28
- value : function getAllBlogs ( params ) {
17
+ return {
18
+ getAllBlogs : function getAllBlogs ( params ) {
29
19
30
- return this . api . get ( 'content/api/v2/blogs' , _extends ( { } , params ) ) . then ( function ( response ) {
20
+ return api . get ( 'content/api/v2/blogs' , _extends ( { } , params ) ) . then ( function ( response ) {
31
21
return response ;
32
22
} ) . catch ( function ( error ) {
33
23
return ( 0 , _errorHandler2 . default ) ( error ) ;
34
24
} ) ;
35
- }
36
- } , {
37
- key : 'getPosts' ,
38
- value : function getPosts ( params ) {
25
+ } ,
26
+ getPosts : function getPosts ( params ) {
39
27
40
- return this . api . get ( 'content/api/v2/blog-posts' , _extends ( { } , params ) ) . then ( function ( response ) {
28
+ return api . get ( 'content/api/v2/blog-posts' , _extends ( { } , params ) ) . then ( function ( response ) {
41
29
return response ;
42
30
} ) . catch ( function ( error ) {
43
31
return ( 0 , _errorHandler2 . default ) ( error ) ;
44
32
} ) ;
45
- }
46
- } , {
47
- key : 'getPostById' ,
48
- value : function getPostById ( postId ) {
33
+ } ,
34
+ getPostById : function getPostById ( postId ) {
49
35
50
- return this . api . get ( 'content/api/v2/blog-posts/' + postId ) . then ( function ( response ) {
36
+ return api . get ( 'content/api/v2/blog-posts/' + postId ) . then ( function ( response ) {
51
37
return response ;
52
38
} ) . catch ( function ( error ) {
53
39
return ( 0 , _errorHandler2 . default ) ( error ) ;
54
40
} ) ;
55
41
}
56
- } ] ) ;
57
-
58
- return Blog ;
59
- } ( ) ;
42
+ } ;
43
+ } ;
60
44
61
45
module . exports = Blog ;
0 commit comments