DEV Community

Maher Alkendi
Maher Alkendi

Posted on

Create a signature pad in React

I was recently asked by a client to build a form that allows users to sign using a wireless pen mouse. The goal of the client was to obtain user signatures for a report that would be used for a future audit.

At first I was considering building my own signature pad from scratch. However, I didn't have the time to do that. This feature needed to be live in a week. This unfortunately is the reality when working in real life situations. This is why I wanted to write about this specific case. You won't always have the time to build every single feature in an app from scratch. Sometimes you have to rely on libraries created by other developers. This article will help beginners see how you can combine different libraries to create a working product.

OK let start building the signature pad. First I wrote a user story. Below is the user story for what we will be building:

  • User sees a button that can be clicked to open a popup
  • User can see and draw on a canvas when the popup is opened
  • User has the option to exit popup via an 'Close' button, clear the canvas via a 'Clear' button, or save the signature as an image via the 'Save' button.

Now that we know what we are building lets start coding it. We can use the user story list items as our milestones.

User sees a button that can be clicked to open a popup

I will use React for this task, so lets bootstrap the project by using create-react-app.

To do that all we need to do is type the following command on our terminal:

npx create-react-app signature-pad
Enter fullscreen mode Exit fullscreen mode

For more information on create-react-app check out this Github Repo

Once our project is ready, we navigate into our folder and start up our code editor. In my case I am using VS Code.

# navigate to the project folder in your terminal
cd signature-pad

# command to start VS Code once you are in root folder of the project
code .
Enter fullscreen mode Exit fullscreen mode

Now that we have everything set lets start up our project by typing the following command:

# start project
npm start
Enter fullscreen mode Exit fullscreen mode

This is what we should see once the project starts:

Alt Text

If you open up your App.js file this is what we should see:

Alt Text

Lets get rid of all this code and add the one thing we need. A button that when clicked should open up a popup with a signature pad, per our user story.

Alt Text

This is what our app should look like now:

Alt Text

Our final step for this part of the project is to show a popup when the button is clicked. A good library that can help with this is reactjs-popup. To install it we type

npm install --save reactjs-popup
Enter fullscreen mode Exit fullscreen mode

This library can be used to create Popup Models, Tool-tips, and Nested Menus. In our case we will focus on using it to create Popup Models. For more information on it check out their very helpful documentation page

Once we have the library installed we import it into our App.js file. Next we add the Popup component to our render method. This component takes in many props. In our case we focus on two: modal props (by default this is false which results in getting a tool-tip) and the trigger props which takes in a component that will trigger the popup. In our case this is our button that we already created.

Now when we click on the button we should get a popup. the content of the popup will go inside our Popup component.

Alt Text

This is what we should have now:

Alt Text

We have successfully completed the first part of our User story. Now lets more to the next one!

User can see and draw on a canvas when the popup is opened

To build the canvas inside our popup we will be using react-signature-canvas. This is a powerful library that will make working with a signature pad very easy. Specifically when we start thinking about adding features such as clear and save to our pad.

To install it we type:

npm install --save react-signature-canvas
Enter fullscreen mode Exit fullscreen mode

Once we have that installed we import the SignatureCanvas component and place it inside our Popup component. That is all!

We now have a canvas inside our popup. This is what the code looks like:

Alt Text

and this is what our app should be showing:

Alt Text

Before we move to the next item in the user story lets add some styling to our canvas. All I will do is give give our canvas a border in order for us to easily identify it and give it a width and height.

the SignaturePad component has a prop called canvasProps which allows us to pass attributes to the canvas. In this case I will give the canvas a class called "signatureCanvas".

Alt Text

You probably noticed that I am also importing a css file called sigCanvas.css. This is where I will put all my canvas related styles.

Alt Text

The result should look like this:

Alt Text

OK ready for our final step.

User has the option to exit popup via an 'Close' button, clear the canvas via a 'Clear' button, or save the signature as an image via the 'Save' button.

lets start with the close button. lets add a button with an onClick, inside that onClick will be a way to close the popup. The reactjs-popup docs recommend providing a function as a child to the Popup component. this function has a parameter close that will handle our close event and will return the components that we want inside the popup.

In addition we should not allow users to close the popup except via this button. To do that we need to pass the closeOnDocumentClick prop and pass it a true value.

Alt Text

