Multiple test-projects
This commit is contained in:
10
test/basic/index.html
Normal file
10
test/basic/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Cerxes - CustomElements</title>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="./index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
30
test/basic/index.jsx
Normal file
30
test/basic/index.jsx
Normal file
@@ -0,0 +1,30 @@
|
||||
import {render} from "../../packages/csx-custom-elements";
|
||||
import style from "./index.scss";
|
||||
import {ExamplePage} from "./page";
|
||||
|
||||
document.body.appendChild(render(<style>{style}</style>));
|
||||
document.body.appendChild(render(<div class="center-me" iCanDoUpperCaseAttrs={ "yes" }>
|
||||
<h1>I am a title!</h1>
|
||||
</div>));
|
||||
|
||||
//document.body.appendChild(render(<example-page />));
|
||||
document.body.appendChild(render(<ExamplePage />));
|
||||
|
||||
/**
|
||||
* Findings:
|
||||
* - JSX does not allow dot-notation in attributes: language error
|
||||
* - Current code lower-cases attributes that result: this a limitation of setAttribute
|
||||
* - React uses on<EventName> to capture events and the IDE auto-suggests using this (can we generalize this approach for customEvents?)
|
||||
*/
|
||||
|
||||
/**
|
||||
* Continuation suggestionss:
|
||||
* - ref={...} does not work yet
|
||||
* - style-attribute untested
|
||||
* - Want a way to toggle classes: <Host class={{'bq-checkbox': true, 'checked': this.isChecked}}> could do
|
||||
* - Need to support update an existing DOM-tree to a VNode-tree
|
||||
* - Need to support the key-attribute for lists (linking with previous to have an idea how to update DOM-tree efficiently, are we going atomico/react/prect style diffing with a Virtual-DOM?)
|
||||
* - <Host> and <ShadowDom> special handlers
|
||||
* - Supporting fragments <>...</>?
|
||||
* - Try working towards a simple ToDo-MVC application
|
||||
*/
|
||||
19
test/basic/index.scss
Normal file
19
test/basic/index.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
html{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: auto;
|
||||
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.center-me{
|
||||
align-self: center;
|
||||
}
|
||||
12
test/basic/page.js
Normal file
12
test/basic/page.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import {defineElement, render, CustomElement} from "../../packages/csx-custom-elements/lib";
|
||||
|
||||
@defineElement('example-page')
|
||||
export class ExamplePage extends CustomElement{
|
||||
connectedCallback() {
|
||||
this.appendChild(render(
|
||||
<div class="page">
|
||||
<h1>This page is an example!</h1>
|
||||
</div>
|
||||
));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user