All files children.ts

78.49% Statements 73/93
73.55% Branches 89/121
70% Functions 7/10
77.78% Lines 70/90

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 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 2574x 4x 4x 4x 4x       4x 4x                                                                                       4x     69x   69x 69x 5x         4x   1x   64x 10x         5x   5x     54x                         4x                 31x 31x   31x 7x         2x 2x                                       7x 24x     4x                                             4x 1x 1x     1x                 1x 1x 1x   1x   1x         4x                           4x         53x 53x 53x 53x         53x 52x 52x 52x 52x 1x 51x 48x 1x 1x 47x     47x 2x 45x 1x 44x 1x     43x 1x       49x 17x     27x           24x     16x   1x 1x      
import numeral from "numeral";
import * as luxon from "luxon";
import fs from "fs";
import path from "path";
import { getReactElementFromJSONX } from "./index";
import { ReactComponentLike, ReactElementLike } from "prop-types";
 
import * as defs from "./types/jsonx/index";
const scopedEval = eval;
export const templateCache = new Map();
 
/**
 * 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(
  this: defs.Context,
  options: {
    jsonx?: defs.jsonx;
    renderIndex?: number;
    childjsonx?: defs.jsonx;
    props?: any;
  } = {}
) {
  const { jsonx = {}, childjsonx, renderIndex } = options;
  const props = options.props || jsonx.props || {};
 
  if(jsonx.passprops && childjsonx && typeof childjsonx === "object"){
    const passedChildJsonx = Object.assign({}, childjsonx, {
      props: Object.assign(
        {},
        Array.isArray(jsonx.passprops)
          ? jsonx.passprops.reduce((passedProps:any,prop:string)=>{
            passedProps[prop] = props[prop]
            return passedProps;
          },{})
          : 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,
        //@ts-ignore
        typeof this !== "undefined" ||(this && this.disableRenderIndexKey)
          ? {}
          : {  key: typeof renderIndex !== "undefined"
              ? renderIndex + Math.random()
              : Math.random()
          }
      )
    })
    return passedChildJsonx;
  } else return childjsonx;
}
 
export function fetchJSONSync(path: string, options?: any ) {
  try {
    const config: any = {
      method: "GET",
      headers: [],
      ...options
    };
    const request = new XMLHttpRequest();
    request.open(config && config.method || "GET", path, false); // `false` makes the request synchronous
    if (config.headers) {
      Object.keys(config.headers).forEach(header => {
        request.setRequestHeader(header, config.headers[header]);
      });
    }
    request.send(config.body ? JSON.stringify(config.body) : undefined);
    if (request.status !== 200) {
      throw new Error(request.responseText);
    } else return request.responseText;
  } catch (e) {
    throw e;
  }
}
 
export function getChildrenTemplate(template: string | any) {
  const cachedTemplate = templateCache.get(template);
  Iif (cachedTemplate) {
    return cachedTemplate;
  }
  else Iif (
    typeof window !== "undefined" &&
    typeof window.XMLHttpRequest === "function" &&
    !fs.readFileSync
  ) {
    const jsFile = fetchJSONSync(template);
    const jsonxModule = scopedEval(`(${jsFile})`);
    templateCache.set(template, jsonxModule);
    return jsonxModule;
  } else Eif (typeof template === "string") {
    const jsFile = fs.readFileSync(path.resolve(template)).toString();
    const jsonxModule = scopedEval(`(${jsFile})`);
    // console.log({jsonxModule})
    templateCache.set(template, jsonxModule);
    // console.log({ templateCache });
    return jsonxModule;
  }
  return null;
}
 
export function clearTemplateCache(): void {
  templateCache.clear();
}
 
/**
 * 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: defs.Config = { jsonx: {} }
): string | null | undefined | Array<ReactElementLike>| Array<defs.JSONReactElement> {
  // eslint-disable-next-line
  const { jsonx, resources, renderIndex, logError = console.error } = options;
  try {
    const context = this || {};
    const props = options && options.props
      ? options.props
      : jsonx && jsonx.props
        ? jsonx.props
        : {};
    if(!jsonx) return null 
    jsonx.children = getChildrenProperty({ jsonx, props });
    props._children = undefined;
    delete props._children;
    if (jsonx.___template)
      jsonx.children = [getChildrenTemplate(jsonx.___template)];
    else if (typeof jsonx.children === 'undefined' || jsonx.children === null) return undefined;
    else if (jsonx.children && jsonx.___stringifyChildren && Array.isArray(jsonx.___stringifyChildren)){
      const args = [jsonx.children, ...jsonx.___stringifyChildren]
      jsonx.children = JSON.stringify.apply(null, args as [any]);}
    else Iif (jsonx.children && jsonx.___stringifyChildren)
      jsonx.children = JSON.stringify.apply(null, [jsonx.children as defs.jsonxChildren, null, 2]);
    //TODO: fix passing applied params
    else if (jsonx.children && jsonx.___toStringChildren)
      jsonx.children = jsonx.children.toString();
    else if (jsonx.children && jsonx.___toNumeral)
      jsonx.children = numeral(jsonx.children).format(jsonx.___toNumeral);
    else if (jsonx.children && jsonx.___JSDatetoLuxonString)
      jsonx.children = luxon.DateTime.fromJSDate(
        jsonx.children as Date
      ).toFormat(jsonx.___JSDatetoLuxonString);
    else if (jsonx.children && jsonx.___ISOtoLuxonString)
      jsonx.children = luxon.DateTime.fromISO(jsonx.children as string, {
        zone: jsonx.___FromLuxonTimeZone
      }).toFormat(jsonx.___ISOtoLuxonString);
      
    if (typeof jsonx.children === 'string') return jsonx.children;
    const children = jsonx.children && Array.isArray(jsonx.children)
      ? jsonx.children
        .map(childjsonx =>
          getReactElementFromJSONX.call(
            context,
            getChildrenProps.call(this,{ jsonx, childjsonx, props, renderIndex }),
              resources
            )
          )
          .filter(child => child !== null)
      : jsonx.children;
    
    return children as ReactElementLike[]|defs.JSONReactElement[]|null|string|undefined;
  } catch (e) {
    this && this.debug && logError(e, e.stack ? e.stack : "no stack");
    return null;
  }
}