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

@ayvu/tripetto-collector-rolling

v1.0.4

Published

Graphical UI for respondents that shows them the form’s blocks rolling neatly by, one after the other.

Downloads

1

Readme

Tripetto

Tripetto is a full-fledged form kit. Rapidly create and deploy smart flowing forms and surveys. Drop the kit in your codebase and use all of it, or just the parts you need. The visual editor is for form creation, the collector for response collection and the SDK for developing more form building blocks. Does this sound too technical? Try the app!

Rolling collector

Version License Downloads Pipeline status Join the community on Spectrum Follow us on Twitter

The rolling collector package brings a graphical UI for respondents that shows them the form’s blocks rolling neatly by, one after the other. This implementation is built using React and Bootstrap and it sits on top of the UI-less (i.e. headless) core collector package. Both this headless core collector and the rolling collector package are needed to run the rolling graphical UI.

Demo

Try demo on CodePen View the code

Get started

You can use this collector using plain old HTML or apply a more modern workflow and import the package into your codebase from npm.

Embed in HTML using CDN

<script src="https://unpkg.com/tripetto-collector"></script>
<script src="https://unpkg.com/tripetto-collector-rolling"></script>
<script>
TripettoCollectorRolling.run({
    element: document.body,
    definition: /** Supply a form definition here. */,
    onFinish: function(instance) {
        /** Implement your response handler here. */
    }
});
</script>

Import from npm

  1. Install the required packages from npm:
$ npm install tripetto-collector
$ npm install tripetto-collector-rolling
  1. Import the rolling collector:
import * as Collector from "tripetto-collector";
import * as CollectorRolling from "tripetto-collector-rolling";

CollectorRolling.run({
    element: document.body,
    definition: /** Supply a form definition here. */,
    onFinish: (instance: Collector.Instance) => {
        /** Implement your response handler here. */
    }
});

Notes

If you want to embed the collector in an element (other than the body) you need to make sure that element is positioned absolute or relative.

Documentation

The complete Tripetto documentation can be found at docs.tripetto.com.

Support

Run into issues or bugs? Report them here and we'll look into them.

For general support contact us at [email protected]. We're more than happy to assist you.

About us

If you want to learn more about Tripetto or contribute in any way, visit us at Tripetto.com.