Skip to content

Commit e9ddc9a

Browse files
committed
initial commit
0 parents  commit e9ddc9a

20 files changed

+944
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
package-lock.json
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"folders": [
3+
{
4+
"path": ".."
5+
}
6+
],
7+
"settings": {
8+
"typescript.tsdk": "./node_modules/typescript/lib" /* CSS import - Step 1: use local typescript server */
9+
}
10+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Guilherme Henrique Gregorini Oliveira
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Simple Frontend APP
2+
3+
This is a simple frontend APP using [AtomicReact-TS](https://github.com/AtomicReact/AtomicReact-TS). You can use this for boilerplate for your next projects.
4+
5+
`src` directory contain all atoms
6+
`scripts` directory contain helpers scripts to build and serve http web server
7+
`public` directory contain all frontend built, bundled, and public files
8+
9+
See ``tsconfig.json` to known how enable importing CSS files with visual studio
10+
11+
## Development
12+
13+
Run development mode
14+
15+
```bash
16+
npm run dev
17+
```
18+
19+
## Build
20+
21+
Build and bundle atoms into public directory.
22+
23+
```bash
24+
npm run build
25+
```
26+
27+
## Visualize
28+
29+
1. Build
30+
31+
2. Start web server and visualize the final project
32+
33+
```bash
34+
npm run start
35+
```
36+

package.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "simple_frontend",
3+
"version": "1.0.0",
4+
"description": "Simple Frontend using AtomicReact",
5+
"type": "module",
6+
"scripts": {
7+
"dev": "ts-node --transpile-only ./scripts/web_server.ts development",
8+
"build": "ts-node ./scripts/build.ts",
9+
"build_": "rm -rf dist && npx tsc -b && node dist/build.js",
10+
"start": "ts-node ./scripts/web_server.ts"
11+
},
12+
"author": "Guihgo",
13+
"license": "ISC",
14+
"dependencies": {
15+
"express": "^4.18.2"
16+
},
17+
"devDependencies": {
18+
"@types/express": "^4.17.20",
19+
"ts-node": "^10.9.1",
20+
"typescript": "^5.2.2",
21+
"typescript-plugin-css-modules": "^5.0.2"
22+
}
23+
}

public/favicon.ico

1.2 KB
Binary file not shown.

public/index.html

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>My Hello APP made with AtomicReact</title>
9+
10+
<script src="/libs/atomicreact/atomicreact.core.js" charset="utf-8"></script>
11+
<script src="/libs/atomicreact/atomicreact.bundle.js"></script>
12+
<link rel="stylesheet" href="/libs/atomicreact/atomicreact.bundle.css" />
13+
</head>
14+
15+
<body>
16+
<h2>Hi! You are on index.html</h2>
17+
<div id="app"></div>
18+
</body>
19+
20+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.a2d554a8.app {
2+
color: aquamarine;
3+
background-color: #0e2424;
4+
border: 1px solid cadetblue;
5+
padding: 15px;
6+
}
7+
8+
.a2d554a8.largerText {
9+
font-size: 2em;
10+
}.a5f7e580.atom {
11+
border: 1px solid red; padding: 5px;
12+
}
13+
14+
.a5f7e580.atom [data-atomic-nucleus] {
15+
border: 1px dashed blue;
16+
padding: 5px 10px;
17+
}
18+
19+
.a5f7e580.atom .main-buttons {
20+
margin-bottom: 6px;
21+
padding: 6px;
22+
}
23+
24+
.a5f7e580.bottom {
25+
text-align: right;
26+
border: 1px solid #F0F;
27+
}.ac4b036d.atom {
28+
border: 1px solid green;
29+
padding: 10px;
30+
display: inline-block;
31+
margin-right: 10px;
32+
margin-bottom: 10px;
33+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
Object.defineProperty(this, "PACKAGE_NAME", { value: "production_simple_frontend", configurable: true })
2+
3+
if (this[ATOMIC_REACT][ATOMS][PACKAGE_NAME] == undefined) {
4+
Object.defineProperty(this[ATOMIC_REACT][ATOMS], `${PACKAGE_NAME}`, { value: {} });
5+
}
6+
define("global.module.css", ["require", "exports", "atomicreact"], function (require, exports, atomicreact_1) {
7+
"use strict";
8+
Object.defineProperties(exports, {"__esModule": { value: true }, "default": { value: {} }});
9+
eval(`["app","largerText"]`)
10+
.forEach(token => {
11+
exports.default[token] = `a2d554a8 ${token}`;
12+
Object.defineProperty(exports, token, {get: function(){
13+
return exports.default[token]
14+
}})
15+
})
16+
});define("my_atoms/my_first_atom.module.css", ["require", "exports", "atomicreact"], function (require, exports, atomicreact_1) {
17+
"use strict";
18+
Object.defineProperties(exports, {"__esModule": { value: true }, "default": { value: {} }});
19+
eval(`["atom","main-buttons","bottom"]`)
20+
.forEach(token => {
21+
exports.default[token] = `a5f7e580 ${token}`;
22+
Object.defineProperty(exports, token, {get: function(){
23+
return exports.default[token]
24+
}})
25+
})
26+
});define("my_atoms/pizza/style.module.css", ["require", "exports", "atomicreact"], function (require, exports, atomicreact_1) {
27+
"use strict";
28+
Object.defineProperties(exports, {"__esModule": { value: true }, "default": { value: {} }});
29+
eval(`["atom"]`)
30+
.forEach(token => {
31+
exports.default[token] = `ac4b036d ${token}`;
32+
Object.defineProperty(exports, token, {get: function(){
33+
return exports.default[token]
34+
}})
35+
})
36+
});define("app", ["require", "exports", "atomicreact/lib/JSX/jsx-runtime", "atomicreact", "./my_atoms/my_first_atom.jsx", "./app.module.css"], function (require, exports, jsx_runtime_1, atomicreact_1, my_first_atom_jsx_1, app_module_css_1) {
37+
"use strict";
38+
Object.defineProperty(exports, "__esModule", { value: true });
39+
exports.AppAtom = void 0;
40+
class AppAtom extends atomicreact_1.AtomicClass {
41+
onRender() {
42+
console.log("App was rendered!");
43+
}
44+
struct = (props, atom) => ((0, jsx_runtime_1.jsxs)("div", { class: app_module_css_1.app, children: [(0, jsx_runtime_1.jsxs)("h2", { children: ["Im App Atom (#", atom.id, ")"] }), (0, jsx_runtime_1.jsxs)(my_first_atom_jsx_1.MyFirstAtom, { title: "This is my Title", description: "And this is my Description", claps: 17, onRendered: (id) => {
45+
console.log(`Atom #${id} was rendered`);
46+
this.someAction();
47+
}, sub: "myAtom", children: [(0, jsx_runtime_1.jsx)("h4", { children: "Im in nucleus of my_first_atom" }), (0, jsx_runtime_1.jsxs)("ul", { children: [(0, jsx_runtime_1.jsx)("li", { children: "item A" }), (0, jsx_runtime_1.jsx)("li", { sub: "itemB", children: "item B" }), (0, jsx_runtime_1.jsx)("li", { children: "item C" })] })] })] }));
48+
someAction = () => {
49+
console.log(`#${this.id}`, "someAction() fired");
50+
};
51+
}
52+
exports.AppAtom = AppAtom;
53+
});
54+
define("index", ["require", "exports", "atomicreact", "./app.jsx"], function (require, exports, atomicreact_1, app_jsx_1) {
55+
"use strict";
56+
Object.defineProperty(exports, "__esModule", { value: true });
57+
atomicreact_1.AtomicReact.onLoad = () => {
58+
console.log(`AtomicReact loaded! Rendering atoms...`);
59+
atomicreact_1.AtomicReact.renderElement((new app_jsx_1.AppAtom()), document.getElementById("app"));
60+
};
61+
});
62+
define("my_atoms/my_first_atom", ["require", "exports", "atomicreact/lib/JSX/jsx-runtime", "atomicreact", "./pizza/index.jsx", "./my_first_atom.module.css", "../global.module.css"], function (require, exports, jsx_runtime_1, atomicreact_1, index_jsx_1, my_first_atom_module_css_1, global_module_css_1) {
63+
"use strict";
64+
Object.defineProperty(exports, "__esModule", { value: true });
65+
exports.MyFirstAtom = void 0;
66+
var Subs;
67+
(function (Subs) {
68+
Subs[Subs["ClapButton"] = 0] = "ClapButton";
69+
Subs["ClapSpan"] = "ClapSpan";
70+
Subs["PizzaButton"] = "PizzaButton";
71+
})(Subs || (Subs = {}));
72+
class MyFirstAtom extends atomicreact_1.AtomicClass {
73+
props;
74+
clapButton;
75+
clapSpan;
76+
pizzaButton;
77+
constructor(props) {
78+
super(props);
79+
this.props = props;
80+
}
81+
struct = ({ title, description, claps, onRendered: someFunction }, atom) => ((0, jsx_runtime_1.jsxs)("div", { class: my_first_atom_module_css_1.default.atom, children: [(0, jsx_runtime_1.jsxs)("h3", { children: [atom.key, " | ", title, " (#", this.id, ")"] }), (0, jsx_runtime_1.jsx)("p", { children: description }), (0, jsx_runtime_1.jsx)("button", { class: my_first_atom_module_css_1.default["main-buttons"], sub: Subs.PizzaButton, children: "Give slice of \uD83C\uDF55" }), (0, jsx_runtime_1.jsx)("div", { nucleus: true }), (0, jsx_runtime_1.jsxs)("div", { class: my_first_atom_module_css_1.bottom, children: [(0, jsx_runtime_1.jsxs)("p", { children: [(0, jsx_runtime_1.jsx)("span", { class: global_module_css_1.largerText, sub: Subs.ClapSpan, children: claps }), " \uD83D\uDC4F"] }), (0, jsx_runtime_1.jsx)("button", { sub: Subs.ClapButton, children: "\uD83D\uDC4F this Atom" })] })] }));
82+
onRender() {
83+
console.log(`on render of atom #${this.id} with props`, this.props, "Subs: ", Subs);
84+
this.clapButton = this.getSub(Subs.ClapButton);
85+
this.clapSpan = this.getSub(Subs.ClapSpan);
86+
this.pizzaButton = this.getSub(Subs.PizzaButton);
87+
this.clapButton.onclick = this.clap.bind(this);
88+
this.pizzaButton.onclick = this.addPizza.bind(this);
89+
if (this.props.onRendered)
90+
this.props.onRendered(this.id);
91+
}
92+
clap(ev) {
93+
ev.preventDefault();
94+
console.log("Clap button fired!");
95+
this.props.claps++;
96+
this.clapSpan.innerText = `${this.props.claps}`;
97+
}
98+
addPizza(ev) {
99+
const randomColor = Math.floor(Math.random() * 0xFFFFFF).toString(16).padStart(6, "0");
100+
this.add(new index_jsx_1.PizzaAtom({ bgColor: `#${randomColor}` }));
101+
}
102+
}
103+
exports.MyFirstAtom = MyFirstAtom;
104+
});
105+
define("my_atoms/pizza/index", ["require", "exports", "atomicreact/lib/JSX/jsx-runtime", "atomicreact", "./style.module.css"], function (require, exports, jsx_runtime_1, atomicreact_1, style_module_css_1) {
106+
"use strict";
107+
Object.defineProperty(exports, "__esModule", { value: true });
108+
exports.PizzaAtom = void 0;
109+
class PizzaAtom extends atomicreact_1.AtomicClass {
110+
props;
111+
constructor(props) {
112+
super(props);
113+
this.props = props;
114+
}
115+
struct = () => ((0, jsx_runtime_1.jsx)("div", { class: style_module_css_1.atom, style: `background-color: ${this.props.bgColor || "#00000000"}`, children: "\uD83C\uDF55" }));
116+
}
117+
exports.PizzaAtom = PizzaAtom;
118+
});
119+
if (Object.keys(this[ATOMIC_REACT][DEFINES]).length == 0) {
120+
121+
window.addEventListener(this[ATOMIC_REACT][LIB].AtomicReact.AtomicEvents.LOGIC_LOADED, function (event) {
122+
window.addEventListener("load", function (event) {
123+
if (this[ATOMIC_REACT][LIB].AtomicReact.onLoad) this[ATOMIC_REACT][LIB].AtomicReact.onLoad()
124+
});
125+
});
126+
127+
window.dispatchEvent(new CustomEvent(this[ATOMIC_REACT].lib.AtomicReact.AtomicEvents.LOGIC_LOADED))
128+
}
129+

0 commit comments

Comments
 (0)