Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 57x 57x 57x 4x 3x 1x 53x 9x 5x 4x 44x 28x 28x 28x 42x 42x 42x 41x 41x 41x 41x 25x 2x 2x | import { getReactElementFromJSONX, } from './'; import * as defs from "./types/jsonx/index"; /** * returns a valid jsonx.children property * @param {Object} options * @param {Object} [options.jsonx ={}]- Valid JSONX JSON * @param {Object} [options.props=options.jsonx.children] - Props to pull children Object.assign(jsonx.props,jsonx.asyncprops,jsonx.thisprops,jsonx.windowprops) * @returns {Object[]|String} returns a valid jsonx.children property that's either an array of JSONX objects or a string * @example * const sampleJSONX = { component: 'div', props: { id: 'generatedJSONX', className:'jsonx', }, children: [ { component: 'p', props: { style: { color: 'red', }, }, children:'hello world', }, { component: 'div', children: [ { component: 'ul', children: [ { component: 'li', children:'list', }, ], }, ], }, ], }; const JSONXChildren = getChildrenProperty({ jsonx: sampleJSONX, }); //=> [ [jsonx Object],[jsonx Object]] const JSONXChildrenPTag = getChildrenProperty({ jsonx: sampleJSONX.children[ 0 ], }); //=>hello world */ export function getChildrenProperty(options:{jsonx?:defs.jsonx, props?:any} = {}) { const { jsonx = {}, } = options; const props = options.props || jsonx.props || {}; if (typeof props._children!=='undefined' /* && !jsonx.children */) { if (Array.isArray(props._children) || typeof props._children === 'string' || typeof props._children === 'number'){ return props._children; } else { return jsonx.children; } } else if (typeof jsonx.children === 'undefined'){ if (props && props.children && (typeof props.children !== 'undefined' || Array.isArray(props.children))) { return props.children; } else { return null; } } else { return jsonx.children; } } /** * Used to pass properties down to child components if passprops is set to true * @param {Object} options * @param {Object} [options.jsonx ={}] - Valid JSONX JSON * @param {Object} [options.childjsonx ={}] - Valid JSONX JSON * @param {Number} options.renderIndex - React key property * @param {Object} [options.props=options.jsonx.props] - Props to pull children Object.assign(jsonx.props,jsonx.asyncprops,jsonx.thisprops,jsonx.windowprops) * @returns {Object|String} returns a valid Valid JSONX Child object or a string */ export function getChildrenProps(options:{jsonx?:defs.jsonx,renderIndex?:number, childjsonx?:defs.jsonx, props?:any } = {}) { const { jsonx = {}, childjsonx, renderIndex, } = options; const props = options.props || jsonx.props || {}; return (jsonx.passprops && typeof childjsonx==='object') ? Object.assign({}, childjsonx, { props: Object.assign({}, props, ((childjsonx.thisprops && childjsonx.thisprops.style) // this is to make sure when you bind props, if you've defined props in a dynamic property, to not use bind props to remove passing down styles || (childjsonx.asyncprops && childjsonx.asyncprops.style) || (childjsonx.windowprops && childjsonx.windowprops.style)) ? {} : { style: {}, }, childjsonx.props, { key: (typeof renderIndex !== 'undefined') ? renderIndex + Math.random() : Math.random(), }), }) : childjsonx; } /** * returns React Child Elements via JSONX * @param {*} options * @property {object} this - options for getReactElementFromJSONX * @property {Object} [this.componentLibraries] - react components to render with JSONX * @property {boolean} [this.debug=false] - use debug messages * @property {function} [this.logError=console.error] - error logging function * @property {string[]} [this.boundedComponents=[]] - list of components that require a bound this context (usefult for redux router) */ export function getJSONXChildren(this:defs.Context, options:any = {}) { // eslint-disable-next-line const { jsonx, resources, renderIndex, logError = console.error, } = options; try { const props = options.props || jsonx.props || {}; jsonx.children = getChildrenProperty({ jsonx, props, }); props._children = undefined; delete props._children; return (jsonx.children && Array.isArray(jsonx.children) && typeof jsonx.children !== 'string') //@ts-ignore ? jsonx.children.map(childjsonx => getReactElementFromJSONX.call(this, getChildrenProps({ jsonx, childjsonx, props, renderIndex, }), resources)) : jsonx.children; } catch (e) { this && this.debug && logError(e, (e.stack) ? e.stack : 'no stack'); return null; } } |