neo.mjs 6.9.5 → 6.9.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/.github/CONCEPT.md +2 -2
  2. package/.github/NEOMJS_HISTORY.md +2 -2
  3. package/README.md +10 -10
  4. package/apps/ServiceWorker.mjs +2 -2
  5. package/apps/covid/Util.mjs +1 -1
  6. package/apps/covid/view/HeaderContainer.mjs +1 -1
  7. package/apps/covid/view/MainContainerController.mjs +1 -1
  8. package/apps/learnneo/neo-config.json +1 -0
  9. package/apps/learnneo/store/Content.mjs +52 -2
  10. package/apps/learnneo/view/home/ContentTreeList.mjs +34 -4
  11. package/apps/learnneo/view/home/MainContainer.mjs +17 -29
  12. package/apps/learnneo/view/home/MainContainerController.mjs +15 -25
  13. package/apps/learnneo/view/home/MainContainerModel.mjs +35 -0
  14. package/apps/route/view/HeaderContainer.mjs +1 -1
  15. package/apps/sharedcovid/Util.mjs +1 -1
  16. package/apps/sharedcovid/view/HeaderContainer.mjs +1 -1
  17. package/apps/sharedcovid/view/MainContainerController.mjs +1 -1
  18. package/apps/website/view/blog/List.mjs +1 -1
  19. package/apps/website/view/examples/List.mjs +1 -1
  20. package/examples/ServiceWorker.mjs +2 -2
  21. package/examples/component/coronaGallery/CountryGallery.mjs +1 -1
  22. package/examples/component/coronaHelix/CountryHelix.mjs +1 -1
  23. package/examples/component/toast/resources/highlight/CHANGES.md +2 -2
  24. package/examples/component/toast/resources/highlight/README.md +2 -2
  25. package/examples/form/field/textarea/MainContainer.mjs +7 -1
  26. package/examples/grid/covid/Util.mjs +1 -1
  27. package/examples/preloadingAssets/view/MainContainer.mjs +2 -2
  28. package/examples/preloadingAssets/view/MainContainerController.mjs +1 -1
  29. package/examples/table/covid/Util.mjs +1 -1
  30. package/package.json +1 -1
  31. package/resources/data/learnneo/p/2023-10-01T18-29-19-158Z.md +96 -0
  32. package/resources/data/learnneo/p/2023-10-07T19-18-28-517Z.md +102 -0
  33. package/resources/data/learnneo/p/2023-10-08T20-20-07-934Z.md +75 -0
  34. package/resources/data/learnneo/p/2023-10-08T20-20-37-336Z.md +29 -0
  35. package/resources/data/learnneo/p/2023-10-08T20-37-30-658Z.md +0 -0
  36. package/resources/data/learnneo/p/2023-10-08T21-58-25-809Z.md +68 -0
  37. package/resources/data/learnneo/p/2023-10-08T22-22-11-013Z.md +0 -0
  38. package/resources/data/learnneo/p/2023-10-14T19-25-08-153Z.md +121 -0
  39. package/resources/data/learnneo/pages/whyneo.md +4 -0
  40. package/resources/data/learnneo/t.json +130 -0
  41. package/resources/deck/whyneo.md +80 -0
  42. package/resources/scss/src/apps/learnneo/Viewport.scss +57 -0
  43. package/resources/scss/src/component/Base.scss +16 -16
  44. package/resources/scss/theme-dark/component/Base.scss +6 -0
  45. package/resources/scss/theme-dark/menu/List.scss +0 -1
  46. package/resources/scss/theme-light/component/Base.scss +6 -0
  47. package/resources/scss/theme-light/menu/List.scss +0 -1
  48. package/src/DefaultConfig.mjs +2 -2
  49. package/src/form/field/TextArea.mjs +52 -0
  50. package/src/main/DomAccess.mjs +23 -0
  51. /package/resources/data/learnneo/{content.json → tree.json} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "6.9.5",
