jsgui3-server 0.0.122 → 0.0.123
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.
- package/examples/box/2) twenty square boxes/css flex wrap/client.js +2 -138
- package/examples/box/2) twenty square boxes/css flex wrap/server.js +1 -74
- package/examples/box/3) twenty selectable square boxes/css flex wrap/client.js +129 -0
- package/examples/box/3) twenty selectable square boxes/css flex wrap/server.js +39 -0
- package/examples/controls/10) window, mirrored text inputs/client.js +0 -202
- package/examples/controls/10) window, mirrored text inputs/server.js +2 -82
- package/examples/controls/11) window, mirrored text fields/server.js +1 -1
- package/examples/controls/12) window, Select_Options control/client.js +1 -370
- package/examples/controls/12) window, Select_Options control/server.js +1 -99
- package/examples/controls/13) window, Dropdown_Menu control/client.js +66 -0
- package/examples/controls/13) window, Dropdown_Menu control/server.js +20 -0
- package/examples/controls/5) window, grid/server.js +1 -1
- package/examples/controls/6) window, color_palette/client.js +2 -138
- package/examples/controls/6) window, color_palette/server.js +1 -1
- package/examples/controls/8) window, checkbox/client.js +25 -239
- package/examples/controls/9) window, date picker/client.js +2 -229
- package/examples/controls/9) window, date picker/server.js +1 -1
- package/examples/controls/9b) window, shared data.model mirrored date pickers/README.md +51 -0
- package/examples/controls/9b) window, shared data.model mirrored date pickers/client.js +64 -379
- package/package.json +3 -3
|
@@ -4,74 +4,22 @@ const {dragable} = mixins;
|
|
|
4
4
|
|
|
5
5
|
const Active_HTML_Document = require('../../../../controls/Active_HTML_Document');
|
|
6
6
|
|
|
7
|
-
// Maybe better to include it within an Active_HTML_Document.
|
|
8
|
-
|
|
9
|
-
// Is currently a decent demo of a small active control running from the server, activated on the client.
|
|
10
|
-
// This square box is really simple, and it demonstrates the principle of the code for the draggable square box not being all that complex
|
|
11
|
-
// compared to a description of it.
|
|
12
|
-
|
|
13
|
-
// A container with reorderable internal draggable items could help.
|
|
14
|
-
|
|
15
|
-
// would be nice to be able to have all code in 1 file...???
|
|
16
|
-
// Though the sever code should be separate.
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
// Relies on extracting CSS from JS files.
|
|
20
|
-
|
|
21
7
|
class Demo_UI extends Active_HTML_Document {
|
|
22
8
|
constructor(spec = {}) {
|
|
23
9
|
spec.__type_name = spec.__type_name || 'demo_ui';
|
|
24
10
|
super(spec);
|
|
25
11
|
const {context} = this;
|
|
26
|
-
|
|
27
|
-
// Make sure it requires the correct CSS.
|
|
28
|
-
// Though making that 'effortless' on the server may help more.
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
// Maybe can't do this here???
|
|
32
|
-
|
|
33
|
-
// Does not have .body (yet) on the client.
|
|
34
|
-
// simple way to get the client to attach the body of the Active_HTML_Document?
|
|
35
|
-
// maybe with jsgui-data-controls?
|
|
36
|
-
// Though automatically having the .body property available on the client without sending extra HTTP
|
|
37
|
-
// plumbing will help.
|
|
38
|
-
|
|
39
|
-
// .body will not be available before activation.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
// .body should not be a normal function....?
|
|
43
|
-
// a getter function would be better.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
12
|
if (typeof this.body.add_class === 'function') {
|
|
48
13
|
this.body.add_class('demo-ui');
|
|
49
14
|
}
|
|
50
|
-
|
|
51
|
-
//console.log('this.body', this.body);
|
|
52
|
-
//console.log('this.body.add_class', this.body.add_class);
|
|
53
|
-
|
|
54
|
-
|
|
55
15
|
const compose = () => {
|
|
56
|
-
// put 20 of them in place.
|
|
57
|
-
|
|
58
|
-
// Then how to arrange them...?
|
|
59
|
-
|
|
60
16
|
const n = 20;
|
|
61
|
-
|
|
62
17
|
for (let c = 0; c < n; c++) {
|
|
63
|
-
|
|
64
|
-
// But how to better control where they are positioned to start with?
|
|
65
|
-
|
|
66
18
|
const box = new Square_Box({
|
|
67
19
|
context: context
|
|
68
20
|
})
|
|
69
21
|
this.body.add(box);
|
|
70
22
|
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
23
|
}
|
|
76
24
|
if (!spec.el) {
|
|
77
25
|
compose();
|
|
@@ -82,53 +30,15 @@ class Demo_UI extends Active_HTML_Document {
|
|
|
82
30
|
super.activate();
|
|
83
31
|
const {context} = this;
|
|
84
32
|
|
|
85
|
-
|
|
86
|
-
// listen for the context events regarding frames, changes, resizing.
|
|
33
|
+
console.log('activate Demo_UI');
|
|
87
34
|
|
|
88
35
|
context.on('window-resize', e_resize => {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
// Make all internal controls go absolute in terms of position
|
|
92
|
-
// Remove them from their containers too?
|
|
93
|
-
// Ie their containing divs?
|
|
94
|
-
|
|
95
|
-
// Would be nice to do this really simple with a fn call or very simple piece of code.
|
|
96
|
-
// Like get absolute position, set position to be absolute, move to that position.
|
|
97
|
-
// Maybe something within jsgui3-client helps with this, this is more about what needs to be done on the client.
|
|
98
|
-
// Though recognising perf implications, it's (more) OK to include client-side functionality in jsgui3-html.
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
36
|
+
console.log('window-resize', e_resize);
|
|
104
37
|
|
|
105
38
|
});
|
|
106
|
-
|
|
107
39
|
}
|
|
108
40
|
}
|
|
109
41
|
}
|
|
110
|
-
|
|
111
|
-
// Include this in bundling.
|
|
112
|
-
// Want CSS bundling so that styles are read out from the JS document and compiled to a stylesheet.
|
|
113
|
-
|
|
114
|
-
//controls.Demo_UI = Demo_UI;
|
|
115
|
-
|
|
116
|
-
// A css file may be an easier way to get started...?
|
|
117
|
-
// Want to support but not require css in js.
|
|
118
|
-
|
|
119
|
-
// But need to set up the serving of the CSS both on the server, and on the client.
|
|
120
|
-
// Ofc setting it up on the server first is important - then can that stage set it up in the doc sent to the client?
|
|
121
|
-
|
|
122
|
-
// Including the CSS from the JS like before.
|
|
123
|
-
// Needs to extract the CSS and serve it as a separate CSS file.
|
|
124
|
-
// Should also have end-to-end regression tests so this does not break again in the future.
|
|
125
|
-
// The code was kind of clunky and got refactored away.
|
|
126
|
-
//
|
|
127
|
-
|
|
128
|
-
// Would need to parse the JS files to extract the CSS.
|
|
129
|
-
// Maybe could do it an easier way???
|
|
130
|
-
|
|
131
|
-
|
|
132
42
|
Demo_UI.css = `
|
|
133
43
|
|
|
134
44
|
body {
|
|
@@ -146,14 +56,6 @@ body {
|
|
|
146
56
|
}
|
|
147
57
|
`;
|
|
148
58
|
|
|
149
|
-
// But may want to remove them from that flex upon picking up / dropping them.
|
|
150
|
-
// Maybe best upon drop.
|
|
151
|
-
|
|
152
|
-
// Maybe want other examples that use absolute positioning to position the items at the start?
|
|
153
|
-
//
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
59
|
class Square_Box extends Control {
|
|
158
60
|
constructor(spec) {
|
|
159
61
|
spec.__type_name = spec.__type_name || 'square_box';
|
|
@@ -174,22 +76,8 @@ class Square_Box extends Control {
|
|
|
174
76
|
//console.log('this.dragable = true;');
|
|
175
77
|
|
|
176
78
|
this.on('dragend', e => {
|
|
177
|
-
//console.log('square box dragend e', e);
|
|
178
|
-
//this.background.color = '#FF4444';
|
|
179
|
-
//this.color = '#FF4444';
|
|
180
|
-
//this.dom.el.style.backgroundColor = '#FF4444';
|
|
181
|
-
|
|
182
79
|
this.background.color = '#44FF44';
|
|
183
|
-
// this.background.color perhaps?
|
|
184
|
-
|
|
185
|
-
//console.log('this.bcr()', this.bcr());
|
|
186
80
|
const bcr = this.bcr();
|
|
187
|
-
//console.log('bcr', bcr);
|
|
188
|
-
|
|
189
|
-
// Can we make this one absolutely positioned?
|
|
190
|
-
|
|
191
|
-
// Def looks like the dragable mixin needs to be fixed to handle all (probable) cases better.
|
|
192
|
-
|
|
193
81
|
const absolutise_position = () => {
|
|
194
82
|
const style = this.dom.attributes.style;
|
|
195
83
|
// but need to move it to the body....
|
|
@@ -205,11 +93,8 @@ class Square_Box extends Control {
|
|
|
205
93
|
// use it when using a higher level api though.
|
|
206
94
|
this.ta[7] = 0;
|
|
207
95
|
}
|
|
208
|
-
|
|
209
96
|
absolutise_position();
|
|
210
|
-
|
|
211
97
|
});
|
|
212
|
-
|
|
213
98
|
}
|
|
214
99
|
}
|
|
215
100
|
}
|
|
@@ -221,28 +106,7 @@ Square_Box.css = `
|
|
|
221
106
|
}
|
|
222
107
|
`;
|
|
223
108
|
|
|
224
|
-
// then if running on the client...?
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
//controls.Square_Box = Square_Box;
|
|
229
|
-
// could export jsgui with the updated controls....
|
|
230
|
-
// so that they are in the correct Page Context.?
|
|
231
|
-
|
|
232
|
-
|
|
233
109
|
controls.Demo_UI = Demo_UI;
|
|
234
110
|
controls.Square_Box = Square_Box;
|
|
235
111
|
|
|
236
112
|
module.exports = jsgui;
|
|
237
|
-
|
|
238
|
-
/*
|
|
239
|
-
module.exports = {
|
|
240
|
-
Square_Box: Square_Box,
|
|
241
|
-
Demo_UI: Demo_UI
|
|
242
|
-
}
|
|
243
|
-
*/
|
|
244
|
-
|
|
245
|
-
// Then if window...?
|
|
246
|
-
|
|
247
|
-
// Need to add the Square_Box control to the context or original map of controls...
|
|
248
|
-
|
|
@@ -3,79 +3,8 @@ const jsgui = require('./client');
|
|
|
3
3
|
const {Demo_UI, Square_Box} = jsgui.controls;
|
|
4
4
|
const Server = require('../../../../server');
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
// what would be the (best?) way to include the whole thing in one JS file?
|
|
8
|
-
// Maybe don't try that right now.
|
|
9
|
-
// maybe standardise on the dir, then client.js and server.js inside.
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
// Want to exclude this from the client bundle.
|
|
14
|
-
// Some kind of marking to say that it's server-side only?
|
|
15
|
-
|
|
16
|
-
// Need to include JSGUI3 js within the client document.
|
|
17
|
-
// Seems like an earlier code simplification removed this functionality?
|
|
18
|
-
// Just specifying a Ctrl for the server - and giving it the 'disk_path_client_js'.
|
|
19
|
-
// May as well fix that....
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
6
|
if (require.main === module) {
|
|
26
|
-
|
|
27
|
-
// By default should include the JS and the CSS.
|
|
28
|
-
// By reference, serving them from their respective paths.
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
// This API is not working right now.
|
|
32
|
-
|
|
33
|
-
// A very simple syntax for running a single control would be great.
|
|
34
|
-
|
|
35
|
-
// Need to in the default (server) configuration build and serve the client-side app.
|
|
36
|
-
// Want to be able to make interactive apps quickly with minimal server side code that needs to be written as boilerplate to
|
|
37
|
-
// get the app running.
|
|
38
|
-
|
|
39
|
-
// Though maybe defining a webpage, that serves the client js, and renders the control on the server, and activates it on the client,
|
|
40
|
-
// would be the right approach.
|
|
41
|
-
|
|
42
|
-
// Want to make the code really explicit, in a simple way.
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
// eg { '/': Demo_UI }
|
|
46
|
-
// eg { '*': Demo_UI }
|
|
47
|
-
// as at least it explicitly assigns it to the '/' route
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
// But worth keeping the '/' Ctrl property?
|
|
51
|
-
// Could change it to explicitly setting the route(s).
|
|
52
|
-
|
|
53
|
-
// Do want it to build the client js on start.
|
|
54
|
-
|
|
55
|
-
// Could extract the CSS from the file itself, or maybe better reading it from the classes and objects that are loaded / referenced.
|
|
56
|
-
// All kinds of complex server program structures exist already, so could use Publishers if needed for some things.
|
|
57
|
-
// But need to keep the surface-level API really simple.
|
|
58
|
-
|
|
59
|
-
// Maybe define a Webpage and maybe use / define an HTML_Webpage_Publisher for example too.
|
|
60
|
-
// The clearest code would be really explicit about what it does, but in terms of almost English idioms
|
|
61
|
-
// and on the surface-level not spelling out in great detail what it's doing, but referencing objects and
|
|
62
|
-
// instructions with clear purposes, though details could be obscure at the top level. Eg it's the publisher's responsibility
|
|
63
|
-
// to include the CSS and JS that's needed to get it to run. A publisher is referenced and used, and it does its thing.
|
|
64
|
-
|
|
65
|
-
// The Server could automatically involk the use of a Publisher.
|
|
66
|
-
// May be better to either require or recommend more explicit code, have them in the examples,
|
|
67
|
-
// but also to document some shortcuts, defaults, and abbreviations (though they may omit some essential info, so not recommended for beginners)
|
|
68
|
-
|
|
69
|
-
// Could have a tabbed view for examples for 'explicit' and 'short' notations when there are multiple.
|
|
70
|
-
|
|
71
|
-
// jsgui3-html-suite may be of use, for some more extended controls that are built on top of jsgui3-html, but not specifically
|
|
72
|
-
// client or server.
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
7
|
+
|
|
79
8
|
const server = new Server({
|
|
80
9
|
Ctrl: Demo_UI,
|
|
81
10
|
// Giving it the Ctrl and disk path client js should enable to server to get the JS-bundled CSS from the file(s).
|
|
@@ -94,9 +23,7 @@ if (require.main === module) {
|
|
|
94
23
|
console.log('waiting for server ready event');
|
|
95
24
|
server.on('ready', () => {
|
|
96
25
|
console.log('server ready');
|
|
97
|
-
|
|
98
26
|
// server start will change to observable?
|
|
99
|
-
|
|
100
27
|
server.start(52000, function (err, cb_start) {
|
|
101
28
|
if (err) {
|
|
102
29
|
throw err;
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
const jsgui = require('jsgui3-client');
|
|
2
|
+
const {controls, Control, mixins} = jsgui;
|
|
3
|
+
const {dragable, selectable} = mixins;
|
|
4
|
+
|
|
5
|
+
const Active_HTML_Document = require('../../../../controls/Active_HTML_Document');
|
|
6
|
+
|
|
7
|
+
class Demo_UI extends Active_HTML_Document {
|
|
8
|
+
constructor(spec = {}) {
|
|
9
|
+
spec.__type_name = spec.__type_name || 'demo_ui';
|
|
10
|
+
super(spec);
|
|
11
|
+
const {context} = this;
|
|
12
|
+
if (typeof this.body.add_class === 'function') {
|
|
13
|
+
this.body.add_class('demo-ui');
|
|
14
|
+
}
|
|
15
|
+
const compose = () => {
|
|
16
|
+
const n = 20;
|
|
17
|
+
for (let c = 0; c < n; c++) {
|
|
18
|
+
const box = new Square_Box({
|
|
19
|
+
context: context
|
|
20
|
+
})
|
|
21
|
+
this.body.add(box);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
if (!spec.el) {
|
|
25
|
+
compose();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
activate() {
|
|
29
|
+
if (!this.__active) {
|
|
30
|
+
super.activate();
|
|
31
|
+
const {context} = this;
|
|
32
|
+
|
|
33
|
+
console.log('activate Demo_UI');
|
|
34
|
+
|
|
35
|
+
context.on('window-resize', e_resize => {
|
|
36
|
+
console.log('window-resize', e_resize);
|
|
37
|
+
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
Demo_UI.css = `
|
|
43
|
+
|
|
44
|
+
body {
|
|
45
|
+
margin: 0;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.demo-ui {
|
|
49
|
+
display: flex;
|
|
50
|
+
flex-wrap: wrap;
|
|
51
|
+
/* flex-direction: column; */
|
|
52
|
+
justify-content: center;
|
|
53
|
+
align-items: center;
|
|
54
|
+
text-align: center;
|
|
55
|
+
min-height: 100vh;
|
|
56
|
+
}
|
|
57
|
+
`;
|
|
58
|
+
|
|
59
|
+
class Square_Box extends Control {
|
|
60
|
+
constructor(spec) {
|
|
61
|
+
spec.__type_name = spec.__type_name || 'square_box';
|
|
62
|
+
super(spec);
|
|
63
|
+
this.add_class('square-box');
|
|
64
|
+
}
|
|
65
|
+
activate() {
|
|
66
|
+
if (!this.__active) {
|
|
67
|
+
super.activate();
|
|
68
|
+
console.log('Activate square box');
|
|
69
|
+
|
|
70
|
+
/*
|
|
71
|
+
dragable(this, {
|
|
72
|
+
drag_mode: 'translate'
|
|
73
|
+
});
|
|
74
|
+
console.log('dragable mixin applied to square box');
|
|
75
|
+
this.dragable = true;
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
selectable(this);
|
|
79
|
+
console.log('selectable mixin applied to square box');
|
|
80
|
+
this.selectable = true;
|
|
81
|
+
// Maybe should turn on selectable by default?
|
|
82
|
+
// Though mixins may be best to add functionality rather than add and enable it always.
|
|
83
|
+
|
|
84
|
+
//this.selectable = true;
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
//console.log('this.dragable = true;');
|
|
89
|
+
|
|
90
|
+
this.on('dragend', e => {
|
|
91
|
+
this.background.color = '#44FF44';
|
|
92
|
+
const bcr = this.bcr();
|
|
93
|
+
const absolutise_position = () => {
|
|
94
|
+
const style = this.dom.attributes.style;
|
|
95
|
+
// but need to move it to the body....
|
|
96
|
+
// But then when it's in absolute position the dragable mixin needs to support it and not mess up...
|
|
97
|
+
|
|
98
|
+
style.position = 'absolute';
|
|
99
|
+
style.left = bcr[0][0];
|
|
100
|
+
style.top = bcr[0][1];
|
|
101
|
+
style.transform = 'none';
|
|
102
|
+
// Much better if these lines were not needed. Should be able to set these ta translate x and y values once the
|
|
103
|
+
// style transform gets set.
|
|
104
|
+
this.ta[6] = 0; // This ta system may be a good and fast way to set translations, should not need to
|
|
105
|
+
// use it when using a higher level api though.
|
|
106
|
+
this.ta[7] = 0;
|
|
107
|
+
}
|
|
108
|
+
absolutise_position();
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
Square_Box.css = `
|
|
114
|
+
.square-box {
|
|
115
|
+
box-sizing: border-box;
|
|
116
|
+
background-color: #BB3333;
|
|
117
|
+
width: 80px;
|
|
118
|
+
height: 80px;
|
|
119
|
+
}
|
|
120
|
+
.square-box.selected {
|
|
121
|
+
background-color: #3333BB;
|
|
122
|
+
border: 3px solid #000;
|
|
123
|
+
}
|
|
124
|
+
`;
|
|
125
|
+
|
|
126
|
+
controls.Demo_UI = Demo_UI;
|
|
127
|
+
controls.Square_Box = Square_Box;
|
|
128
|
+
|
|
129
|
+
module.exports = jsgui;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
const jsgui = require('./client');
|
|
2
|
+
|
|
3
|
+
const {Demo_UI, Square_Box} = jsgui.controls;
|
|
4
|
+
const Server = require('../../../../server');
|
|
5
|
+
|
|
6
|
+
if (require.main === module) {
|
|
7
|
+
|
|
8
|
+
const server = new Server({
|
|
9
|
+
Ctrl: Demo_UI,
|
|
10
|
+
debug: true,
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
//'js_mode': 'debug',
|
|
14
|
+
'src_path_client_js': require.resolve('./client.js')
|
|
15
|
+
//js_client: require.resolve('./square_box.js')
|
|
16
|
+
});
|
|
17
|
+
// A callback or event for when the bundling has been completed
|
|
18
|
+
// a 'ready' event.
|
|
19
|
+
|
|
20
|
+
// then start the server....
|
|
21
|
+
// be able to choose the port / ports?
|
|
22
|
+
console.log('waiting for server ready event');
|
|
23
|
+
server.on('ready', () => {
|
|
24
|
+
console.log('server ready');
|
|
25
|
+
// server start will change to observable?
|
|
26
|
+
server.start(52000, function (err, cb_start) {
|
|
27
|
+
if (err) {
|
|
28
|
+
throw err;
|
|
29
|
+
} else {
|
|
30
|
+
// Should have build it by now...
|
|
31
|
+
|
|
32
|
+
console.log('server started');
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
})
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
}
|