-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsgfd.cli.js
433 lines (421 loc) · 15.4 KB
/
sgfd.cli.js
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
Sgfd = {};
/**
* Client used to create / generate files in Sgfd structure
*/
Sgfd.Cli = {
/**
* Templates os Files to generate
*/
templates: {
/**
* Configuration file template generator
*
* -- Identation is very important! Don't change it! --
*/
conf: function (name) {
return 'var appConfig = {\n\
front: {},\n\
back: {},\n\
conf: {\n\
appName: \'' + name + '\',\n\
dependencies: [\n\
// Your needed libs locations\n\
],\n\
bootstrap: false\n\
}\n\
};';
},
/**
* TODO: dataMappings script template
*/
dataMappings: '// The mappings to database goes here',
/**
* TODO: main script template
*/
main: '// First script to run when app is fully loaded\n\
document.body.innerHTML = \'Hello world!\';',
/**
* Index page template
*
* -- Identation is very important! Don't change it! --
*/
index: function (sgfdPath) {
return '<!DOCTYPE html>\n\
<html lang="en">\n\
<head>\n\
<meta charset="UTF-8">\n\
</head>\n\
<body>\n\
<script type="text/javascript" src="' + sgfdPath + '"></script>\n\
<script type="text/javascript">\n\
// Loads all needed things to run app. It need \'sgfd.js\' loaded to work\n\
new Sgfd(\'conf.js\').load();\n\
</script>\n\
</body>\n\
</html>';
},
/**
* View file template generator
*
* -- Identation is very important! Don't change it! --
*/
view: function (name) {
name = name.charAt(0).toUpperCase() + name.substring(1);
return 'pages.' + name + ' = function(params) {\n\
with (Sgfd.Base) {\n\
// Put this file in \'views\' diretory\n\
};\n\
};';
},
/**
* Controller file template generator
*
* -- Identation is very important! Don't change it! --
*/
controller: function (name) {
name = name.charAt(0).toUpperCase() + name.substring(1);
return 'with (Sgfd.Base) {\n\
var ' + name + 'Controller = new Sgfd.Controller({\n\
metaName: \'' + name + 'Controller\',\n\
index: function() {\n\
// A function to be used in views etc\n\
// Put it into \'controllers\' folder of your app\n\
}\n\
});\n\
};';
},
/**
* Service file template generator
*
* -- Identation is very important! Don't change it! --
*/
service: function (name) {
name = name.charAt(0).toUpperCase() + name.substring(1);
return 'with (Sgfd.Base) {\n\
var ' + name + 'Service = new Sgfd.Service({\n\
metaName: \'' + name + 'Service\',\n\
index: function() {\n\
// A function to be used in controllers etc\n\
// Put it into \'services\' folder of your app\n\
}\n\
});\n\
};';
},
/**
* Bridge file template generator
*
* -- Identation is very important! Don't change it! --
*/
bridge: function (name) {
name = name.charAt(0).toUpperCase() + name.substring(1);
return 'with (Sgfd.Base) {\n\
var ' + name + 'Bridge = new Sgfd.Bridge({\n\
metaName: \'' + name + 'Bridge\',\n\
type: \'bridge_type\',\n\
base: \'URL_or_path_to_bridge_entry_point\',\n\
paths: {\n\
// your_path(s): \'path_location\',\n\
},\n\
bridgeTo: (to) => {\n\
with (' + name + 'Bridge) {\n\
return base + \'/\' + paths[to]\n\
}\n\
}\n\
});\n\
};';
}
},
/**
* Util functions
*/
utils: {
/**
* Load file from an url and returns a string with its content
* @param url: the url to fetch data.
* @param fn: function to modify the result.
*/
requireFile: function (url, fn) {
var xhr;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
} else if (window.ActiveXObject) {
xhr = new ActiveXObject('Microsoft.XMLHTTP');
} else {
return false;
}
xhr.open('GET', url, false);
if (xhr.overrideMimeType) {
xhr.overrideMimeType('text/plain');
}
xhr.send(null);
if (xhr.status == 200) {
if (fn) {
return fn(xhr.responseText);
} else {
return xhr.responseText;
}
}
return false;
}
},
/**
* Generate view file and starts download of it
*/
generateView: function (name) {
var b = document.createElement('a');
b.download = name + '.js';
b.href = 'data:application/javascript;charset=utf-8,' +
encodeURIComponent(Sgfd.Cli.templates.view(name));
b.click();
},
/**
* Generate controler file and starts download of it
*/
generateController: function (name) {
var b = document.createElement('a');
b.download = name + 'controller.js';
b.href = 'data:application/javascript;charset=utf-8,' +
encodeURIComponent(Sgfd.Cli.templates.controller(name));
b.click();
},
/**
* Generate service file and starts download of it
*/
generateService: function (name) {
var b = document.createElement('a');
b.download = name + 'service.js';
b.href = 'data:application/javascript;charset=utf-8,' +
encodeURIComponent(Sgfd.Cli.templates.service(name));
b.click();
},
/**
* Generate bridge file and starts download of it
*/
generateBridge: function (name) {
var b = document.createElement('a');
b.download = name + 'bridge.js';
b.href = 'data:application/javascript;charset=utf-8,' +
encodeURIComponent(Sgfd.Cli.templates.bridge(name));
b.click();
},
/**
* Generate a file and starts download of it
*/
generateFile: function (name, type, mime, templateFn, params) {
var f = params ? templateFn(params) : templateFn;
var b = document.createElement('a');
b.download = name + '.' + type;
b.href = 'data:' + mime + ';charset=utf-8,' +
encodeURIComponent(f);
b.click();
},
/**
* Create view and add to config file of current application
* This creates a view download and a cnew config file download
* @param conf: conf file path
* @param name: the view name
*/
addView: function (conf, name) {
// Generate files to save
Sgfd.Cli.utils.requireFile(conf, function (v) {
if (v.indexOf('views') != -1) {
v = v.replace(/views: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + name + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
v = v.replace(/back: {/, 'back: {\n\
views: [\'' + name + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateFile('conf', 'js', 'application/javascript', v);
});
Sgfd.Cli.generateView(name);
},
/**
* Create controller and add to config file of current application
* This creates a controller download and a cnew config file download
* @param conf: conf file path
* @param name: the controller name
*/
addController: function (conf, name) {
// Generate files to save
Sgfd.Cli.utils.requireFile(conf, function (v) {
if (v.indexOf('controllers') != -1) {
v = v.replace(/controllers: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + name + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
v = v.replace(/back: {/, 'back: {\n\
controllers: [\'' + name + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateFile('conf', 'js', 'application/javascript', v);
});
Sgfd.Cli.generateController(name);
},
/**
* Create service and add to config file of current application
* This creates a service download and a cnew config file download
* @param conf: conf file path
* @param name: the service name
*/
addService: function (conf, name) {
// Generate files to save
Sgfd.Cli.utils.requireFile(conf, function (v) {
if (v.indexOf('services') != -1) {
v = v.replace(/services: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + name + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
v = v.replace(/back: {/, 'back: {\n\
services: [\'' + name + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateFile('conf', 'js', 'application/javascript', v);
});
Sgfd.Cli.generateService(name);
},
/**
* Create bridge and add to config file of current application
* This creates a bridge download and a cnew config file download
* @param conf: conf file path
* @param name: the bridge name
*/
addBridge: function (conf, name) {
// Generate files to save
Sgfd.Cli.utils.requireFile(conf, function (v) {
if (v.indexOf('bridges') != -1) {
v = v.replace(/bridges: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + name + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
v = v.replace(/back: {/, 'back: {\n\
bridges: [\'' + name + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateFile('conf', 'js', 'application/javascript', v);
});
Sgfd.Cli.generateBridge(name);
},
/**
* Generate a sample app with options (controllers, views etc) and download all the files
*/
scafold: function (name, options, sgfdPath) {
var c = Sgfd.Cli.templates.conf(name);
if (options) {
if (options['views']) {
options.views.forEach(function (v) {
if (c.indexOf('views') != -1) {
c = c.replace(/views: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + v + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
c = c.replace(/back: {/, 'back: {\n\
views: [\'' + v + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateView(v);
});
}
if (options['controllers']) {
options.controllers.forEach(function (v) {
if (c.indexOf('controllers') != -1) {
c = c.replace(/controllers: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + v + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
c = c.replace(/back: {/, 'back: {\n\
controllers: [\'' + v + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateController(v);
});
}
if (options['services']) {
options.services.forEach(function (v) {
if (c.indexOf('services') != -1) {
c = c.replace(/services: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + v + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
c = c.replace(/back: {/, 'back: {\n\
services: [\'' + v + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateService(v);
});
}
if (options['bridges']) {
options.bridges.forEach(function (v) {
if (c.indexOf('bridges') != -1) {
c = c.replace(/bridges: \[[\n\ \'\"\,a-zA-Z0-9_-]*\]/, function (m) {
return m.replace(/]/, ', \'' + v + '\']')
.replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
});
} else {
c = c.replace(/back: {/, 'back: {\n\
bridges: [\'' + v + '\'],\n\
').replace(/\n[\ ]*\n/, '\n').replace(/,\n[\ ]*}/, function (m) {
return m.substring(1);
});
}
Sgfd.Cli.generateBridge(v);
});
}
}
with(Sgfd.Cli) {
generateFile('conf', 'js', 'application/javascript', c);
generateFile('index', 'html', 'text/html', templates.index, sgfdPath || '{{ Sgfd location goes here! }}');
generateFile('dataMappings', 'js', 'application/javascript', templates.dataMappings);
generateFile('main', 'js', 'application/javascript', templates.main);
}
},
/**
* Generate a sample app and download all the files
*/
init: function (name, sgfdPath) {
with(Sgfd.Cli) {
generateFile('conf', 'js', 'application/javascript', templates.conf, name);
generateFile('index', 'html', 'text/html', templates.index, sgfdPath || '{{ Sgfd location goes here! }}');
generateFile('dataMappings', 'js', 'application/javascript', templates.dataMappings);
generateFile('main', 'js', 'application/javascript', templates.main);
}
}
};