This is what our app looks like now:

Alt Text

Next we need a button to clear the canvas. react-signature-canvas provides several methods that help with manipulating our canvas. In order to use this method we need to get an instant of our canvas. This can be done via React refs.

Let use React Hooks for this. First we create a ref called sigCanvas using useRef hook, the initial value is an empty object. Next we pass this into a SignaturePad component using a prop called ref. finally we create a function called clear that will be called anytime the clear button is clicked.

inside the clear function, we simply invoke the method clear() via our canvas ref sigCanvas. I realize these are a lot of steps, so I wrote comments in the code shown below:

Alt Text

This is what our app should look like now:

Alt Text

Now for the final button, the save button. This button should simply output a base64 string representing the image. You can use this to store it in a database or instead you can upload the image into your server. In our case we won't be connecting to any servers, so we will simply log the base64 code to the console.

react-signature-canvas has a method called getTrimmedCanvas() that can trim the white space from the canvas (to optimize the image) and give back a base64 string representing the image. All this via our sigCanvas ref.

Alt Text

This is what our app should look like now:

Alt Text

Alright! all basic functionalities are complete!

I do want to add one more part to this project. Lets output the saved signature on our screen instead of just logging it.

We can simply add an image tag below our popup button and pass it our image URL. Of course this image URL will be what we logged into the console, so instead of doing that we can store it in state.

Alt Text

This should be the result:

Alt Text

That's all folks! we successfully completed our user story. Of course there is room to improve but all the basic functionalities are there.

You can play around with the code and add more features to it by following the link

Got questions? Feel free to reach out via the comments or my twitter

Ok! Now back to learning 👨🏿‍💻

Top comments (20)

Collapse
 
remibruguier profile image
Rémi BRUGUIER

Thank you, I'll use that on a side project i'm working on :)

Collapse
 
ma7eer profile image
Maher Alkendi

Glad you liked the article:)

Collapse
 
elcho profile image
elcho

I was just about to start researching implementing a signature pad using create-react-app, and react hooks with state. I chanced on your article and BAM! create-react-app, react hooks, saving ... Thanks!

Collapse
 
ma7eer profile image
Maher Alkendi

Glad I was able to help! :]

Collapse
 
amitshahc profile image
Amit Shah

Excellent help.
but you are missing .current in your this line code
signCanvasStaff.current.getTrimmedCanvas().toDataURL("image/png")

Collapse
 
more03625 profile image
Rahul More

Thanks man :)

Collapse
 
andrewi16 profile image
Andrew Irwin

Thank you, fantastic Article learned a lot! Thank you very much from Ireland! :) ☘

Collapse
 
ma7eer profile image
Maher Alkendi

Thank you for the kind words! glad you found this helpful :]

Collapse
 
pelumiv_d profile image
SuperV NLa

Thanks for the tutorial.

Collapse
 
ma7eer profile image
Maher Alkendi

Thanks for checking it out! :D

Collapse
 
jacobgc profile image
Jacob

Wonderful article!

Collapse
 
ma7eer profile image
Maher Alkendi

Thank you Jacob :)

Collapse
 
monfernape profile image
Usman Khalil

Looks promising. Thanks for introducing this library

Collapse
 
ma7eer profile image
Maher Alkendi

You are welcome:)

Collapse
 
hawicaesar profile image
HawiCaesar

This is great!

Any idea on how to make a a user type into some input fields and that draws a signature (with a font type) on the canvas as the user type

Collapse
 
ma7eer profile image
Maher Alkendi

Created a little demo because I was curious.

codesandbox.io/s/quizzical-bartik-...

Check it out and let me know if this is what you are talking about

Collapse
 
ignore_you profile image
Alex

Nice, thank you for your post! Do you have any ideas how I can manage canvas overflow? I.e. client signs on screen and his signature runs off canvas.

Collapse
 
bhargaveverestek profile image
BhargavEverestek

how can we add default or background image?

Collapse
 
danielsogbey_19 profile image
Daniel Sogbey

In the save method,

It should be
sigCanvas.current.getTrimmedCanvas().toDataURL()

current must be added.

Collapse
 
satyavardhan626 profile image
satyavardhan • Edited

how to pass base64 data to react-signature-canvas?

i am having a case like edit ....There i have to show signature which i have given and i have to provide edit signature option.