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

gewu-form

v0.0.24

Published

Build forms in React, only Controlled Components.

Downloads

6

Readme

less-form

Build forms in React, only Controlled Components.

  • Controlled Components
  • Only update you need
  • API like: formik
  • Validate compatible SokeYup

Example

import {
  ErrorMessage, // get error label
  LessForm, // Provider form
  Field,    // Consumer component
  FieldHOC, // Change a compoent to Consumer component HOC
  useField, // useContext, get a field data
  useForm,  // create Provider value
} from "gewu-form";
import { soke } from "soke";

const schema = soke.object({
  email: soke.string().email().required(),
  phone: soke.string().min(6).max(13).required(),
  password: soke.string().min(6).required(),
  friends: soke.array().min(3).required(),
  isMan: soke.bool().required(),
});

function App() {
  const form = useForm({
    initialValues: {
      email: "not email",
      phone: "",
      password: "",
      friends: [],
      isMan: false,
    },
    validateSchema: schema,
  });

  return (
    <div className="App">
      <div style={{ marginTop: 20 }}>Less form(use Field)</div>
      <div style={{ padding: 10, margin: 10, border: "1px solid #aaa" }}>
        <LessForm value={form}>
          <div>
            <Field name="email">
              {(ctx)=><input type="email" placeholder="please input email" {...ctx} />}
            </Field>
            <ErrorMessage name="email" />
          </div>
          <div>
            <Field name="phone">
              {(ctx)=><input type="phone" placeholder="please input phone" {...ctx} />}
            </Field>
            <ErrorMessage name="phone" />
          </div>
          <div>
            <Field name="password">
              {(ctx)=><input type="password" placeholder="please input password" {...ctx} />}
            </Field>
            <ErrorMessage name="password" />
          </div>
        </LessForm>
      </div>
      <div style={{ marginTop: 20 }}>Less form(use Custom Component)</div>
      <div style={{ padding: 10, margin: 10, border: "1px solid #aaa" }}>
        <LessForm value={form}>
          <Email />
          <Phone />
          <Password />
          <Friends />
          <Checkbox />
        </LessForm>
      </div>
    </div>
  );
}

function Email() {
  const field = useField("email");
  return (
    <div>
      <input placeholder="please input email" {...field} />
      <div>{field.error}</div>
    </div>
  );
}

function Phone() {
  const field = useField("phone");
  return (
    <div>
      <input placeholder="please input phone" {...field} />
      <div>{field.error}</div>
    </div>
  );
}

// base UI component
function BasePassword({onChange, value}) {
  return (
    <div>
      <input placeholder="please input password" type="password" onChange={onChange} value={value} />
      <div>{field.error}</div>
    </div>
  );
}

// HOC to component, add useField in component
function Password = FieldHOC(BasePassword);

function Friends() {
  const field = useField("friends");

  return (
    <div>
      <select multiple {...field}>
        <option onSelect={console.log} value="aaaaaa">
          aaa
        </option>
        <option value="apple">apple</option>
        <option value="banana">banana</option>
        <option value="dog">dog</option>
        <option value="cat">cat</option>
        <option value="fish">fish</option>
      </select>
      {JSON.stringify(field.value)}
      <div>{field.error}</div>
    </div>
  );
}

function Checkbox() {
  const field = useField("isMan");

  return (
    <div>
      <input type="checkbox" {...field}></input>
      <div>{field.error}</div>
    </div>
  );
}

export default App;

Set in and get in

import { ErrorMessage, Field, LessForm, useForm } from "gewu-form";
import { soke } from "soke";

// getin, setin error not support in yup
const schema = soke.object({
  "columns.0.name": soke.string().min(5, "need a email").required(),
});

export default function ExampleLessForm() {
  const form = useForm({
    initialValues: {
      columns: [{ name: "" }],
    },
    validateSchema: schema,
    handleChange: (values, name) => {
      return values;
    },
  });

  return (
    <div className="App">
      <div style={{ marginTop: 20 }}>Less form(use Field)</div>
      <div style={{ padding: 10, margin: 10, border: "1px solid #aaa" }}>
        <LessForm value={form}>
          <Field name="columns.0.name">
            {(ctx) => <input type="email" placeholder="please input email" {...ctx} />}
          </Field>
          <ErrorMessage name="columns.0.name" />
        </LessForm>
      </div>
    </div>
  );
}