summaryrefslogtreecommitdiff
path: root/cli/bench/testdata/npm/hono/dist/middleware/jsx/index.js
blob: f72a7ecb9a9b84fc132bd35f139a5aacc6665bf4 (plain)
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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Fragment = exports.memo = exports.jsx = exports.JSXNode = void 0;
const html_1 = require("../../utils/html");
const emptyTags = [
    'area',
    'base',
    'br',
    'col',
    'embed',
    'hr',
    'img',
    'input',
    'keygen',
    'link',
    'meta',
    'param',
    'source',
    'track',
    'wbr',
];
const booleanAttributes = [
    'allowfullscreen',
    'async',
    'autofocus',
    'autoplay',
    'checked',
    'controls',
    'default',
    'defer',
    'disabled',
    'formnovalidate',
    'hidden',
    'inert',
    'ismap',
    'itemscope',
    'loop',
    'multiple',
    'muted',
    'nomodule',
    'novalidate',
    'open',
    'playsinline',
    'readonly',
    'required',
    'reversed',
    'selected',
];
const childrenToStringToBuffer = (children, buffer) => {
    for (let i = 0, len = children.length; i < len; i++) {
        const child = children[i];
        if (typeof child === 'string') {
            (0, html_1.escapeToBuffer)(child, buffer);
        }
        else if (typeof child === 'boolean' || child === null || child === undefined) {
            continue;
        }
        else if (child instanceof JSXNode) {
            child.toStringToBuffer(buffer);
        }
        else if (typeof child === 'number' || child.isEscaped) {
            buffer[0] += child;
        }
        else {
            // `child` type is `Child[]`, so stringify recursively
            childrenToStringToBuffer(child, buffer);
        }
    }
};
class JSXNode {
    constructor(tag, props, children) {
        this.isEscaped = true;
        this.tag = tag;
        this.props = props;
        this.children = children;
    }
    toString() {
        const buffer = [''];
        this.toStringToBuffer(buffer);
        return buffer[0];
    }
    toStringToBuffer(buffer) {
        const tag = this.tag;
        const props = this.props;
        let { children } = this;
        buffer[0] += `<${tag}`;
        const propsKeys = Object.keys(props || {});
        for (let i = 0, len = propsKeys.length; i < len; i++) {
            const v = props[propsKeys[i]];
            if (typeof v === 'string') {
                buffer[0] += ` ${propsKeys[i]}="`;
                (0, html_1.escapeToBuffer)(v, buffer);
                buffer[0] += '"';
            }
            else if (typeof v === 'number') {
                buffer[0] += ` ${propsKeys[i]}="${v}"`;
            }
            else if (v === null || v === undefined) {
                // Do nothing
            }
            else if (typeof v === 'boolean' && booleanAttributes.includes(propsKeys[i])) {
                if (v) {
                    buffer[0] += ` ${propsKeys[i]}=""`;
                }
            }
            else if (propsKeys[i] === 'dangerouslySetInnerHTML') {
                if (children.length > 0) {
                    throw 'Can only set one of `children` or `props.dangerouslySetInnerHTML`.';
                }
                const escapedString = new String(v.__html);
                escapedString.isEscaped = true;
                children = [escapedString];
            }
            else {
                buffer[0] += ` ${propsKeys[i]}="`;
                (0, html_1.escapeToBuffer)(v.toString(), buffer);
                buffer[0] += '"';
            }
        }
        if (emptyTags.includes(tag)) {
            buffer[0] += '/>';
            return;
        }
        buffer[0] += '>';
        childrenToStringToBuffer(children, buffer);
        buffer[0] += `</${tag}>`;
    }
}
exports.JSXNode = JSXNode;
class JSXFunctionNode extends JSXNode {
    toStringToBuffer(buffer) {
        const { children } = this;
        const res = this.tag.call(null, {
            ...this.props,
            children: children.length <= 1 ? children[0] : children,
        });
        if (res instanceof JSXNode) {
            res.toStringToBuffer(buffer);
        }
        else if (typeof res === 'number' || res.isEscaped) {
            buffer[0] += res;
        }
        else {
            (0, html_1.escapeToBuffer)(res, buffer);
        }
    }
}
class JSXFragmentNode extends JSXNode {
    toStringToBuffer(buffer) {
        childrenToStringToBuffer(this.children, buffer);
    }
}
const jsxFn = (tag, props, ...children) => {
    if (typeof tag === 'function') {
        return new JSXFunctionNode(tag, props, children);
    }
    else {
        return new JSXNode(tag, props, children);
    }
};
exports.jsx = jsxFn;
const shallowEqual = (a, b) => {
    if (a === b) {
        return true;
    }
    const aKeys = Object.keys(a);
    const bKeys = Object.keys(b);
    if (aKeys.length !== bKeys.length) {
        return false;
    }
    for (let i = 0, len = aKeys.length; i < len; i++) {
        if (a[aKeys[i]] !== b[aKeys[i]]) {
            return false;
        }
    }
    return true;
};
const memo = (component, propsAreEqual = shallowEqual) => {
    let computed = undefined;
    let prevProps = undefined;
    return ((props) => {
        if (prevProps && !propsAreEqual(prevProps, props)) {
            computed = undefined;
        }
        prevProps = props;
        return (computed || (computed = component(props)));
    });
};
exports.memo = memo;
const Fragment = (props) => {
    return new JSXFragmentNode('', {}, props.children || []);
};
exports.Fragment = Fragment;