-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
84 lines (77 loc) · 2.25 KB
/
Copy pathindex.js
File metadata and controls
84 lines (77 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
const api = pitcher.useAdmin()
let instanceEditor = null
let instanceId = ''
let env = {}
async function getData(instanceId, storeName, token) {
const getUrl = `/api/v1/appsdb/stores/${storeName}/instances/${instanceId}/globals/entries/json/`
try {
const response = await fetch(getUrl, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`,
},
})
if (!response.ok) {
throw new Error(`Error fetching data: ${response.statusText}`)
}
return (await response.json()) || null
} catch (error) {
console.error('Error:', error.message)
return null
}
}
async function updateData(instanceId, storeName, token, data) {
const postUrl = `/api/v1/appsdb/stores/${storeName}/instances/${instanceId}/globals/entries/json/`
try {
const postResponse = await fetch(postUrl, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`,
},
body: JSON.stringify({ value: data }),
})
if (!postResponse.ok) {
throw new Error(`Error updating data: ${postResponse.statusText}`)
}
console.log('Update successful:', await postResponse.json())
} catch (error) {
console.error('Error updating data:', error.message)
}
}
document.addEventListener('DOMContentLoaded', function () {
const instanceContainer = document.getElementById('instance-json-editor')
instanceEditor = new JSONEditor(instanceContainer, {})
api.getEnv().then(function (result) {
env = result
instanceId = env.pitcher.instance.id
getData(
env.pitcher.instance.id,
'datapoc',
env.pitcher.access_token,
).then(function (data) {
var jsonResponse = {}
if (data?.value) {
try {
jsonResponse = data.value
} catch (e) {
console.error('Error parsing JSON:', e)
}
}
instanceEditor.set(jsonResponse)
})
})
// Save instance settings
document
.getElementById('save-instance-settings')
.addEventListener('click', function () {
const updatedJson = instanceEditor.get()
updateData(
env.pitcher.instance.id,
'datapoc',
env.pitcher.access_token,
updatedJson
);
});
})