Hong-Phuc Bui
2025-01-16 2889de7f0c2d587a17fbd322af57c29e84238620
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/**
 * @author Hong-Phuc Bui
 * initial version 27.12.2018
 * */
const TYPE_CLASS_PREFIX = "dom-output-";
const MAXIMUM_OBJECT_REPRESENT_LENGTH = 58;
 
 
export class DomOutput {
 
    /**
     * @constructor
     *
     * @param {string} outputElementId the element ID of an element in DOM, in which
     * output objects are in written
     */
    constructor(outputElementId) {
        this.output = document.getElementById(outputElementId);
        this._style = "";
        this.outputElementId = outputElementId;
    }
 
    /**
     * set style output, default is an empty string.
     * @param {string} cssStyle a String represents a syntactical valid CSS-Style, for example
     * `color: red; font-size:12px`
     * */
    set style(cssStyle) {
        this._style = cssStyle;
    }
 
    get style() {
        return this._style;
    }
 
    /**
     * print each element of argv in an <code> Tag. Elements are converted to String
     * by its natural String representation.
     *
     * @param {...Object} argv objects to be printed
     *
     * */
    print(...argv) {
        this._lazyInit( "print", "_print", ...argv);
    }
 
    /**
     * like {@link print} but with an line break after the last element is printed.
     *
     * @param {...Object} argv objects to be printed
     * */
    printl(...argv) {
        this._lazyInit("printl", "_printl", ...argv);
    }
    
    /**
     * convert an HTML string to DOM-Element and appends it as the last element of output.
     * @param {string} html HTML String
     * */
    printh(html) {
        this._lazyInit("printh", "_printh", html);
    }
    
    /**
     * convert each element of argv to HTML String
     *
     * @return {DocumentFragment}
     *
     * */
    _html(...argv) {
        let html = document.createDocumentFragment();
        argv
            .map(a => representTopLevelObject(a))
            .forEach(represent => {
                html.appendChild( represent );
            });
        return html;
    }
 
    /**
     * clear all output
     * */
    clear() {
        try {
            this.output.innerText = "";
        }catch (e) { // TypeError
            console.log("output is not initialized.");
        }
    }
    
    _print(...argv) {
        let toHTML = this._html(...argv);
        this.output.appendChild(toHTML);
    }
    
    _printl(...argv) {
        let toHTML = this._html(...argv);
        toHTML.appendChild(document.createElement("br"));
        this.output.appendChild(toHTML);
    }
    
    _printh(html) {
        this.output.insertAdjacentHTML('beforeend', html);
    }
    
    _lazyInit(sourceFn, targetFn, ...argv) {
        if (!this.output) {
            this.output = document.getElementById(this.outputElementId);
            if (this.output) {
                this[targetFn](...argv);
                this[sourceFn] = this[targetFn];
            } else {
                console.warn("Cannot initialize output with #" + this.outputElementId);
                console.log(...argv);
            }
        } else {
            this[targetFn](...argv);
            this[sourceFn] = this[targetFn];
        }
    }
}
 
 
function representTopLevelObject(arg) {
    if  (typeof arg === "string") {
        return span("string",arg);
    }
    else {
        return represent(arg, MAXIMUM_OBJECT_REPRESENT_LENGTH);
    }
}
 
function span(type, text) {
    let sp = document.createElement("code");
    sp.className = TYPE_CLASS_PREFIX + type;
    sp.appendChild(document.createTextNode(text));
    return sp;
}
 
function td(type) {
    let td = document.createElement("td");
    td.className = TYPE_CLASS_PREFIX + type;
    return td;
}
 
function eltSize(elt) {
    return elt.textContent.length;
}
 
function represent(val, maximumSize) {
    if (typeof val === "boolean") return span("bool", String(val));
    if ((typeof val === "number") || (typeof  val === "bigint") ) return span("number", val.toString());
    if (typeof val === "string") return span("string-2", JSON.stringify(val));
    if (typeof val === "symbol") return span("symbol", String(val));
    if (val == null) return span("null", String(val));
    if (Array.isArray(val)) return representArray(val, maximumSize);
    else return representObj(val, maximumSize);
}
 
function representArray(val, maximumSize) {
    return representIterable(val, maximumSize);
}
 
