-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
439 lines (355 loc) · 12.2 KB
/
index.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
/*!
* Ant1pattern Webpage
*
* Copyright (c) 2020, ANT1pattern <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
import './src/styles.scss';
import { terminal } from './src/terminal.js';
// Banner text
const banner = `
Initializing ANT1pattern Shell v0.1
Copyright (c) 2020 Ant1pattern <[email protected]>
.............................................................................
_______ _______ _______ _______
|\\ /||\\ /||\\ /||\\ /|
| +---+ || +---+ || +---+ || +---+ |
| | | || | | || | | || | | |
| |A | || |N | || |T | || |1 | |
| +---+ || +---+ || +---+ || +---+ |
|/_____\\||/_____\\||/_____\\||/_____\\|
_______ _______ _______ _______ _______ _______ _______
|\\ /||\\ /||\\ /||\\ /||\\ /||\\ /||\\ /|
| +---+ || +---+ || +---+ || +---+ || +---+ || +---+ || +---+ |
| | | || | | || | | || | | || | | || | | || | | |
| |p | || |a | || |t | || |t | || |e | || |r | || |n | |
| +---+ || +---+ || +---+ || +---+ || +---+ || +---+ || +---+ |
|/_____\\||/_____\\||/_____\\||/_____\\||/_____\\||/_____\\||/_____\\|
-----------------------------------------------------------------------------
We provide the skills you need to ship your web3 product!
-----------------------------------------------------------------------------
Type 'help for a list of available commands.
`;
const refInfo = {
"Knockout Finance (ongoing)": {
url: "https://github.com/ANT1pattern/knockout.finance",
description: "more infos coming soon..."
},
"Lisk Ren Protocol Bridge (ongoing)": {
url: "https://github.com/ANT1pattern/multichain",
description: "A decentralized bridge between Lisk and Ethereum based on Ren Protocol. (impl)"
},
"ant1pattern Webpage (done)": {
url: "https://github.com/ANT1pattern/webpage",
description: "This Webpage. (impl, test, devops)"
},
"CTHU-Coin (done)": {
url: "https://github.com/cthu-coin/Cthulhu_Soul",
description: "Ethereum Game (project setup, tests)"
},
};
const refList = Object.keys(refInfo)
.reduce((result, key) => result.concat([`${key} - ${refInfo[key].description} `]), [])
.join('\n');
const refText = `
References
${ refList}
`;
// Help text
const helpText = `
Available commands:
help - This output
about - Prints information about ANT1pattern
team - Shows team member
service - Prints our services
ref - Display references
contact - show contact options
clear - Clears the display
`;
// Contact texts
const contactInfo = {
discord: 'https://discord.gg/ywVNbvb86j',
email: '[email protected]',
twitter: 'https://twitter.com/antipattern_eth',
github: 'https://github.com/ant1pattern',
gitcoin: 'https://gitcoin.co/grants/1159/ant1pattern',
medium: 'https://medium.com/@ant1pattern',
};
const serviceInfo = {
agile: "We provide the scrum master and develop the project agile.",
// consulting: "We guide you through the project and show you best practices and possible risks.",
development: "We develop Apps, Smart Contracts, Backends and Bots.",
// quality: "We ensure quality through testing of apps and smart contracts on different levels.",
devops: "We do the operations.",
scale: "We set the right focus regarding your budget."
}
const teamInfo = {
tosh1: 'p2p enthusiast and software engineer',
fr1da: 'p2p enthusiast and accountant',
rob1: 'p2p enthusiast and project manager',
w1tt: 'graphics dude',
};
const serviceDetailInfo = {
agile: `
We are a team which is focused on agile development. Our Principles are:
1. Customer satisfaction by early and continuous delivery of valuable software.
2. Welcome changing requirements, even in late development.
3. Deliver working software frequently (weeks rather than months)
4. Close, daily cooperation between business people and developers
5. Projects are built around motivated individuals, who should be trusted
6. Face-to-face conversation is the best form of communication (co-location)
7. Working software is the primary measure of progress
8. Sustainable development, able to maintain a constant pace
9. Continuous attention to technical excellence and good design
10. Simplicity—the art of maximizing the amount of work not done—is essential
11. Best architectures, requirements, and designs emerge from self-organizing teams
12. Regularly, the team reflects on how to become more effective, and adjusts accordingly
We understand that disruptive blockchain projects can not be preocesed as a normal software project.
With this understanding and the knowledge and experience as project manager. We are the best choice if you look for a scrum master.
`,
consult: `
`,
development: `
Smart Contracts
WebApps
Bots
Shell scripts
everything you need and want
`,
quality: `
We develop for each individual projects its own quality assurance strategy.
Typically those exist of:
- Quality assured through experienced based development process
- Code Reviews and Audits (Smart Contracts, Apps)
- Testing on different levels (unit, integrationtests, e2e, security, performance)
`,
devops: `
DevOps
- Deployment Scripts for Smart Contracts
- CICD Pipelines for your DApp
`,
scale: `
@TODO: rob1
`
}
const teamDetailInfo = {
tosh1: `
__ .__ ____
_/ |_ ____ ______| |__ /_ |
\\ __\\/ _ \\ / ___/| | \\ | |
| | ( <_> )\\___ \\ | Y \\| |
|__| \\____//____ >|___| /|___|
\\/ \\/
Infos:
- build already webpages on geocities (1997)
- into p2p since napster (1999)
- into bitcoin since 2012
- first own ERC20 token on Ethereum in 2016
- participated on multiple ethereum hackathons
- since 5years+ professional blockchain engineer and architect
Roles:
- CTO
- Hacker
- Oracle about Blockchain
`,
fr1da: `
_____ ____ .___
_/ ____\\_______/_ | __| _/_____
\\ __\\ \\_ __ \\| | / __ | \\__ \\
| | | | \\/| |/ /_/ | / __ \\_
|__| |__| |___|\\____ | (____ /
\\/ \\/
- studied english, history and social economics
- into p2p since bittorrent (2004)
- into bitcoin since 2014
- first own ERC20 token on Ethereum in 2016
- since 5years+ professional crypto trader
Roles:
- CFO
- Market Observer
- Accountant
`,
rob1: `
___. ____
_______ ____ \\_ |__ /_ |
\\_ __ \\ / _ \\ | __ \\ | |
| | \\/( <_> )| \\_\\ \\| |
|__| \\____/ |___ /|___|
\\/
- father
- studied informatics
- into p2p since bittorrent (2004)
- into bitcoin since 2014
- participated on multiple ethereum hackathons
- since 7years+ professional project manager
- loves to hack hardware
Roles:
- CEO
- Project manager
`,
w1tt: `
____ __ __
__ _ __/_ |_/ |_ _/ |_
\\ \\/ \\/ / | |\\ __\\\\ __\\
\\ / | | | | | |
\\/\\_/ |___| |__| |__|
- father
- architect
- artist
Roles:
- Graphics Dude
`
}
const contactList = Object.keys(contactInfo)
.reduce((result, key) => result.concat([`${key} - ${contactInfo[key]} `]), [])
.join('\n');
const teamList = Object.keys(teamInfo)
.reduce((result, key) => result.concat([`${key} - ${teamInfo[key]} `]), [])
.join('\n');
const serviceList = Object.keys(serviceInfo)
.reduce((result, key) => result.concat([`${key} - ${serviceInfo[key]} `]), [])
.join('\n');
const contactText = `
Please contact us!
${ contactList}
Use ex. 'contact twitter' to open the links.
`;
const serviceText = `
Services
${ serviceList}
Use ex. 'service development' to open further details.
`;
const teamText = `
Team member
${ teamList}
Use ex. 'team tosh1' to open further details.
`;
const openTeam = key => {
return teamDetailInfo[key]
}
const openService = key => {
return serviceDetailInfo[key]
}
const openRef = key => window.open(contactInfo[key].url);
const openContact = key => window.open(key === 'email'
? `mailto: ${contactInfo[key]} `
: contactInfo[key]);
// File browser
const browser = (function () {
let current = '/';
let tree = [{
location: '/',
filename: 'documents',
type: 'directory'
}, {
location: '/',
filename: 'AUTHOR',
type: 'file',
content: 'Anders Evenrud <[email protected]>'
}];
const fix = str => str.trim().replace(/\/+/g, '/') || '/';
const setCurrent = dir => {
if (typeof dir !== 'undefined') {
if (dir == '..') {
const parts = current.split('/');
parts.pop();
current = fix(parts.join('/'));
} else {
const found = tree.filter(iter => iter.location === current)
.find(iter => iter.filename === fix(dir));
if (found) {
current = fix(current + '/' + dir);
} else {
return `Directory '${dir}' not found in '${current}'`;
}
}
return `Entered '${current}'`;
}
return current;
};
const ls = () => {
const found = tree.filter(iter => iter.location === current);
const fileCount = found.filter(iter => iter.type === 'file').length;
const directoryCount = found.filter(iter => iter.type === 'directory').length;
const status = `${fileCount} file(s), ${directoryCount} dir(s)`;
const maxlen = Math.max(...found.map(iter => iter.filename).map(n => n.length));
const list = found.map(iter => {
return `${iter.filename.padEnd(maxlen + 1, ' ')} <${iter.type}>`;
}).join('\n');
return `${list}\n\n${status} in ${current}`;
};
const cat = filename => {
const found = tree.filter(iter => iter.location === current);
const foundFile = found.find(iter => iter.filename === filename);
if (foundFile) {
return foundFile.content;
}
return `File '${filename}' not found in '${current}'`;
};
return {
cwd: () => setCurrent(),
cd: dir => setCurrent(fix(dir)),
cat,
ls
};
})();
///////////////////////////////////////////////////////////////////////////////
// MAIN
///////////////////////////////////////////////////////////////////////////////
const load = () => {
const t = terminal({
prompt: () => `$ ${browser.cwd()} > `,
banner,
commands: {
help: () => helpText,
service: (key) => {
if (key in serviceInfo) {
return openService(key);
}
return serviceText
},
team: (key) => {
if (key in teamInfo) {
return openTeam(key);
}
return teamText
},
ref: (key) => {
if (key in refInfo) {
openRef(key);
return `Opening ${key} - ${refInfo[key]}`;
}
return refText
},
clear: () => t.clear(),
contact: (key) => {
if (key in contactInfo) {
openContact(key);
return `Opening ${key} - ${contactInfo[key]}`;
}
return contactText;
}
}
});
};
document.addEventListener('DOMContentLoaded', load);