|
| 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