From 7e4fb473f5b5eb74b794187ab700024a6418b6c0 Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 8 Sep 2023 17:16:55 +0200 Subject: [PATCH] add test.jsx --- test.jsx | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 test.jsx diff --git a/test.jsx b/test.jsx new file mode 100644 index 0000000..f3096a1 --- /dev/null +++ b/test.jsx @@ -0,0 +1,41 @@ +function createStyleObject(classNames, style) { + return classNames.reduce((styleObject, className) => { + return {...styleObject, ...style[className]}; + }, {}); +} + +function createClassNameString(classNames) { + return classNames.join(' '); +} + +// 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 === "text") { + 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 {children}; + } +}