
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
JSON form builder for React.
Formtron consists of:
fieldComponents
deriveFormData
, computeOps
, applyOps
Formtron
Supported in modern browsers and node.
# latest stable
yarn add formtron
import { applyOps, Formtron } from "formtron";
<Formtron
fieldComponents={fieldComponents}
value={this.state.data}
schema={this.props.schema}
selection={this.props.selection}
onChange={ops => {
const previewOutput = applyOps(this.state.data, ops);
this.setState(state => ({ ...state, ops, previewOutput }));
}}
/>;
fieldComponents
is an object whose values are React components and whose keys correspond to field "type"s in the schema.
Learn more about the react components in the next section. Learn more about schema types in the FormtronSchema.md
value
is a read-only JSON-like data object that provides the initial values for the form.
schema
is a read-only JSON object that has it's own documentation page
selection
is a read-only .
separated path to the currently "selected" node.
onChange
emits a JSON-patch-like object... it's practically JSON patch except it uses "." for paths instead of "/".
You can use the exported applyOps
function to apply the changes when the user hits a Save button or something.
The raw <Formtron>
component is completely agnostic and has no set of primitive types.
Every "type" used in you schema (boolean, string, etc) must have a corresponding React component.
At Stoplight we use ui-kit
to build our UI.
Therefore the default set of components are React components built with ui-kit
.
Feel free to use them in your own project, or skip to the next section to learn how to implement your own formtron-compatible components.
These types arre defined in ui-schema.json
.
As a Stoplight developer, you should use the provided ui-schema.json
to validate your Formtron UI Schema,
and extend it as new primitive types are created. Here are the defined types so far:
Some of these extend the minimum field schema (type
, title
, path
) with additional properties, like:
required
options
(for select
and multiselect
types)minLength
(for markdown
type)WARNING: The higher-order types ArrayInput
and KeyedArrayInput
are kind of broken.
They'll be fixed in a future user story.
Field components need to implement the IFormtronControl
interface in order for Formtron to use them.
export interface IFormtronControl<T> {
id?: string;
value: T;
onChange: (value: T) => void;
schema: any;
path: string[];
fieldComponents: Dictionary<React.StatelessComponent<IFormtronControl>>;
}
The id
prop is a suggested value for your component's id
prop, for accessibility.
The use of value
and onChange
is mandatory. Generally field components are controlled components.
You can use the schema
that is provided to make use of additional properties such as schema.required
and schema.maxLength
or schema.custom.widget
.
path
is a read-only .
separated path indicating where the field component's value
is with respect to the top-level Formtron value.
You need not use fieldControls
yourself but it is provided in case you are implementing a component that nests other field components.
feature/{name}
, chore/{name}
, or fix/{name}
branch.yarn
.yarn test.prod
.yarn commit
. NOTE: Commits that don't follow the conventional format will be rejected. yarn commit
creates this format for you, or you can put it together manually and then do a regular git commit
.git push
.develop
branch.FAQs
JSON form builder for React.
The npm package formtron receives a total of 0 weekly downloads. As such, formtron popularity was classified as not popular.
We found that formtron demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.