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

workable-application-form-react

v0.1.12

Published

Workable application form React (not official)

Downloads

18

Readme

Workable Application Form React (not official)

This is a React component that renders a workable application form based on fields from (the undocumented endpoint) https://apply.workable.com/api/v1/jobs//form.

The official Workable application form offers no configurability. This library aims to offer a solution for customizing the application form look and feel. The official Workable form renders inside an iframe. This library renders the form in the DOM, so you can style it however you want.

This React component deliberately does not handle any API calls, so you'll need to handle those yourself.

Output: When the form is submitted data comes out that can (almost) be sent to the Workable Candidate API https://workable.readme.io/reference/job-candidates-create. However questions and multiple choice field ids are different from what is expected in the /candidate POST endpoint. This needs to be fixed in your own middleware using the workable /questions endpoint.

It no longer uses https://workable.readme.io/reference/jobsshortcodeapplication_form as that documentation seems to be missing a lot of information and does not return fieldsets or fields like firstname, lastname, email.

image

Features

  • TODO
  • TODO
  • TODO

The official Workable solution offers some functionality that this library does not. This is a list of the things that this library does not offer.

  • Image crop
  • Resume parser: Fill application from local file, Dropbox or Google Drive

Installation

npm install workable-application-form-react
yarn add workable-application-form-react

Usage

See the examples folder for working examples.

import React from "react";
import WorkableApplicationForm from "workable-application-form-react";

import { createRoot } from "react-dom/client";

const domNode = document.getElementById("app");
const root = createRoot(domNode);

root.render(
  <WorkableApplicationForm
    onSave={(data, cb) => {
      console.log(data);
      cb();
    }}
    form={[]}
  />,
);

Props

| Name | Type | Description | | -------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --- | | onSave | function | A function that is called when the form is submitted. It is passed the data from the form and a callback function. The callback function must be called when the API call is complete. | | form | array | An array of objects that define the form fields. See Form Fields below. | | config | object | An object that defines the configuration. See Config below. | |

Form Fields

A list of form fields as they come from https://apply.workable.com/api/v1/jobs//form

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L14-L24

[
  {
    id: "headline",
    label: "Headline",
    type: "string",
    required: false,
    maxLength: 255,
  },
  {
    id: "phone",
    label: "Phone",
    type: "string",
    required: true,
    maxLength: 255,
  },
];

Config

International Telephone Input

The telephone field uses under the hood. You can pass the options for that library in the config object.

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L373-L405

Labels

You can override the labels used in the form by passing a config object with the labels you want to override. https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L408-L417

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L420-L427

Icons

You can override the icons used in the form by passing a config object with the icons you want to override.

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L430-L434

Output

The output of the form is a Workable candidate object.

{
  firstname: "Firstname",
  lastname: "Lastname",
  email: "[email protected]",
  headline: "Headline",
  summary: "This is \nmy summary",
  address: "123 Main St",
  phone: "+391234567890",
  cover_letter: "This is \nmy cover\nletter",
  education_entries: [
    {
      school: "My School",
      degree: "My degree",
      field_of_study: "My field of study",
      start_date: "2023-03-09",
      end_date: "2023-03-16",
    },
    {
      school: "My other school",
      degree: "My other degree",
      field_of_study: "My other field of study",
      start_date: "2019-02-08",
      end_date: "2023-03-01",
    },
  ],
  experience_entries: [
    {
      title: "My Experience",
      company: "My company",
      industry: "My industry",
      summary: "My summary\nis\nvery\nshort",
      current: true,
      start_date: "2023-03-23",
      end_date: "2023-03-30",
    },
  ],
  answers: [
    { label: "My question", question_key: "CA_3c25", body: "https://www.linkedin.com" },
    { label: "My question", question_key: "536a78", checked: true },
    { label: "My question", question_key: "536a78a", body: "yes" },
    { label: "My question", question_key: "536a78x", body: "no i can't" },
    { label: "My question", question_key: "date", date: "2023-03-14" },
  ],
};

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L86-L107

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L122-L130

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L143-L149

https://github.com/Aratramba/workable-application-form-react/blob/dc6f256b44f872791d5d61bd3edaa85bbda04392/types.d.ts#L234-L354

Styling

You can override the colours of the form using CSS variables:

:root {
  --color-primary: #880696;

  --button-color-primary: var(--color-primary);
  --button-color-secondary: #a943b4;
  --button-outline-secondary: rgba(126, 6, 150, 0.2);
  --button-outline-shadow-color-rgb: 131 6 150;

  --border-color: #e0e0e0;
  --border-focus-color: var(--color-primary);
  --border-outline-color: rgba(126, 6, 150, 0.2);

  --toggle-inactive-color: #c7c9cd;
  --toggle-active-color: var(--color-primary);

  --dropzone-label-color: var(--color-primary);
  --dropzone-success-color: rgb(111, 209, 111);
  --dropzone-error-color: rgb(245, 119, 119);

  --form-error-text-color: rgb(255, 55, 55);
  --form-error-background-color: rgb(255, 239, 239);
  --form-error-border-color: rgb(255, 216, 216);
}

More custom styling can be done by overriding the styles through css, e.g.

.application-form .form-field__text,
.application-form-dialog .form-field__text {
  border: 1px dashed royalblue;
}