function representObj(val, maximumSize) {
    if (val instanceof Set) {
        return representSet(val, maximumSize);
    }
    if (val instanceof Map) {
        return representMap(val, maximumSize);
    }   
    let string = (typeof val.toString == "function") && val.toString();
    if (!string || /^\[object .*\]$/.test(string)) {
        return representSimpleObj(val, maximumSize);
    }
    let m = string.match(/^\s*(function[^(]*\([^)]*\))/) ;
    if (val.call && m ) {
        return span("function", m[1] + "{…}");
    }
 
    let elt = span("etc", string);
    elt.addEventListener("click", () => expandObj(elt, "obj", val));
    return elt;
}
 
function representSet(val, maximumSize) {
    let wrap = document.createElement("span");
    wrap.appendChild(document.createTextNode("Set("));
    wrap.appendChild( representIterable([...val], maximumSize) );
    wrap.appendChild(document.createTextNode(")"));
    return wrap;
}
 
function representMap(val, maximumSize) {
    let wrap = document.createElement("span");
    wrap.appendChild(document.createTextNode("Map("));
    wrap.appendChild( representIterable([...val], maximumSize, '[', ']') );
    wrap.appendChild(document.createTextNode(")"));
    return wrap;
}
 
function representIterable(val, maximumSize, beginDelimiter='[', endDelimiter=']' ) {
    maximumSize -= 2;
    let wrap = document.createElement("span");
    wrap.appendChild(document.createTextNode( beginDelimiter ));
    for (let i = 0; i < val.length; ++i) {
        if (i) {
            wrap.appendChild(document.createTextNode(", "));
            maximumSize -= 2;
        }
        let next = maximumSize > 0 && represent(val[i], maximumSize);
        let nextSize = next ? eltSize(next) : 0;
        if (maximumSize - nextSize <= 0) {
            wrap.appendChild(span("etc", "…")).addEventListener("click", () => expandObj(wrap, "array", val));
            break;
        }
        maximumSize -= nextSize;
        wrap.appendChild(next);
    }
    wrap.appendChild(document.createTextNode(endDelimiter ));
    return wrap;
}
 
 
function constructorName(obj) {
    if (!obj.constructor) return null;
    let m = String(obj.constructor).match(/^function\s*([^\s(]+)/);
    if (m && m[1] !== "Object") return m[1];
}
 
 
function representSimpleObj(val, space) {
    space -= 2;
    let wrap = document.createElement("span");
    let name = constructorName(val);
    if (name) {
        space -= name.length;
        wrap.appendChild(document.createTextNode(name))
    }
    wrap.appendChild(document.createTextNode("{"));
    try {
        let first = true;       
        /*for (let prop of Object.getOwnPropertyNames(val) ){*/
        for (let prop in val ){
            if (first) {
                first = false;
            } else {
                space -= 2;
                wrap.appendChild(document.createTextNode(", "));
            }
            let next = space > 0 && represent(val[prop], space);
            let nextSize = next ? prop.length + 2 + eltSize(next) : 0;
            if (space - nextSize <= 0) {
                wrap.appendChild(span("etc", "…")).addEventListener("click", () => expandObj(wrap, "obj", val));
                break;
            }
            space -= nextSize;
            wrap.appendChild(span("prop", prop + ": "));
            wrap.appendChild(next)
        }
    } catch (e) {
        wrap.appendChild(document.createTextNode("…"))
    }
    wrap.appendChild(document.createTextNode("}"));
    return wrap;
}
 
function expandObj(node, type, val) {
    let wrap = document.createElement("span");
    let opening = type === "array" ? "[" : "{", 
        cname;
    if (opening === "{" && (cname = constructorName(val))) {
        opening = cname + " {";
    }
    wrap.appendChild(document.createTextNode(opening));
    let block = wrap.appendChild(document.createElement("div"));
    block.className = "sandbox-output-etc-block";
    let table = block.appendChild(document.createElement("table"));
 
    function addProp(name) {
        let row = table.appendChild(document.createElement("tr"));
        let propTd = td("property-name");
        row.appendChild(propTd).appendChild(span("prop", name + ":"));
        row.appendChild(document.createElement("td")).appendChild(represent(val[name], 40));
    }
    function  addValue(index) {
        let row = table.appendChild(document.createElement("tr"));
        row.appendChild(document.createElement("td")).appendChild(represent(val[index], 40));
    }
    if (type === "array") {
        for (let i = 0; i < val.length; ++i) {
            console.log(`${i} -> ${val[i]}`);
            addValue(i);
        }
    } else {
        for (let prop in val ) {
            addProp(prop);
        }       
    }
    wrap.appendChild(document.createTextNode(type === "array" ? "]" : "}"));
    node.parentNode.replaceChild(wrap, node)
}