-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.js
577 lines (549 loc) · 19.8 KB
/
extension.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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
const vscode = require('vscode');
const path = require('path');
const fs = require('fs');
const particle = require('./particle');
const typeWriter = require('./typewriter');
const CSS = require('./Css');
const TypePartHTML = require('./htmlContent');
const AppParticle = require('./app');
const fetch = require('node-fetch');
const globalCSS = require('./global_styling');
const axios = require('axios').default;
var checkEmpty = require('extfs');
// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
/**
* @param {vscode.ExtensionContext} context
*/
function activate(context) {
// Use the console to output diagnostic information (console.log) and errors (console.error)
// This line of code will only be executed once when your extension is activated
console.log('Congratulations, your extension "webStarter" is now active!');
const myStatusBar = vscode.window.createStatusBarItem(
vscode.StatusBarAlignment.Right,
100
);
myStatusBar.command = 'extensions.getCoronaUpdates';
// The command has been defined in the package.json file
// Now provide the implementation of the command with registerCommand
// The commandId parameter must match the command field in package.json
var data;
function checkCorona(data) {
setInterval(function () {
axios.get('https://api.covid19api.com/summary').then(response => {
// vscode.window.showInformationMessage(
// "The number of recovered people is " +
// response.data.Global.NewRecovered
// );
// vscode.window.showInformationMessage(
// "The number of recovered people is " +
// response.data.Global.NewRecovered
// );
// vscode.window.showInputBox().then((value) => {
// if (value == undefined) {
// return;
// }
// console.log(value);
// });
vscode.window.setStatusBarMessage(
'Recovered: ' + response.data.Global.NewRecovered
);
});
}, 3000);
}
let corona = vscode.commands.registerCommand(
'webStarter.getCoronaUpdates',
function () {
axios.get('https://api.covid19api.com/summary').then(response => {
// vscode.window.showInformationMessage(
// "The number of recovered people is " +
// response.data.Global.NewRecovered
// );
myStatusBar.text = response.data.Global.NewRecovered;
myStatusBar.show();
console.log(myStatusBar);
vscode.window.showInputBox().then(value => {
if (value == undefined) {
return;
}
vscode.window.setStatusBarMessage(
'Recovered: ' + response.data.Global.NewRecovered
);
});
vscode.window.setStatusBarMessage(
'Recovered: ' + response.data.Global.NewRecovered
);
checkCorona();
});
}
);
let disposable = vscode.commands.registerCommand(
'webStarter.createTypeParticles',
function () {
const HTMLContent = TypePartHTML.TypePartHTML;
const typeScript = typeWriter.typeWriter;
const JSContent = AppParticle.AppParticles;
const particleJS = particle.particle;
const CSSContent = CSS.CSSContent;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'app.js'), JSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create app.js');
}
vscode.window.showInformationMessage('Created app.js');
});
fs.writeFile(path.join(folderPath, 'particles.js'), particleJS, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create particles.js');
}
vscode.window.showInformationMessage('Created particles.js');
});
fs.writeFile(path.join(folderPath, 'style.css'), CSSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create style.css');
}
vscode.window.showInformationMessage('Created style.css');
});
fs.writeFile(path.join(folderPath, 'typewrite.js'), typeScript, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create typewrite.js');
}
vscode.window.showInformationMessage('Created typewrite.js');
});
}
);
let disposableType = vscode.commands.registerCommand(
'webStarter.createType',
function () {
const HTMLContent = TypePartHTML.HTMLType;
const typeScript = typeWriter.typeWriter;
const CSSContent = CSS.CSSType;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'style.css'), CSSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create style.css');
}
vscode.window.showInformationMessage('Created style.css');
});
fs.writeFile(path.join(folderPath, 'typewrite.js'), typeScript, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create typewrite.js');
}
vscode.window.showInformationMessage('Created typewrite.js');
});
}
);
let rocketAnim = vscode.commands.registerCommand(
'webStarter.createRocket',
function () {
const HTMLContent = TypePartHTML.RocketHTML;
const RocketScript = AppParticle.RocketJs;
const CSSContent = CSS.RocketCSS;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'rocket.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create rocket.html');
}
vscode.window.showInformationMessage('Created rocket.html');
});
fs.writeFile(path.join(folderPath, 'rocket.css'), CSSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create rocket.css');
}
vscode.window.showInformationMessage('Created rocket.css');
});
fs.writeFile(path.join(folderPath, 'rocket.js'), RocketScript, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create rocket.js');
}
vscode.window.showInformationMessage('Created rocket.js');
});
}
);
let disposableAnime = vscode.commands.registerCommand(
'webStarter.createAnime',
function () {
const HTMLContent = TypePartHTML.HTMLAnime;
const JSContent = AppParticle.Stagger;
const CSSContent = CSS.CSSAnime;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'animation.js'), JSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create animation.js');
}
vscode.window.showInformationMessage('Created animation.js');
});
fs.writeFile(path.join(folderPath, 'style.css'), CSSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create style.css');
}
vscode.window.showInformationMessage('Created style.css');
});
}
);
let disposableGlobal = vscode.commands.registerCommand(
'webStarter.createGlobal',
function () {
const GlobalCSS = globalCSS.global_css;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
vscode.window.showInputBox().then(value => {
if (value == undefined) {
return;
}
fs.appendFile(
path.join(folderPath, value.toString() + '.css'),
GlobalCSS,
err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage(
`Failed to create ${value.toString() + '.css'} `
);
}
vscode.window.showInformationMessage(
`Created ${value.toString() + '.css'}`
);
}
);
});
}
);
let TextAnimation = vscode.commands.registerCommand(
'webStarter.getTextAnim',
function () {
const HTMLContent = TypePartHTML.HTMLTextAnim;
const TextAnimation = CSS.CSSText;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'styles.css'), TextAnimation, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create styles.css');
}
vscode.window.showInformationMessage('Created styles.css');
});
}
);
let CubeAnimation = vscode.commands.registerCommand(
'webStarter.getCube',
function () {
const HTMLContent = TypePartHTML.ThreeHTML;
const CssContent = CSS.BOxMoving;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
}
);
let MovingBox = vscode.commands.registerCommand(
'webStarter.getBox',
function () {
const HTMLContent = TypePartHTML.BoxMoving;
const CssContent = CSS.BOxMoving;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'style.scss'), CssContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create style.scss');
}
vscode.window.showInformationMessage('Created style.scss');
});
}
);
let CarBlueprint = vscode.commands.registerCommand(
'webStarter.getCar',
function () {
const HTMLContent = TypePartHTML.ViVusCar;
const JSContent = AppParticle.CarJs;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'index.js'), JSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.js');
}
vscode.window.showInformationMessage('Created index.js');
});
}
);
let scrollReveal = vscode.commands.registerCommand(
'webStarter.getScroll',
function () {
const scrollHTMLContent = TypePartHTML.scrollHTML;
const scrollCSSContent = CSS.scrollCSS;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(
path.join(folderPath, 'scroll.html'),
scrollHTMLContent,
err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create scroll.html');
}
vscode.window.showInformationMessage('Created scroll.html');
}
);
fs.writeFile(
path.join(folderPath, 'scroll.css'),
scrollCSSContent,
err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create scroll.css');
}
vscode.window.showInformationMessage('Created scroll.css');
}
);
}
);
let moBoxes = vscode.commands.registerCommand(
'webStarter.getMoBoxes',
function () {
const MoBoxesHTML = TypePartHTML.moHTML;
const MoBoxesCSS = CSS.moCSS;
const MoBoxesJS = AppParticle.Mojs;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'MoBoxes.html'), MoBoxesHTML, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create MoBoxes.html');
}
vscode.window.showInformationMessage('Created MoBoxes.html');
});
fs.writeFile(path.join(folderPath, 'MoBoxes.css'), MoBoxesCSS, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create MoBoxes.css');
}
vscode.window.showInformationMessage('Created MoBoxes.css');
});
fs.writeFile(path.join(folderPath, 'MoBoxes.js'), MoBoxesJS, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create MoBoxes.js');
}
vscode.window.showInformationMessage('Created MoBoxes.js');
});
}
);
let moMusic = vscode.commands.registerCommand(
'webStarter.getMoMusic',
function () {
const MoMusicHTML = TypePartHTML.moMusicHTML;
const MoMusicCSS = CSS.MoMusicCSS;
const MoMusicJS = AppParticle.moMusicJS;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'MoMusic.html'), MoMusicHTML, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create MoMusic.html');
}
vscode.window.showInformationMessage('Created MoMusic.html');
});
fs.writeFile(path.join(folderPath, 'MoMusic.css'), MoMusicCSS, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create MoMusic.css');
}
vscode.window.showInformationMessage('Created MoMusic.css');
});
fs.writeFile(path.join(folderPath, 'MoMusic.js'), MoMusicJS, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create MoMusic.js');
}
vscode.window.showInformationMessage('Created MoMusic.js');
});
}
);
let BallAnimation = vscode.commands.registerCommand(
'webStarter.ballAnimation',
function () {
const BallHTML = TypePartHTML.BallAnimation;
const EmptyHTML = TypePartHTML.EmptyBall;
const BallAnimaton = CSS.BallAnimation;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
vscode.window.showInputBox().then(value => {
if (value == undefined) {
return;
}
// checkEmpty.isEmpty(path.join(folderPath, "index.html"), function (empty) {
// console.log("HELLO")
// fs.appendFile(path.join(folderPath, "index.html"), EmptyHTML, (err) => {
// if (err) {
// vscode.window.showErrorMessage("Failed to create index.html");
// }
// vscode.window.showInformationMessage("Created index.html");
// });
// });
fs.appendFile(path.join(folderPath, 'index.html'), BallHTML, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.appendFile(
path.join(folderPath, value.toString() + '.css'),
BallAnimaton,
err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage(
`Failed to create ${value.toString() + '.css'} `
);
}
vscode.window.showInformationMessage(
`Created ${value.toString() + '.css'}`
);
}
);
});
}
);
let disposableParticle = vscode.commands.registerCommand(
'webStarter.createParticles',
function () {
const HTMLContent = TypePartHTML.HTMLParticle;
const JSContent = AppParticle.AppParticles;
const particleJS = particle.particle;
const CSSContent = CSS.CSSParticle;
const folderPath = vscode.workspace.workspaceFolders[0].uri
.toString()
.split(':')[1];
fs.writeFile(path.join(folderPath, 'index.html'), HTMLContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create index.html');
}
vscode.window.showInformationMessage('Created index.html');
});
fs.writeFile(path.join(folderPath, 'app.js'), JSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create app.js');
}
vscode.window.showInformationMessage('Created app.js');
});
fs.writeFile(path.join(folderPath, 'particles.js'), particleJS, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create particles.js');
}
vscode.window.showInformationMessage('Created particles.js');
});
fs.writeFile(path.join(folderPath, 'style.css'), CSSContent, err => {
if (err) {
console.log(err);
vscode.window.showErrorMessage('Failed to create style.css');
}
vscode.window.showInformationMessage('Created style.css');
});
}
);
context.subscriptions.push(disposable);
context.subscriptions.push(disposableType);
context.subscriptions.push(disposableParticle);
context.subscriptions.push(disposableAnime);
context.subscriptions.push(disposableGlobal);
context.subscriptions.push(corona);
context.subscriptions.push(TextAnimation);
context.subscriptions.push(BallAnimation);
context.subscriptions.push(CubeAnimation);
context.subscriptions.push(MovingBox);
context.subscriptions.push(CarBlueprint);
context.subscriptions.push(rocketAnim);
context.subscriptions.push(scrollReveal);
context.subscriptions.push(moBoxes);
context.subscriptions.push(moMusic);
}
exports.activate = activate;
// this method is called when your extension is deactivated
function deactivate() {}
module.exports = {
activate,
deactivate,
};