npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fl-interactive-form

v1.2.0

Published

Generates a nice looking form that can be navigated using keyboard keys. Open Source, **inspired by Typeform**.

Downloads

5

Readme

Interactive Form

Generates a nice looking form that can be navigated using keyboard keys. Open Source, inspired by Typeform.

Try it online.

usage demo

Quickstart

To create a form just call flInteractiveForm.create with the configuration object from form-builder and a target element to create the form.

You will need in your page: - reactandreact-dom -font-awesome.css`

  <!-- DEPENDENCIES -->
  <script src='//cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react.min.js'></script>
  <script src='//cdnjs.cloudflare.com/ajax/libs/react/15.3.2/react-dom.min.js'></script>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">

  <!-- MODULE -->
  <link rel="stylesheet" href="../../dist/fl-interactive-form.css">
  <!--[if lte IE 9]>
  <script src="../../dist/fl-interactive-form-es3.js"></script>
  <![endif]-->
  <!--[if !lte IE 9]> -->
    <script src="../../dist/fl-interactive-form.js"></script>
  <!-- <![endif]-->

  <!-- OUR FORM CONTAINER -->
  <div id="form-container" style="height: 100vh"></div>

  <!-- BUILD THE FORM-->
  <script>
    var config = [{ question: 'What is your name?', placeholder: 'My name is...', type: 'Text', }];
    var form = flInteractiveForm.create(config);

    // We must take care of submission ourselves
    form.addEventListener('submit', function logSubmission(e) {
      var answers = e.detail.answers;
      console.log('Answer:', answers);
    });

    var targetElement = document.querySelector('#form-container');
    targetElement.appendChild(form);
  </script>

Configuration

The configuration is a JSON object as generated by the fl-form-builder, a native JS form builder inspired by Google Forms. Try it here, you can use the JSON logged in the console when you hit save.

Custom Types

With fl-form-builder you can create custom form types that look whatever way you want, but fl-interactive-form needs loads of bells and whistles attached to the components for the UI to work propperly. Therefore, for your custom types to work here they must be derived from one of the standard form input types. Basically, that is going to allow you to perform an initialisation task for every component and return a personalised config object.

Being derived from another component just means that the configuration object has the key primitiveType with the name of one of the standard types (Dropdown, RadioButtons, TextBox, etc) as its value.

fl-interactive-form calls the initialState function for every custom component field sending the provided configuration object as a parameter and using the returned value as the effective configuration for the field.

To be a valid derived type, the output of your initialState function must conform to its corresponding form field type signature. Here are the required fields in the two possible signatures:

text

This includes TextBox, TextArea, EmailBox, TelephoneBox and NumberBox.

{
  "type": "TextBox",
  "required": false,
  "title": "Answer a text question",
  "placeholder": "Here lies a placeholder that should be shown"
}

options

This includes Checkboxes, Dropdown and RadioButtons.

{
 "required": true,
 "title": "Would you like to choose a dropdown option? (Not optional)",
 "type": "Dropdown",
 "options": [
   { value: 0, caption: "Option number one" },
   { value: 1, caption: "Option number two" },
 ],
}

Including custom types

Just get your fl-form-builder custom type objects, gather them in an array and give it to the interactive form creator function.

var customComponents = [ YearSelector, TimeSlots ]

var form = flInteractiveForm.create(config, customComponents);