-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathUploadDownloadTextFile.json
More file actions
215 lines (215 loc) · 7.75 KB
/
UploadDownloadTextFile.json
File metadata and controls
215 lines (215 loc) · 7.75 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
215
{
"author": "",
"category": "Network",
"extensionNamespace": "",
"fullName": "Upload/Download files",
"gdevelopVersion": ">=5.5.222",
"helpPath": "https://developer.mozilla.org/en-US/docs/Web/API/File_API/Using_files_from_web_applications",
"iconUrl": "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0ibWRpLXVwbG9hZCIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGQ9Ik05LDE2VjEwSDVMMTIsM0wxOSwxMEgxNVYxNkg5TTUsMjBWMThIMTlWMjBINVoiIC8+PC9zdmc+",
"name": "UploadDownloadTextFile",
"previewIconUrl": "https://asset-resources.gdevelop.io/public-resources/Icons/16a8e2514d1c9a57f65f506bb7a420bf63e53dc56c58dfceff63178893031c69_upload.svg",
"shortDescription": "Allows users to upload/download text content to a filename and vice versa. ",
"version": "2.0.0",
"description": [
"Allows users to upload and download text files (JSON or plain text).",
"",
"## Usage",
"",
"**Download a file:**",
"```",
"Download [file type] with filename [name], containing [text content]",
"```",
"",
"**Upload a file:**",
"```",
"Upload a [file type] to text input [variable], with ID [unique ID]",
"```",
"",
"Then check if upload finished:",
"```",
"Uploading text file with id [unique ID] finished?",
"```",
"",
"## Example",
"",
"To save game data, use the download action with your filename and JSON content. To load it back, use the upload action with a unique ID, then wait for the upload finished condition before reading the variable."
],
"origin": {
"identifier": "UploadDownloadTextFile",
"name": "gdevelop-extension-store"
},
"tags": [
"download",
"upload",
"text",
"file",
"browser",
"dom apis"
],
"authorIds": [
"rotBq28wITdtfsrE7McHQri4k2w2",
"D7erWGZ1oEMfqC61eTysriJsrIx2"
],
"dependencies": [],
"globalVariables": [],
"sceneVariables": [],
"eventsFunctions": [
{
"description": "Download file with text content.",
"fullName": "Download file with text content",
"functionType": "Action",
"name": "DownloadTextFile",
"sentence": "Download _PARAM3_ with filename _PARAM1_, containing __PARAM2_",
"events": [
{
"type": "BuiltinCommonInstructions::JsCode",
"inlineCode": [
"function DownloadTextContent(filename, mimeType,content) {",
" var link = document.createElement('a')",
" var blob = new Blob([content], {type: mimeType})",
" var url = URL.createObjectURL(blob);",
"",
" link.setAttribute('href', url);",
" link.setAttribute('download', filename);",
" link.click();",
" link.remove();",
"}",
"",
"const FileName = eventsFunctionContext.getArgument(\"FileName\");",
"const TextContent = eventsFunctionContext.getArgument(\"TextContent\");",
"",
"DownloadTextContent(FileName, eventsFunctionContext.getArgument(\"filetype\"), TextContent);"
],
"parameterObjects": "",
"useStrict": true,
"eventsSheetExpanded": true
}
],
"parameters": [
{
"description": "FileName",
"name": "FileName",
"type": "string"
},
{
"description": "TextContent",
"name": "TextContent",
"type": "string"
},
{
"description": "Type",
"name": "filetype",
"supplementaryInformation": "[\"application/json\",\"text/plain\"]",
"type": "stringWithSelector"
}
],
"objectGroups": []
},
{
"description": "Upload a text file to text input.",
"fullName": "Upload a text file to text input",
"functionType": "Action",
"name": "UploadTextFile",
"sentence": "Upload a _PARAM2_ to text input _PARAM1_, with the following ID _PARAM3_",
"events": [
{
"type": "BuiltinCommonInstructions::JsCode",
"inlineCode": [
"// --- Get Arguments ---",
"const allowedFileTypes = [eventsFunctionContext.getArgument(\"filetype\")];",
"const SceneVariable = eventsFunctionContext.getArgument(\"Variable\");",
"const transactionID = eventsFunctionContext.getArgument(\"ID\");",
"",
"// --- Setup Input ---",
"const InputElement = document.createElement('input');",
"InputElement.type = \"file\";",
"InputElement.addEventListener(\"change\", handleFiles, false);",
"InputElement.click();",
"",
"// --- Setup Status Variable ---",
"const Uploading = runtimeScene.getVariables().get(\"__UploadDownloadTextFile\");",
"// Reset status and clear old ID",
"Uploading.fromJSObject({Uploading:false, ID:transactionID}); ",
"",
"// --- Handle File ---",
"async function handleFiles() {",
" const files = this.files;",
" ",
" if (!files.length) {",
" SceneVariable.setString(\"No Files Selected!\");",
" } else if(!allowedFileTypes.includes(files[0].type)) {",
" SceneVariable.setString(\"Please choose text files only.\");",
" } else {",
" SceneVariable.setString(await files[0].text());",
" }",
" Uploading.fromJSObject({Uploading:true, ID:transactionID}); ",
" InputElement.remove();",
"}"
],
"parameterObjects": "TextInput",
"useStrict": true,
"eventsSheetExpanded": true
}
],
"parameters": [
{
"description": "Variable",
"name": "Variable",
"type": "variable"
},
{
"description": "Type",
"name": "filetype",
"supplementaryInformation": "[\"application/json\",\"text/plain\"]",
"type": "stringWithSelector"
},
{
"description": "Upload ID",
"name": "ID",
"supplementaryInformation": "sceneID",
"type": "identifier"
}
],
"objectGroups": []
},
{
"description": "Uploading text file finished.",
"fullName": "Uploading text file finished?",
"functionType": "Condition",
"name": "UploadFinished",
"sentence": "Uploading text file with id _PARAM1_ finished?",
"events": [
{
"type": "BuiltinCommonInstructions::JsCode",
"inlineCode": [
"const Uploading = runtimeScene.getVariables().get(\"__UploadDownloadTextFile\");",
"const ID = eventsFunctionContext.getArgument(\"ID\");",
"const upload = Uploading.toJSObject();",
"",
"console.log(upload)",
"",
"if (upload.Uploading && upload.ID === ID) { // Use strict equality (===)",
" eventsFunctionContext.returnValue = true;",
"} else {",
" eventsFunctionContext.returnValue = false;",
"}"
],
"parameterObjects": "",
"useStrict": true,
"eventsSheetExpanded": false
}
],
"parameters": [
{
"description": "Upload ID",
"name": "ID",
"supplementaryInformation": "sceneID",
"type": "identifier"
}
],
"objectGroups": []
}
],
"eventsBasedBehaviors": [],
"eventsBasedObjects": []
}