Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new vdom pkg, a rework of virtualdom that includes support for creating Lumino virtual elements using JSX #45

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions examples/example-vdom/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript" src="build/bundle.example.js"></script>
</head>
<body>
</body>
</html>
18 changes: 18 additions & 0 deletions examples/example-vdom/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "@phosphor/example-vdom",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "tsc && webpack",
"clean": "rimraf build"
},
"dependencies": {
"@phosphor/vdom": "^0.0.1",
"@phosphor/widgets": "^1.9.3"
},
"devDependencies": {
"rimraf": "^2.5.2",
"typescript": "~3.6.0",
"webpack": "^2.2.1"
}
}
91 changes: 91 additions & 0 deletions examples/example-vdom/src/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
/*------------------------------------------------------------------------------
| Copyright (c) 2014-2019, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|-----------------------------------------------------------------------------*/
import {
VDOM
} from '@phosphor/vdom';

import {
Widget
} from '@phosphor/widgets';


type TickData = {
readonly title: string;
readonly count: number;
}


const TickRow = (props: TickData) => {
return (
<tr>
<td>{props.title}</td>
<td>{props.count}</td>
</tr>
);
};


class TimeWidget extends Widget {

constructor() {
super();
this.addClass('TimeWidget');
}

protected onBeforeAttach(): void {
setInterval(() => this._tick(), 30);
}

protected onUpdateRequest(): void {
VDOM.render(this.render(), this.node);
}

protected render() {
let time = this._time;
let now = this._now;
return (
<div>
<h1>This page is updated every 30ms</h1>
<h2>
<span>UTC Time: </span>
<span>{time.toUTCString()}</span>
</h2>
<h2>
<span>Local Time: </span>
<span>{time.toString()}</span>
</h2>
<h2>
<span>Milliseconds Since Epoch: </span>
<span>{now.toString()}</span>
</h2>
<table>
<TickRow title='Hours' count={time.getHours()} />
<TickRow title='Minutes' count={time.getMinutes()} />
<TickRow title='Seconds' count={time.getSeconds()} />
</table>
</div>
);
}

private _tick(): void {
this._time = new Date();
this._now = Date.now();
this.update();
}

private _time = new Date();
private _now = Date.now();
}


function main(): void {
Widget.attach(new TimeWidget(), document.body);
}


window.onload = main;
18 changes: 18 additions & 0 deletions examples/example-vdom/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"compilerOptions": {
"declaration": false,
"noImplicitAny": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"outDir": "./build",
"jsx": "react",
"jsxFactory": "VDOM.createElement",
"lib": ["es2015", "dom"],
"types": []
},
"include": ["src/*"]
}
16 changes: 16 additions & 0 deletions examples/example-vdom/webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
var path = require('path');

module.exports = {
entry: './build/index.js',
output: {
path: __dirname + '/build/',
filename: 'bundle.example.js',
publicPath: './build/'
},
module: {
rules: [
{ test: /\.css$/, use: ['style-loader', 'css-loader'] },
{ test: /\.png$/, use: 'file-loader' }
]
}
};
37 changes: 37 additions & 0 deletions packages/vdom/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"name": "@phosphor/vdom",
"version": "0.0.1",
"description": "PhosphorJS - VDOM",
"homepage": "https://github.com/phosphorjs/phosphor",
"bugs": {
"url": "https://github.com/phosphorjs/phosphor/issues"
},
"license": "BSD-3-Clause",
"author": "S. Chris Colbert <sccolbert@gmail.com>",
"contributors": [
"S. Chris Colbert <sccolbert@gmail.com>"
],
"files": [
"lib/*.d.ts",
"lib/*.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/phosphorjs/phosphor.git"
},
"scripts": {
"build": "tsc --build",
"clean": "rimraf lib",
"watch": "tsc --build --watch"
},
"dependencies": {},
"devDependencies": {
"rimraf": "^2.5.2",
"typescript": "~3.6.0"
}
}
10 changes: 10 additions & 0 deletions packages/vdom/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*------------------------------------------------------------------------------
| Copyright (c) 2014-2019, PhosphorJS Contributors
|
| Distributed under the terms of the BSD 3-Clause License.
|
| The full license is in the file LICENSE, distributed with this software.
|-----------------------------------------------------------------------------*/
export * from './pjsx';
export * from './vdom';
export * from './vnode';
Loading