-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathui.html
More file actions
214 lines (192 loc) · 7.15 KB
/
Copy pathui.html
File metadata and controls
214 lines (192 loc) · 7.15 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DxH - Layer2JSON</title>
<link href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css" rel="stylesheet">
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
</head>
<body>
<div id="app" class="container">
<div class="section">
<div v-if="successMessage" class="notification is-success">{{ successMessage }}</div>
<div v-if="errorMessage" class="notification is-danger">{{ errorMessage }}</div>
<!-- Upload Images Option -->
<div class="field">
<label class="checkbox">
<input type="checkbox" v-model="uploadImages"> Upload Images
</label>
</div>
<div v-if="uploadImages" class="field">
<label class="label">Image Upload Endpoint</label>
<div class="control">
<input class="input" type="url" v-model="imageUploadEndpoint" placeholder="https://your-server.com/upload">
</div>
</div>
<!-- Upload JSON Option -->
<div class="field">
<label class="checkbox">
<input type="checkbox" v-model="uploadJson"> Upload JSON File
</label>
</div>
<div v-if="uploadJson" class="field">
<label class="label">JSON Upload Endpoint</label>
<div class="control">
<input class="input" type="url" v-model="jsonUploadEndpoint"
placeholder="https://your-server.com/json-upload">
</div>
</div>
<div class="field">
<button class="button is-primary" @click="submitData" :disabled="loading">Submit</button>
</div>
</div>
</div>
<script>
const { createApp, ref } = Vue;
createApp({
setup () {
const uploadImages = ref(false);
const uploadJson = ref(false);
const imageUploadEndpoint = ref('');
const jsonUploadEndpoint = ref('');
const successMessage = ref('');
const errorMessage = ref('');
const loading = ref(false);
const images = ref([]);
const showError = (message) => {
errorMessage.value = message;
setTimeout(() => { errorMessage.value = ''; }, 3000);
};
const showSuccess = (message) => {
successMessage.value = message;
setTimeout(() => { successMessage.value = ''; }, 3000);
};
const uploadImage = async (uuid, imageBytes, endpoint) => {
try {
// Convert imageBytes to Blob
const imageBlob = new Blob([new Uint8Array(imageBytes)], { type: 'image/png' });
// Prepare form data
const formData = new FormData();
formData.append('uuid', uuid);
formData.append('image', imageBlob, 'image.png');
// Make fetch request
const response = await fetch(endpoint, { method: 'POST', body: formData });
// Handle response
if (!response.ok) {
const errorText = await response.text();
showError(`Image upload failed with status ${response.status}: ${errorText}`);
return null;
}
const data = await response.json();
return data.url; // URL for the uploaded image
} catch (error) {
showError(`Upload failed: ${error.message}`);
return null;
}
};
const uploadJSON = async (data, endpoint) => {
try {
const response = await fetch(endpoint, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(data),
});
if (response.ok) {
showSuccess('JSON file uploaded successfully!');
} else {
throw new Error('JSON upload failed: ' + response.statusText);
}
} catch (error) {
showError(error.message);
}
};
const downloadJSON = (data) => {
const blob = new Blob([JSON.stringify(data)], { type: 'application/json' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'dxh-layer2json.json';
document.body.appendChild(a);
a.click();
showSuccess('JSON file downloaded successfully!');
};
// Recursive function to upload images for each layer
async function processLayers (layers) {
for (const layer of layers) {
// Upload image if imageBytes exist
const image = images.value.find(img => img.id === layer.id);
if (image) {
const imageUrl = await uploadImage(layer.id, image.bytes, imageUploadEndpoint.value);
if (imageUrl) {
layer.imageUrl = imageUrl;
}
}
// If the layer has child layers, process them recursively
if (layer.layers && Array.isArray(layer.layers)) {
await processLayers(layer.layers);
}
}
};
const handlePluginMessage = async (data) => {
loading.value = true;
try {
if (uploadImages.value && imageUploadEndpoint.value) {
if (Array.isArray(data)) {
await processLayers(data);
} else if (data.layers && Array.isArray(data.layers)) {
await processLayers(data.layers);
}
}
if (uploadJson.value && jsonUploadEndpoint.value) {
await uploadJSON(data, jsonUploadEndpoint.value);
} else {
downloadJSON(data);
}
} catch (error) {
showError(error.message);
} finally {
loading.value = false;
parent.postMessage({ pluginMessage: { type: 'close' } }, '*');
}
};
const submitData = () => {
if (uploadImages.value && !imageUploadEndpoint.value) {
showError('Please enter the image upload endpoint');
return;
}
if (uploadJson.value && !jsonUploadEndpoint.value) {
showError('Please enter the JSON upload endpoint');
return;
}
successMessage.value = '';
errorMessage.value = '';
parent.postMessage({ pluginMessage: { type: 'generate' } }, '*');
};
window.addEventListener('message', async (event) => {
const message = event.data.pluginMessage;
if (message.type === 'image') {
console.log('Received image:', message.data ? message.data.id : null);
images.value.push(message.data);
}
if (message.type === 'layers') {
await handlePluginMessage(JSON.parse(message.data));
} else if (message.type === 'error') {
showError(message.data);
}
});
return {
uploadImages,
uploadJson,
imageUploadEndpoint,
jsonUploadEndpoint,
successMessage,
errorMessage,
submitData,
loading,
};
}
}).mount('#app');
</script>
</body>
</html>