forked from contentstack/contentstack-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (55 loc) · 1.62 KB
/
index.js
File metadata and controls
62 lines (55 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
'use strict'
const ContentstackDemo = require('./contentstack-demo.js')
const Demo = new ContentstackDemo({ 'api_key': 'bltsomething123', 'access_token': 'bltsomething123', 'environment': 'development' })
//get all the entries
Demo
.getEntries('source')
.spread(function(result) {
// result object with entries
console.info("Result: ", result)
})
.catch(function(err) {
// error of get all entries
console.error("Find Error :", err)
})
// get single entry
Demo
.getEntry('source', 'bltsomething123')
.then(function(result) {
// result object with entry
console.info("Result2 : ", JSON.stringify(result))
})
.catch(function(err) {
// error of get entry
console.error("Fetch Error :", err)
})
// get single asset
Demo
.getAsset('bltsomething123')
.then(function(result) {
// result object with entry
console.info("Result2 : ", result)
})
.catch(function(err) {
// error of get entry
console.error("Fetch Error :", err)
})
// get all assets
Demo
.getAssets()
.spread(function(result) {
// result object with entry
console.info("Result2 : ", result)
for (let i = 0, _i = result.length; i < _i; i++) {
// Image optimization
const imgUrl = Demo.Stack.imageTransform(result[i]['url'], {
quality: 50,
format: 'jpg'
})
console.log("Image URL : ", imgUrl)
}
})
.catch(function(err) {
// error of get entry
console.error("getAssets Fetch Error :", err)
})