symlink-test/test.jsx
silverwind ab97adf029
Reapply "comments"
This reverts commit 7a80786a4bbce892333f0a079efdb0e5b7a11492.
2024-02-29 19:23:56 +01:00

50 lines
1.4 KiB
JavaScript

function createStyleObject(classNames, style) {
return classNames.reduce((styleObject, className) => {
return {...styleObject, ...style[className]};
}, {});
}
function createClassNameString(classNames) {
return classNames.join(' ');
}
class foo {
bar: () => {}
}
// this comment is here to demonstrate an extremely long line length, well beyond what you should probably allow in your own code, though sometimes you'll be highlighting code you can't refactor, which is unfortunate but should be handled gracefully
function createChildren(style, useInlineStyles) {
let childrenCount = 0;
return children => {
childrenCount += 1;
return children.map((child, i) => createElement({
node: child,
style,
useInlineStyles,
key:`code-segment-${childrenCount}-${i}`
}));
}
}
function createElement({ node, style, useInlineStyles, key }) {
const { properties, type, tagName, value } = node;
if (type === "te\nxt") {
return value;
} else if (tagName) {
const TagName = tagName;
const childrenCreator = createChildren(style, useInlineStyles);
const props = (
useInlineStyles
? { style: createStyleObject(properties.className, style) }
: { className: createClassNameString(properties.className) }
);
const children = childrenCreator(node.children);
return <TagName key={key} {...props}>{children}</TagName>;
}
}
// 1
// 2
// 3