🚀 First commit

This commit is contained in:
Felix Rieseberg
2018-06-06 18:41:04 +02:00
commit 8b3df1775c
34 changed files with 5883 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
node_modules
out
dist
+19
View File
@@ -0,0 +1,19 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
+25
View File
@@ -0,0 +1,25 @@
module.exports = {
packagerConfig: {},
makers: [
{
name: "@electron-forge/maker-squirrel",
config: {
name: "electron_fiddle"
}
},
{
name: "@electron-forge/maker-zip",
platforms: [
"darwin"
]
},
{
name: "@electron-forge/maker-deb",
config: {}
},
{
name: "@electron-forge/maker-rpm",
config: {}
}
]
}
+5045
View File
File diff suppressed because it is too large Load Diff
+49
View File
@@ -0,0 +1,49 @@
{
"name": "electron-fiddle",
"productName": "electron-fiddle",
"version": "1.0.0",
"description": "My Electron application description",
"main": "./dist/main",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "npm run build && electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\""
},
"keywords": [],
"author": "felixr",
"license": "MIT",
"config": {
"forge": "./forge.config.js"
},
"dependencies": {
"electron-download": "^4.1.0",
"electron-squirrel-startup": "^1.0.0",
"extract-zip": "^1.6.7",
"fs-extra": "^6.0.1",
"loader-utils": "^1.1.0",
"milligram": "^1.3.0",
"monaco-loader": "^0.8.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"tmp": "0.0.33"
},
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.17",
"@electron-forge/maker-deb": "^6.0.0-beta.17",
"@electron-forge/maker-rpm": "^6.0.0-beta.17",
"@electron-forge/maker-squirrel": "^6.0.0-beta.17",
"@electron-forge/maker-zip": "^6.0.0-beta.17",
"@types/node": "^10.3.1",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.6",
"@types/tmp": "0.0.33",
"css-loader": "^0.28.11",
"electron": "2.0.2",
"monaco-editor": "^0.13.1",
"style-loader": "^0.21.0",
"typescript": "^2.9.1"
}
}
+58
View File
@@ -0,0 +1,58 @@
const { app, BrowserWindow } = require('electron');
// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (require('electron-squirrel-startup')) { // eslint-disable-line global-require
app.quit();
}
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow;
const createWindow = () => {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1200,
height: 900,
titleBarStyle: 'hiddenInset'
});
// and load the index.html of the app.
mainWindow.loadFile('./static/index.html');
// Open the DevTools.
// mainWindow.webContents.openDevTools();
// Emitted when the window is closed.
mainWindow.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null;
});
};
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow();
}
});
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and import them here.
+77
View File
@@ -0,0 +1,77 @@
import * as React from "react";
import { render } from "react-dom";
import * as loader from 'monaco-loader';
import { mainTheme } from './themes';
import { getContent } from './content';
import { Header } from './components/header';
class App {
public editors: any = {
main: null,
renderer: null,
html: null
};
public monaco: any = null;
public name = 'test';
constructor() {
this.getValues = this.getValues.bind(this);
this.setup();
}
async setup() {
this.monaco = await loader();
this.createThemes();
this.editors.html = this.createEditor('html');
this.editors.main = this.createEditor('main');
this.editors.renderer = this.createEditor('renderer');
render(<Header />, document.getElementById('header'));
}
createThemes() {
this.monaco.editor.defineTheme('main', mainTheme);
}
createEditor(id) {
if (!this.monaco) throw new Error('Monaco not ready');
const element = document.getElementById(`editor-${id}`);
const language = id === 'html' ? 'html' : 'javascript';
const value = getContent(id);
const options = {
language,
theme: 'main',
automaticLayout: true,
minimap: {
enabled: false
},
value
};
return this.monaco.editor.create(element, options);
}
getValues() {
if (!this.editors.html || !this.editors.main || !this.editors.renderer) {
throw new Error('Editors not ready');
}
return {
html: this.editors.html!.getValue(),
main: this.editors.main!.getValue(),
renderer: this.editors.renderer!.getValue(),
package: JSON.stringify({
name: this.name,
main: './main.js',
version: '1.0.0'
})
}
}
}
(window as any).electronFiddle = new App();
+84
View File
@@ -0,0 +1,84 @@
import { remote } from 'electron';
import { promisify } from 'util';
import * as os from 'os';
import * as fs from 'fs-extra';
import * as path from 'path';
import * as extract from 'extract-zip';
const eDownload = promisify(require('electron-download'));
class Binary {
public state: 'ready' | 'downloading' = 'downloading';
constructor(public readonly version = '2.0.2') {
this.setup();
}
getElectronBinary(version = this.version) {
const platform = os.platform();
const dir = this.getDownloadPath(version);
switch (platform) {
case 'darwin':
return path.join(dir, 'Electron.app/Contents/MacOS/Electron');
case 'freebsd':
case 'linux':
return path.join(dir, 'electron');
case 'win32':
return path.join(dir, 'electron.exe');
default:
throw new Error('Electron builds are not available on platform: ' + platform);
}
}
getDownloadPath(version = this.version) {
const userData = remote.app.getPath('userData');
return path.join(userData, 'electron-bin', version);
}
getIsDownloaded(version = this.version) {
const expectedPath = this.getElectronBinary(version);
return fs.existsSync(expectedPath);
}
async setup(version = this.version) {
await fs.mkdirp(this.getDownloadPath(version));
if (this.getIsDownloaded()) {
console.log(`Electron ${version} already downloaded.`);
this.state = 'ready';
return;
}
console.log(`Electron ${version} not present, downloading`);
const zipPath = await eDownload({ version });
const extractPath = this.getDownloadPath();
console.log(`Electron ${version} downloaded, now unpacking`);
const electronFiles = await this.unzip(zipPath, extractPath);
console.log(electronFiles);
this.state = 'ready';
}
unzip(zipPath, extractPath) {
return new Promise((resolve, reject) => {
process.noAsar = true;
extract(zipPath, { dir: extractPath }, (error) => {
if (error) {
reject(error);
return;
}
console.log(`Unpacked!`);
process.noAsar = false;
resolve();
});
});
}
}
export const binary = new Binary();
+13
View File
@@ -0,0 +1,13 @@
import * as React from 'react';
export class EditorTitle extends React.Component {
public render() {
return (
<div>
<span>Main Process</span>
<span>Renderer Process</span>
<span>HTML</span>
</div>
)
}
}
+13
View File
@@ -0,0 +1,13 @@
import * as React from 'react';
import { Runner } from './runner';
import { EditorTitle } from './editor-title';
export class Header extends React.Component {
public render() {
return [
<Runner />,
<EditorTitle />
];
}
}
View File
+76
View File
@@ -0,0 +1,76 @@
import * as React from 'react';
import { binary } from '../binary';
import * as tmp from 'tmp';
import * as fs from 'fs-extra';
import * as path from 'path';
import { spawn, ChildProcess } from 'child_process';
export interface RunnerState {
isRunning: boolean
}
export class Runner extends React.Component<{}, RunnerState> {
public child: ChildProcess | null = null;
constructor(props) {
super(props);
this.run = this.run.bind(this);
this.state = {
isRunning: false
};
}
public render() {
const btn = this.state.isRunning
? <button id="run" onClick={() => this.stop()}>Stop</button>
: <button id="run" onClick={() => this.run()}>Run</button>
return btn;
}
public async stop() {
if (this.child) {
this.child.kill();
this.setState({
isRunning: false
});
}
}
public async run() {
const values = (window as any).electronFiddle.getValues();
const tmpdir = (tmp as any).dirSync();
try {
await fs.writeFile(path.join(tmpdir.name, 'index.html'), values.html);
await fs.writeFile(path.join(tmpdir.name, 'main.js'), values.main);
await fs.writeFile(path.join(tmpdir.name, 'renderer.js'), values.renderer);
await fs.writeFile(path.join(tmpdir.name, 'package.json'), values.package);
} catch (error) {
console.error('Could not write files', error);
}
if (binary.state !== 'ready') {
console.warn('Binary not ready');
}
const binaryPath = binary.getElectronBinary();
console.log(`Binary ${binaryPath} ready, launching`);
this.child = spawn(binaryPath, [ tmpdir.name ]);
this.setState({ isRunning: true });
this.child.stdout.on('data', (data) => {
console.log(`stdout: ${data}`);
});
this.child.stderr.on('data', (data) => {
console.log(`stderr: ${data}`);
});
this.child.on('close', (code) => {
console.log(code);
});
}
}
+15
View File
@@ -0,0 +1,15 @@
import * as fs from 'fs';
import * as path from 'path';
const simpleCache = {};
export function getContent(name) {
if (simpleCache[name]) return simpleCache[name];
const filePath = path.join(__dirname, '../../static/content', name);
const content = fs.readFileSync(filePath, 'utf-8');
simpleCache[name] = content;
return content;
}
+9
View File
@@ -0,0 +1,9 @@
export const mainTheme = {
base: 'vs-dark',
inherit: true,
rules: [{ background: '2f3241' }],
colors: {
//'editor.foreground': '#9feaf9',
'editor.background': '#2f3241'
}
}
BIN
View File
Binary file not shown.
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
<!-- All of the Node.js APIs are available in this renderer process. -->
We are using Node.js <script>document.write(process.versions.node)</script>,
Chromium <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
<script>
// You can also require other files to run in this process
require('./renderer.js')
</script>
</body>
</html>
+50
View File
@@ -0,0 +1,50 @@
// Modules to control application life and create native browser window
const {app, BrowserWindow} = require('electron')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({width: 800, height: 600})
// and load the index.html of the app.
mainWindow.loadFile('index.html')
// Open the DevTools.
// mainWindow.webContents.openDevTools()
// Emitted when the window is closed.
mainWindow.on('closed', function () {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null
})
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow)
// Quit when all windows are closed.
app.on('window-all-closed', function () {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', function () {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow()
}
})
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.
+3
View File
@@ -0,0 +1,3 @@
// This file is required by the index.html file and will
// be executed in the renderer process for that window.
// All of the Node.js APIs are available in this process.
+60
View File
@@ -0,0 +1,60 @@
:root {
--electron-bright: #9feaf9;
--electron-tuned: #6798a2;
--electron-background: #2f3241;
--electron-dark: #1e2527;
}
html, body {
padding: 0;
margin: 0;
background: var(--electron-background);
overflow: hidden;
display: flex;
flex-direction: column;
height: 100vh;
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
}
header {
min-height: 40px;
border-bottom: 1px solid var(--electron-dark);
margin-bottom: 10px;
-webkit-app-region: drag;
}
header button {
margin-left: 80px;
margin-top: 10px;
background-color: #9feaf9;
border: none;
color: #1e2527;
padding: 5px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 4px;
-webkit-app-region: no-drag;
}
#editors {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: stretch;
align-content: stretch;
flex-grow: 1;
}
.editor {
flex-grow: 1;
width: 33%;
}
#runner {
height: 0;
}
#runner:not(:empty) {
height: 200px;
}
+202
View File
@@ -0,0 +1,202 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+20
View File
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../node_modules/milligram/dist/milligram.min.css">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<header id="header"></header>
<div id="editors">
<div class="editor" id="editor-main"></div>
<div class="editor" id="editor-renderer"></div>
<div class="editor" id="editor-html"></div>
</div>
<script>require('../dist/renderer/app')</script>
</body>
</html>
+43
View File
@@ -0,0 +1,43 @@
{
"compilerOptions": {
"outDir": "./dist",
"allowJs": true,
"experimentalDecorators": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"lib": [
"es2015",
"dom"
],
"noImplicitAny": false,
"noImplicitReturns": false,
"suppressImplicitAnyIndexErrors": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"importHelpers": true,
"noEmitHelpers": true,
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"pretty": true,
"target": "es2017",
"jsx": "react",
"typeRoots": [
"./node_modules/@types"
],
"baseUrl": ".",
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
}
}