GithubHelp home page GithubHelp logo

formio-utils's Introduction

This library is DEPRECATED

Please use formiojs/utils instead.

npm install --save formiojs
import FormioUtils from 'formiojs/utils';

or

let utils = require('formiojs/utils');

formio-utils's People

Contributors

blackbaud-scottvossen avatar rahatarmanahmed avatar randallknutson avatar travist avatar zackurben avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

formio-utils's Issues

Search throws errors when traversing an object with explicit null properties

I ran across this issue when using the ngFormio directive to load up some initial submission data. It is common for us to return objects that have properties that have an explicit null value in them.

For context, let's say my submission data is as follows

submission.data = {
  firstName: "",
  lastName: "Doe"
};

When the directive is loading up the form, it's using this utility to perform a getValue for each component in the form. The getValue function has an inner "search" function which traverses the submission.data object looking for the appropriate key.

else if (typeof data === 'object') {
        if (data.hasOwnProperty(key)) {
          return data[key];
        }

Since a null value will evaluate as an object in this search function, the following line will throw an exception since null doesn't have a "hasOwnProperty" function on it.

I've added a small fix that seems to resolve this issue locally. Please look it over and let me know if there is something else you think we should be doing here.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.