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

uimf-svelte3

v1.3.2

Published

* Resolve * Create `FormInstance` * Initialize `FormInstance` input fields from URL parameters * Create Svelte component (`Form`) * Initialize Svelte component (`Form`) * If `postOnLoad == true` and all required inputs have values, post the for

Downloads

8

Readme

/form lifecycle

  • Resolve
    • Create FormInstance
    • Initialize FormInstance input fields from URL parameters
  • Create Svelte component (Form)
  • Initialize Svelte component (Form)
    • If postOnLoad == true and all required inputs have values, post the form
    • Select response handler and handle the response

Default response handler (FormComponentResponseHandler)

FormComponentResponseHandler is the default response handler. It will

  1. set FormInstance output fields
  2. render output fields

FormInstance

FormInstance provides API to communicate with the server-side form.

Events

  • form:posting - just before form is posted to the server (fired by FormInstance). Uses FormEventArgs for event arguments.
  • form:responseReceived - fired when response from the server is received, but hasn't been processed yet (fired by FormInstance). Uses FormEventArgs for event arguments.
  • form:responseHandled - fired after response from the server has been handled (fired by FormInstance). Uses FormEventArgs for event arguments.

Form.html

Form is a UI control which can render a form in a browser. Form uses FormInstance to facilitate communication with the server and to ensure form lifecycle.

parent

Components are assembled into a hierarchy. Form components can be nested using InlineForm output field. The nested form can access its parent form via Form.parent.

Custom events with fireAndBubbleUp

Each input or output field can publish events up to its Form component and to all parent forms using Form.fireAndBubbleUp.

Built-in events

Form has several built in-events:

  • form:loaded - fired as soon as the form has been rendered and initialized (before the initial post-on-load). arguments.
  • form:responseHandled - fired after response from the server has been handled.

inputs

Array of input components (i.e. - Svelte components like Textarea.html) which were instantiated for this form.

Input.html

Each input component gets initialized with the these properties:

  • field - InputFieldValue instance
  • tabindex - auto-calculated tabindex
  • id - auto-generated unique identifier
  • app - UmfApp instance
  • form - parent Form.html
  • wrapper - instance of Input.html which wraps the actual input component.

Output.html

Each input component gets initialized with the these properties:

  • field - InputFieldValue instance
  • app - UmfApp instance
  • form - FormInstance object
  • parent - instance of Form.html component inside which the output is rendered