3
+ "version": "6.9.7",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {
@@ -0,0 +1,96 @@
1
+ Neo.mjs is a framework used to create browser-based applications.
2
+
3
+ Some key features and benefits of Neo.mjs are:
4
+
5
+ <details>
6
+ <summary>Multi-Threaded</summary>
7
+ <p>
8
+ When a Neo.mjs application starts, the framework spawns three web-workers, in addition
9
+ to the main browser thread, resulting in:
10
+ <ol>
11
+ <li>The <b>main</b> browser thread, where DOM updates are applied
12
+ <li>An <b>application</b> web-worker where normal application locic is run
13
+ <li>A <b>data</b> web-worker were HTTP and socket calls are run
14
+ <li>A <b>view</b> web-worker that manages delta updates
15
+ </ol>
16
+ </details>
17
+ <details>
18
+ <summary>Extreme Speed</summary>
19
+ <p>
20
+ Web-worker proccesses are automatically run in parallel, on separate CPU cores.
21
+ </p>
22
+ <p>
23
+ By contrast, other JavaScript frameworks run in a single thread. That means
24
+ in a typical framework all business logic, data handling, and DOM rendering compete for
25
+ CPU reasources.
26
+ </p>
27
+ <p>
28
+ This means Neo.mjs applications run and render faster. This is
29
+ particularly beneficial for processor- and data-intensive applications,
30
+ and applications that need to rapidly update what's viewed. In testing, Neo.mjs applications
31
+ easily apply over 20,000 DOM updates per second.
32
+ </p>
33
+ <p>
34
+ If the default four threads aren't enough, you're free to launch additional web-worker threads
35
+ to run other specialized logic.
36
+ </p>
37
+ </details>
38
+ <details>
39
+ <summary>Quick Application Development</summary>
40
+ <p>
41
+ Neo.js classes let you specify properties in a way that allows code to detect "before" and "after"
42
+ changes. This makes it easy to handle value validation and transformation, and react to changes.
43
+ </p>
44
+ <p>
45
+ Neo.mjs also has elegant yet powerful state management features that make it easy to create shared,
46
+ bindable data. For example, if two components are bound to the same propery, a change to the
47
+ property will automatically be applied to both components.
48
+ </p>
49
+ <p>
50
+ Debugging is also easy because Neo.mjs uses standard JavaScript, the Neo.mjs class
51
+ config system, and built-in debugging tools. For example, while developing an application
52
+ you can click on a component, and in the debugger easily inspect the component and
53
+ update its properties &dash; these updates are immediately reflected in the running application.
54
+ </p>
55
+ </details>
56
+ <details>
57
+ <summary>Multi-Window Applications</summary>
58
+ <p>
59
+ Neo.mjs applications can also launch as <i>shared web workers</i>, which allows you to have a single
60
+ application run in multiple browser windows; those windows could be moved to multiple monitors.
61
+ </p>
62
+ <p>
63
+ For example, you can have a data analysis application with a control panel on one monitor,
64
+ tabular data in another, and charts on another &mdash; all sharing the same data, handling events
65
+ across windows, running seamlessly as a single application.
66
+ </p>
67
+ </details>
68
+ <details>
69
+ <summary>Open-Source and Standards-Based</summary>
70
+ <p>
71
+ Neo.mjs is an open-source library. Features needed for the community can be added to the
72
+ library via pull-requests. And since Neo.mjs uses the standard JavaScript class system,
73
+ all Neo.mjs classes can be extended.
74
+ </p>
75
+ <p>
76
+ Neo.mjs uses standard modular JavaScript, so developers don't need to learn non-standard language
77
+ syntax, and there's no need for special pre-compilers or WebPack modules.
78
+ That means fewer dependencies and easier configuration. Furthermore, the use of
79
+ standard JavaScript makes debugging easier: any statement you write while developing your
80
+ applcation can also be run in the debugging console.
81
+ </p>
82
+ </details>
83
+ <details>
84
+ <summary>Scalable</summary>
85
+ <p>
86
+ Applications can become exponentially difficult to implement as application
87
+ complexity increases. In contrast, the effort to code applications in Neo.mjs
88
+ is fairly linear. This is because of the Neo.mjs approach to binding, separation
89
+ of concerns, extensibility, and being standards based
90
+ </p>
91
+ <p>
92
+ Neo.mjs isn't just architecturally scalable &mdash; because of its multi-threaded
93
+ nature, it's designed to handles rapid DOM updates, data traffic, and processor-
94
+ intensive business logic.
95
+ </p>
96
+ </details>
@@ -0,0 +1,102 @@
1
+ Neo.mjs classes are standard JavaSript classes. Every source file
2
+ you write will be a class definition, extending some Neo.mjs
3
+ class.
4
+
5
+ <pre class="neo">
6
+ import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
7
+
8
+ class Mammal extends Base {
9
+ static config = {
10
+ className: 'Simple.example.Mammal'
11
+ }
12
+ }
13
+
14
+ const myMammal = Neo.create(Mammal);
15
+
16
+ Neo.applyClassConfig(Mammal); // Where Neo.mjs initialializes the class config.
17
+ export default Mammal; // Makes the class available elsewhere.
18
+ </pre>
19
+
20
+ In the example above, we're extending the Neo.mjs base class. The static
21
+ config block describes the class we're defining.
22
+
23
+ All classes specify `className`; you'll add other config properties to describe the class.
24
+
25
+ The `const myMammal = Neo.create(Mammal);` statement creates an instance of
26
+ our class. For the sake of our discussion we're putting that statement in the same source
27
+ file where the class is defined, but normally your code would import the class elsewhere,
28
+ and create instances as needed.
29
+
30
+ Let's add a `name` propery to the class.
31
+
32
+ <pre class="neo" style="color:gray">
33
+ import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
34
+
35
+ class Mammal extends Base {
36
+ static config = {
37
+ className: 'Simple.example.Mammal',
38
+
39
+ <span style="color:#b91010">name: 'Anonymous'</span>
40
+ }
41
+ }
42
+
43
+ const myMammal = Neo.create(Mammal);
44
+ console.log(<span style="color:#b91010">myMammal.name</span>); // Logs "Anonymous"
45
+ <span style="color:#b91010">myMammal.name</span> = 'Herbert';
46
+ console.log(<span style="color:#b91010">myMammal.name</span>); // Logs "Herbert"
47
+
48
+ Neo.applyClassConfig(Mammal);
49
+
50
+ export default Mammal;
51
+ </pre>
52
+
53
+ In Neo.mjs, instance properties are usually added in the `static config` block.
54
+ The `static config` block does two things:
55
+ - It formally describes the properties API for your class.
56
+ - It lets Neo.mjs manage the initialization and lifecycle of those properties.
57
+
58
+ Think of the `static config` block as "these are the properties
59
+ that can be set as instances are created." Config properties can be introduced
60
+ anywhere in the class hierarchy.
61
+
62
+ Since our class defines a `name` property, we can specify that when creating
63
+ the instance, using the second argument to the `create` method.
64
+
65
+ <pre class="neo" style="color:gray">
66
+ const myMammal = Neo.create(Mammal, <span style="color:#b91010">{
67
+ name: 'Creature'
68
+ }</span>);
69
+ console.log(myMammal.name); // Logs "Creature"
70
+ </pre>
71
+
72
+
73
+ Since _you_ define those properties, you can
74
+ look for them in class methods and use them as needed.
75
+ Let's add a `speak()` method that uses the `name` property.
76
+
77
+ <pre class="neo" style="color:gray">
78
+ import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
79
+
80
+ class Mammal extends Base {
81
+ static config = {
82
+ className: 'Simple.example.Mammal',
83
+
84
+ name: 'Anonymous'
85
+ }
86
+ <span style="color:#b91010">speak(){
87
+ console.log(`${this.name} is grunting`);
88
+ }</span>
89
+ }
90
+
91
+ const myMammal = Neo.create(Mammal, {
92
+ name: 'Creature'
93
+ });
94
+ <span style="color:#b91010">myMammal.speak();</span> // Logs "Creature is grunting."
95
+
96
+ Neo.applyClassConfig(Mammal);
97
+
98
+ export default Mammal;
99
+ </pre>
100
+
101
+
102
+
@@ -0,0 +1,75 @@
1
+ In Neo.mjs you sub-class and override methods in the usual way.
2
+
3
+ Here, we'll extend `Mammal` and override the `speak()` method.
4
+ (For brevity, we'll exclude `export` and `import` statements.)
5
+
6
+ <pre class="neo">
7
+ class Mammal extends Base {
8
+ static config = {
9
+ className: 'Simple.example.Mammal',
10
+
11
+ name: 'Anonymous'
12
+ }
13
+ speak(){
14
+ console.log(`(${this.name} is grunting)`);
15
+ }
16
+ }
17
+ Neo.applyClassConfig(Mammal);
18
+ </pre>
19
+ <pre class="neo">
20
+ class Human extends Mammal {
21
+ static config = {
22
+ className: 'Simple.example.Human',
23
+ }
24
+ speak(){
25
+ console.log(`Hello! My name is ${this.name}. I am ${this.married?'':'not'} married.`);
26
+ }
27
+ }
28
+
29
+ const myMammal = Neo.create(Human, {
30
+ name: 'Herbert'
31
+ });
32
+ myMammal.speak(); // Logs "Hello! My name is Herbert. I am not married."
33
+
34
+ Neo.applyClassConfig(Mammal);
35
+ </pre>
36
+
37
+ Any class in the hierarchy is free to add new properties and methods. Let's add
38
+ a property and behavior (method) to the Human class.
39
+
40
+ <pre class="neo">
41
+ import Base from '../../../node_modules/neo.mjs/src/core/Base.mjs';
42
+
43
+ class Mammal extends Base {
44
+ static config = {
45
+ className: 'Simple.example.Mammal',
46
+
47
+ name: 'Anonymous'
48
+ }
49
+ speak(){
50
+ console.log(`(${this.name} is grunting)`);
51
+ }
52
+ }
53
+ </pre>
54
+ <pre class="neo">
55
+ class Human extends Mammal {
56
+ static config = {
57
+ className: 'Simple.example.Human',
58
+ name: 'J. Doe',
59
+ married: false
60
+ }
61
+ speak(){
62
+ console.log(`Hello! My name is ${this.name}. I am ${this.married?'':'not'} married.`);
63
+ },
64
+ yodel(){
65
+ console.log('Yodelay hee hoo!');
66
+ }}
67
+
68
+ const myPerson = Neo.create(Human, {
69
+ name: 'Herbert'
70
+ });
71
+ myPerson.speak(); // Logs "Hello! My name is Herbert. I am not married."
72
+ myPerson.yodel(); // Logs "Yedelay hee hoo!"
73
+
74
+ Neo.applyClassConfig(Human);
75
+ </pre>
@@ -0,0 +1,29 @@
1
+ Neo.mjs uses standard modular JavaScript, so you're free to use other class
2
+ features, like private members.
3
+ <pre class="neo">
4
+ class Human extends Mammal {
5
+ static config = {
6
+ className: 'Simple.example.Human',
7
+ name: 'J. Doe',
8
+ married: false,
9
+ }
10
+ static #privateStaticField = 'foo'
11
+ #privateInstanceField = 'bar'
12
+ #privateInstanceMethod(){
13
+ console.log(`Psst. Don't tell anyone, but ${this.#privateInstanceField} and ${Human.#privateStaticField}`);
14
+ }
15
+ speak(tellSecret){
16
+ console.log(`Hello! My name is ${this.name}. I am ${this.married?'':'not'} married.`);
17
+ if (tellSecret) this.#privateInstanceMethod();
18
+ }
19
+ yodel(){
20
+ console.log('Yodelay hee hoo!');
21
+ }}
22
+
23
+ const myPerson = Neo.create(Human, {
24
+ name: 'Herbert'
25
+ });
26
+ myPerson.speak(true);
27
+
28
+ Neo.applyClassConfig(Human);
29
+ </pre>
@@ -0,0 +1,68 @@
1
+ To call a super-class method use the `super` keyword.
2
+
3
+ <pre class="neo" style="color:gray">
4
+ class Mammal extends Base {
5
+ static config = {
6
+ className: 'Simple.example.Mammal',
7
+
8
+ name: 'Anonymous'
9
+ }
10
+ doSomething(){
11
+ console.log(`${this.name} is doing something mammals do`)
12
+ }
13
+ }
14
+ Neo.applyClassConfig(Mammal);
15
+ </pre>
16
+ <pre class="neo" style="color:gray">
17
+ class Human extends Mammal {
18
+ static config = {
19
+ className: 'Simple.example.Human',
20
+ }
21
+ doSomething(){
22
+ <span style="color:#b91010">super.doSomething();</span>
23
+ console.log(`${this.name} is doing something humans do`)
24
+ }
25
+ }
26
+
27
+ const myPerson = Neo.create(Human, {
28
+ name: 'Herbert'
29
+ });
30
+ myPerson.doSomething();
31
+
32
+ Neo.applyClassConfig(Mammal);
33
+ </pre>
34
+
35
+ Sometimes you aren't sure if a super class has a method. In that case use the
36
+ conditional chaining operator &mdash; `?.`
37
+
38
+ <pre class="neo" style="color:gray">
39
+ class Mammal extends Base {
40
+ static config = {
41
+ className: 'Simple.example.Mammal',
42
+
43
+ name: 'Anonymous'
44
+ }
45
+ doSomething(){
46
+ console.log(`${this.name} is doing something mammals do`)
47
+ }
48
+ }
49
+ Neo.applyClassConfig(Mammal);
50
+ </pre>
51
+ <pre class="neo" style="color:gray">
52
+ class Human extends Mammal {
53
+ static config = {
54
+ className: 'Simple.example.Human',
55
+ }
56
+ doSomething(){
57
+ <span style="color:#b91010">super?.doSomething();</span>
58
+ console.log(`${this.name} is doing something humans do`)
59
+ }
60
+ }
61
+
62
+ const myPerson = Neo.create(Human, {
63
+ name: 'Herbert'
64
+ });
65
+ myPerson.doSomething();
66
+
67
+ Neo.applyClassConfig(Mammal);
68
+ </pre>
@@ -0,0 +1,121 @@
1
+ The purpose of this tutorial is to let you see the structure of a Neo.mjs workspace,
2
+ and the strucure of an application.
3
+
4
+ If you haven't already done it, run `npx neo-app` to create a Neo.mjs workspace.
5
+
6
+ <img src="https://raw.githubusercontent.com/neomjs/pages/main/resources/images/learnneo/NeoWorkspace.png" style="height: 400px;">
7
+
8
+ As you can see, a Neo.mjs workspace is a conventional npm workspace. If you run
9
+ the script `npm run server-start` from the workspace, Neo.mjs launches a web
10
+ serve whose doc root is the workspace.
11
+
12
+ <img src="https://raw.githubusercontent.com/neomjs/pages/main/resources/images/learnneo/ServerRoot.png" style="height: 400px;">
13
+
14
+ If you drill down into the `src` directory you'll see your applications.
15
+ If you drill down into the `docs` directory you'll see the Neo.mjs API docs.
16
+
17
+ In order to discuss the structure of an app, we'll create a simple starter
18
+ app. To do that, run this command from the workspace.
19
+
20
+ `npm run create-app-empty`
21
+
22
+ At the first prompt, name the app `Foo`, and accept the default for everything else.
23
+ The script creates an application structured as follows.
24
+
25
+ <img src="https://raw.githubusercontent.com/neomjs/pages/main/resources/images/learnneo/FooFolder.png" style="height: 400px;">
26
+
27
+ These files are part of the typical structure of a Neo.mjs application. The files `index.html`, `app.mjs`, `neo-config.json`, `view/Viewport.mjs` are rarely modified.
28
+ You will, however, edit the main container, and its associated "controller" and "model",
29
+ as well as create new views, new controllers, etc.
30
+
31
+ Now let's look at a source file. This is the contents of `MainView.mjs`.
32
+
33
+ <pre class="neo">
34
+ import Base from '../../../node_modules/neo.mjs/src/container/Base.mjs';
35
+ import Controller from './MainViewController.mjs';
36
+ import ViewModel from './MainViewModel.mjs';
37
+
38
+ class MainView extends Base {
39
+ static config = {
40
+ className: 'Foo.view.MainView',
41
+
42
+ controller: {module: Controller},
43
+ model: {module: ViewModel},
44
+
45
+ layout: {ntype: 'fit'},
46
+ items: [],
47
+ }
48
+ }
49
+
50
+ Neo.applyClassConfig(MainView);
51
+
52
+ export default MainView;
53
+ </pre>
54
+
55
+ Neo.mjs views are composed of components. A component can be a "container", which means it
56
+ visually holds or groups other components, or a regular component, like a button. The main
57
+ view is a container, which you can see because `MainView extends Base`, and `Base` is
58
+ the container base class. The items in a container are configured in the `items:[]`, which
59
+ is empty in this starter code.
60
+
61
+ This view also has a "controller" and "model". We'll talk about those later, but in a nutshell,
62
+ a controller is where event handling and app logic goes, and a model is where you set up shared
63
+ bindable data.
64
+
65
+ We'll go into a lot more depth about view, controllers, and models in other topics, but to let
66
+ you see how a component is configured let's put a button in the container.
67
+
68
+ First, we need to import the class that defines buttons. Then we'll describe the new button in the
69
+ `items:[].`
70
+
71
+ <pre class="neo">
72
+
73
+ import Base from '../../../node_modules/neo.mjs/src/container/Base.mjs';
74
+ import Controller from './MainViewController.mjs';
75
+ import ViewModel from './MainViewModel.mjs';
76
+ import Button from '../../../node_modules/neo.mjs/src/button/Base.mjs';
77
+
78
+ class MainView extends Base {
79
+ static config = {
80
+ className: 'Foo.view.MainView',
81
+
82
+ controller: {module: Controller},
83
+ model: {module: ViewModel},
84
+
85
+ layout: {ntype: 'fit'},
86
+ items: [{
87
+ module: Button,
88
+ text: 'Button'
89
+ }],
90
+ }
91
+ }
92
+
93
+ Neo.applyClassConfig(MainView);
94
+
95
+ export default MainView;
96
+ </pre>
97
+
98
+ Note the entry in +items:[]+. That's a description of the button that'll be created as the single
99
+ item in our container. In Neo.mjs terms we're _configuring_ the button. Neo.mjs is _declarative_,
100
+ which components and objects are _described_. It's an abstraction. In other words we're saying
101
+ what we want, but not how it's done. We want a button with some text &mdash; how that's done
102
+ isn't important here in the container. A non-declarative approach would be more focused on _how_,
103
+ where you might way "I want a &lt;button> HTML element with its innerHTML set to some value."
104
+
105
+ In another topic you'll learn about the Neo.mjs config system and declaratively describing
106
+ views, controllers, and other things.
107
+
108
+ If you run the +foo+ app you'll see one huge button. That's because the container is configured to
109
+ use the "fit" layout, which means the container is designed to hold one and only one component,
110
+ and that component will take up all available space. We could get a more normal looking button
111
+ by changing the layout.
112
+
113
+ `layout: {type:'vbox', align:'start},`
114
+
115
+ Change that line and look at the running application.
116
+
117
+ Neo.mjs has scores of component classes.
118
+ You can extend them to create your own reusable components and sets of components.
119
+
120
+ Other topics discuss coding applications, how the config system works, controllers,
121
+ and bindable data. However, as long as we're here
@@ -1,3 +1,7 @@
1
+
2
+ #hi
3
+
4
+
1
5
  Neo.mjs is a framework used to create browser-based applications.
2
6
 
3
7
  Some key features and benefits of Neo.mjs are:
@@ -0,0 +1,130 @@
1
+ {
2
+ "data": [
3
+ {
4
+ "id": "2023-10-01T18-29-19-158Z",
5
+ "parentId": null,
6
+ "isLeaf": true,
7
+ "name": "Why Neo.mjs?"
8
+ },
9
+ {
10
+ "id": "2023-09-26T17-26-15-104Z",
11
+ "parentId": null,
12
+ "isLeaf": false,
13
+ "name": "Getting Started"
14
+ },
15
+ {
16
+ "id": "2023-10-12T12-59-22-082Z",
17
+ "parentId": null,
18
+ "isLeaf": false,
19
+ "name": "Source Files"
20
+ },
21
+ {
22
+ "id": "2023-10-14T19-25-08-153Z",
23
+ "parentId": "2023-10-12T12-59-22-082Z",
24
+ "isLeaf": true,
25
+ "name": "Neo.mjs workspaces"
26
+ },
27
+ {
28
+ "id": "2023-10-08T18-26-31-357Z",
29
+ "parentId": null,
30
+ "isLeaf": false,
31
+ "name": "Class Definitions and Config"
32
+ },
33
+ {
34
+ "id": "2023-10-08T20-39-23-708Z",
35
+ "parentId": "2023-10-08T18-26-31-357Z",
36
+ "isLeaf": false,
37
+ "name": "Class Basics"
38
+ },
39
+ {
40
+ "id": "2023-10-07T19-18-28-517Z",
41
+ "parentId": "2023-10-08T20-39-23-708Z",
42
+ "isLeaf": true,
43
+ "name": "Classes, Properties, and Methods"
44
+ },
45
+ {
46
+ "id": "2023-10-08T20-20-07-934Z",
47
+ "parentId": "2023-10-08T20-39-23-708Z",
48
+ "isLeaf": true,
49
+ "name": "Overriding Methods"
50
+ },
51
+ {
52
+ "id": "2023-10-08T20-20-37-336Z",
53
+ "parentId": "2023-10-08T20-39-23-708Z",
54
+ "isLeaf": true,
55
+ "name": "Other JavaScript Class Features"
56
+ },
57
+ {
58
+ "id": "2023-10-08T21-58-25-809Z",
59
+ "parentId": "2023-10-08T20-39-23-708Z",
60
+ "isLeaf": true,
61
+ "name": "Super"
62
+ },
63
+ {
64
+ "id": "2023-10-08T20-37-30-658Z",
65
+ "parentId": "2023-10-08T18-26-31-357Z",
66
+ "isLeaf": true,
67
+ "name": "The Constructor"
68
+ },
69
+ {
70
+ "id": "2023-10-08T22-22-11-013Z",
71
+ "parentId": "2023-10-08T18-26-31-357Z",
72
+ "isLeaf": true,
73
+ "name": "super"
74
+ },
75
+ {
76
+ "id": "2023-09-25T20-27-55-600Z",
77
+ "parentId": null,
78
+ "isLeaf": false,
79
+ "name": "Config"
80
+ },
81
+ {
82
+ "id": "2023-09-25T20-27-38-129Z",
83
+ "parentId": null,
84
+ "isLeaf": false,
85
+ "name": "Component Basics"
86
+ },
87
+ {
88
+ "id": "2023-09-25T20-28-12-355Z",
89
+ "parentId": null,
90
+ "isLeaf": false,
91
+ "name": "User Input (Forms)"
92
+ },
93
+ {
94
+ "id": "2023-09-25T20-28-33-035Z",
95
+ "parentId": null,
96
+ "isLeaf": false,
97
+ "name": "Data"
98
+ },
99
+ {
100
+ "id": "2023-09-25T20-28-51-807Z",
101
+ "parentId": null,
102
+ "isLeaf": false,
103
+ "name": "Component Models and Binding"
104
+ },
105
+ {
106
+ "id": "2023-09-25T20-29-19-770Z",
107
+ "parentId": null,
108
+ "isLeaf": false,
109
+ "name": "Multi-Window"
110
+ },
111
+ {
112
+ "id": "2023-09-25T20-29-28-307Z",
113
+ "parentId": null,
114
+ "isLeaf": false,
115
+ "name": "Main Thread Add-onss"
116
+ },
117
+ {
118
+ "id": "2023-09-26T17-31-48-754Z",
119
+ "parentId": null,
120
+ "isLeaf": false,
121
+ "name": "Custom Components and vdom"
122
+ },
123
+ {
124
+ "id": "2023-10-16T19-38-29-590Z",
125
+ "parentId": null,
126
+ "isLeaf": false,
127
+ "name": "Mixins"
128
+ }
129
+ ]
130
+ }