tabloid-fake-closure/static/js/main.js

268 lines
11 KiB
JavaScript
Raw Normal View History

2020-09-24 08:16:49 -04:00
const PROG_FACTORIAL = `YOU WON'T WANT TO MISS 'Hello, World!'
2020-09-24 07:30:52 -04:00
DISCOVER HOW TO factorial WITH n
2020-09-24 08:22:22 -04:00
RUMOR HAS IT
2020-09-24 05:45:33 -04:00
WHAT IF n IS ACTUALLY 0
SHOCKING DEVELOPMENT 1
2020-09-24 08:16:49 -04:00
LIES!
SHOCKING DEVELOPMENT
n TIMES factorial OF n MINUS 1
2020-09-24 05:45:33 -04:00
END OF STORY
EXPERTS CLAIM result TO BE factorial OF 10
2020-09-24 07:30:52 -04:00
YOU WON'T WANT TO MISS 'Result is'
2020-09-24 05:45:33 -04:00
YOU WON'T WANT TO MISS result
2020-09-24 05:56:09 -04:00
PLEASE LIKE AND SUBSCRIBE`;
2020-09-24 05:45:33 -04:00
2020-09-24 08:16:49 -04:00
const PROG_FIBONACCI = `DISCOVER HOW TO fibonacci WITH a, b, n
2020-09-24 08:22:22 -04:00
RUMOR HAS IT
2020-09-24 08:16:49 -04:00
WHAT IF n SMALLER THAN 1
SHOCKING DEVELOPMENT b
2020-09-24 08:22:22 -04:00
LIES! RUMOR HAS IT
2020-09-24 08:16:49 -04:00
YOU WON'T WANT TO MISS b
SHOCKING DEVELOPMENT
fibonacci OF b, a PLUS b, n MINUS 1
END OF STORY
END OF STORY
EXPERTS CLAIM limit TO BE 10
YOU WON'T WANT TO MISS 'First 10 Fibonacci numbers'
EXPERTS CLAIM nothing TO BE fibonacci OF 1, 1, limit
PLEASE LIKE AND SUBSCRIBE`;
const PROG_DEFAULT = PROG_FIBONACCI;
2020-09-24 06:42:23 -04:00
const HEADLINES = [
`You Won't Believe What This Programming Language Can Do!`,
`The Best Programming Language You Haven't Heard Of (It Will Surprise You!)`,
`Shocking New Programming Language Bewilders Programmers at Google and Facebook!`,
`Programmer Who Made Everything Now Predicts the Next Big Language!`,
`The Secret Programming Language Every 10x Programmer Recommends!`,
2020-09-24 07:30:52 -04:00
`Programmers at Microsoft Hate This One Trick to Get Good at that Code Thing!`,
2020-09-24 06:42:23 -04:00
];
function randomHeadline() {
return HEADLINES[~~(Math.random() * HEADLINES.length)];
}
2020-09-24 05:45:33 -04:00
const {
Component,
} = window.Torus;
class Editor extends Component {
init() {
2020-09-24 05:56:09 -04:00
this.prog = PROG_DEFAULT;
// script appends to it
this.output = '';
this.errors = '';
this.handleRun = () => this.eval();
this.handleInput = evt => {
this.prog = evt.target.value;
this.render();
}
this.handleKeydown = evt => {
if (evt.key === 'Tab') {
evt.preventDefault();
const idx = evt.target.selectionStart;
if (idx !== null) {
const front = this.prog.substr(0, idx);
const back = this.prog.substr(idx);
this.prog = front + ' ' + back;
this.render();
evt.target.setSelectionRange(idx + 4, idx + 4);
}
}
}
2020-09-24 08:16:49 -04:00
this.setFactorial = () => {
this.prog = PROG_FACTORIAL;
this.output = this.errors = '';
this.render();
}
this.setFibonacci= () => {
this.prog = PROG_FIBONACCI;
this.output = this.errors = '';
this.render();
}
2020-09-24 05:56:09 -04:00
}
eval() {
this.output = '';
2020-09-24 06:42:23 -04:00
this.errors = '';
2020-09-24 05:56:09 -04:00
try {
const tokens = tokenize(this.prog);
const nodes = new Parser(tokens).parse();
const env = new Environment({
print: s => {
2020-09-24 07:30:52 -04:00
this.output += s.toString().toUpperCase() + '!\n';
2020-09-24 05:56:09 -04:00
this.render();
},
});
env.run(nodes);
} catch (e) {
this.errors = e.toString();
}
this.render();
2020-09-24 05:45:33 -04:00
}
compose() {
2020-09-24 05:56:09 -04:00
return jdom`<div class="editor fixed block">
<div class="controls">
2020-09-24 08:16:49 -04:00
<button class="block"
2020-09-24 08:22:22 -04:00
onclick=${this.setFibonacci}>Fibonacci <span class="desktop">sample</span></button>
2020-09-24 08:16:49 -04:00
<button class="block"
2020-09-24 08:22:22 -04:00
onclick=${this.setFactorial}>Factorial <span class="desktop">sample</span></button>
2020-09-24 05:56:09 -04:00
<button class="accent block"
2020-09-24 08:22:22 -04:00
onclick=${this.handleRun}>Run<span class="desktop"> this</span>!</button>
2020-09-24 05:56:09 -04:00
</div>
<div class="code">
2020-09-24 06:42:23 -04:00
<div class="filler">
${this.prog.split('\n')
.map(line => jdom`<p>${line.trim() ? line : '-'}</p>`)}
</div>
<textarea class="editor-input" cols="30" rows="10"
2020-09-24 05:56:09 -04:00
value=${this.prog}
oninput=${this.handleInput}
onkeydown=${this.handleKeydown}>
2020-09-24 05:56:09 -04:00
</textarea>
</div>
2020-09-24 06:42:23 -04:00
<div class="output">
${this.output ? this.output
.split('\n')
.map(line => jdom`<code class="output-line">${line}</code>`)
: jdom`<code class="no-output">No output.</code>`}
2020-09-24 05:56:09 -04:00
</div>
2020-09-24 06:42:23 -04:00
${this.errors ? jdom`<div class="errors">
${this.errors.split('\n').map(line => jdom`<code>${line}</code>`)}
</div>` : null}
2020-09-24 05:56:09 -04:00
</div>`;
2020-09-24 05:45:33 -04:00
}
}
class App extends Component {
2020-09-24 05:56:09 -04:00
init() {
this.editor = new Editor();
}
2020-09-24 05:45:33 -04:00
compose() {
return jdom`<main>
2020-09-24 06:42:23 -04:00
<header>
<h1>${randomHeadline()}</h1>
<nav>
<a href="https://github.com/thesephist/tabloid"
target="_blank" noopener noreferer>GitHub</a>
2020-09-24 07:30:52 -04:00
<a href="#" onclick=${evt => {
evt.preventDefault();
this.render();
}}>NEW headline!</a>
<a href="https://github.com/thesephist/tabloid#language-overview"
target="_blank" noopener noreferer>Tutorial</a>
2020-09-24 06:42:23 -04:00
</nav>
<p class="subtitle">
<strong class="lang fixed inline block">Tabloid:</strong> The Clickbait Headline Programming Language
</p>
</header>
2020-09-24 05:56:09 -04:00
${this.editor.node}
2020-09-24 06:42:23 -04:00
<h2>What?</h2>
2020-09-24 07:30:52 -04:00
<p>
<strong>Tabloid</strong> is a turing-complete programming
language for writing programs in the style of clickbait news
headlines.
</p>
<p>
Here are <strike>a few things</strike>${' '}<strong>the Top Five
Most Popular Quirks and Features</strong> of the Tabloid
programming language <strong>(Number Four Will Shock You!)</strong>
</p>
<ul>
<li>
Print output with the keywords <code class="inline
fixed block">YOU WON'T WANT TO MISS</code> followed by an
expression. Everything printed by Tabloid is
<strong>automatically capitalized, and an exclamation point is
added.</strong> Why would you want anything else?
</li>
<li>
Declare a function by writing <code class="inline fixed
block">DISCOVER HOW TO ... WITH</code>. Truly, a more
gripping way to declare a function can't possibly exist!
Similarly, assign to a variable with <code class="inline fixed
2020-09-24 07:30:52 -04:00
block">EXPERTS CLAIM ... TO BE</code>. On the Internet,
anyone can be an expert, and Tabloid gives YOU the power to
wield that responsibility and declare anything you'd like!
</li>
<li>
There are <strong>no built-in constructs for looping</strong>. The news
cycle is moving too fast! Nobody has time for yesterday's
loops or last week's break statements. If you must loop,
use recursion.
</li>
2020-09-24 07:30:52 -04:00
<li>
To return from a function, simply write <code class="inline
fixed block">SHOCKING DEVELOPMENT</code>! You're going
togasp!<strong>return</strong>? How shocking!
</li>
<li>
Every program must end with <code
class="inline fixed block">PLEASE LIKE AND
SUBSCRIBE</code>, because you have to grow your audience! <strong>Hashtag hustle</strong>.
</li>
</ul>
2020-09-24 06:42:23 -04:00
<h2>But why?</h2>
2020-09-24 07:30:52 -04:00
<p>
Didn't want to do homework for my
<a href="https://cs186berkeley.net/" target="_blank">database
systems class</a>, and needed something to do to procrastinate.
Will I finish the homework? Did I get enough sleep?
</p>
<p>Stay tuned to find out!</p>
2020-09-24 06:42:23 -04:00
<h2>Does it actually work?</h2>
2020-09-24 07:30:52 -04:00
<p>
Yes. Tabloid is a <strong>fully functioning, turing complete
programming language with an interpreter</strong> written in
JavaScript. Tabloid currently only supports numbers, strings,
and booleans, but with these elements, you can write any
program you'd want to write. You can edit and run the program above, or
<a href="https://github.com/thesephist/tabloid">see how it works for yourself</a>.
</p>
<p>
Before making Tabloid, I also created a more <strike>useful and
well-designed</strike>${' '}<strong>boring and unpopular</strong>
programming language, called <a href="https://dotink.co/"
target="_blank">Ink</a>.
</p>
<h2>How much is there?</h2>
2020-09-24 08:22:22 -04:00
<p>Here's the full list of standard keywords that Tabloid currently uses:</p>
2020-09-24 07:30:52 -04:00
<ul>
<li><code class="inline fixed block">DISCOVER HOW TO...WITH</code> declare a function</li>
2020-09-24 08:22:22 -04:00
<li><code class="inline fixed block">RUMOR HAS IT</code> begin a block scope</li>
2020-09-24 07:30:52 -04:00
<li><code class="inline fixed block">A OF B, C</code> call function A with arguments B, C</li>
<li><code class="inline fixed block">WHAT IF...LIES!</code> an if-else expression</li>
<li><code class="inline fixed block">END OF STORY</code> end a block scope</li>
<li><code class="inline fixed block">EXPERTS CLAIM...TO BE</code> declare or assign to a variable</li>
<li><code class="inline fixed block">YOU WON'T WANT TO MISS</code> print output</li>
<li><code class="inline fixed block">TOTALLY RIGHT</code> true</li>
<li><code class="inline fixed block">COMPLETELY WRONG</code> false</li>
2020-09-24 08:16:49 -04:00
<li><code class="inline fixed block">PLUS / MINUS / TIMES / DIVIDED BY / MODULO</code> the obvious arithmetic operations</li>
2020-09-24 08:22:22 -04:00
<li><code class="inline fixed block">BEATS / SMALLER THAN</code> greater than / less than</li>
2020-09-24 07:30:52 -04:00
<li><code class="inline fixed block">IS ACTUALLY</code> is equal to</li>
<li><code class="inline fixed block">BEATS / SMALLER THAN</code> greater than / less than</li>
<li><code class="inline fixed block">SHOCKING DEVELOPMENT</code> return from a function</li>
<li><code class="inline fixed block">PLEASE LIKE AND SUBSCRIBE</code> end of program</li>
</ul>
2020-09-24 06:42:23 -04:00
<footer>
<p>
2020-09-24 07:30:52 -04:00
Tabloid is an overnight hack by
2020-09-24 06:42:23 -04:00
<a href="https://thesephist.com/">@thesephist</a>,
website built with
<a href="https://github.com/thesephist/torus">Torus</a>
and
<a href="https://thesephist.github.io/blocks.css/">blocks.css</a>.
</p>
</footer>
2020-09-24 05:45:33 -04:00
</main>`;
}
}
const app = new App();
document.body.appendChild(app.node);