2.2.0 ā€¢ Published 1 year ago

react-whatsapp-widget v2.2.0

Weekly downloads
242
License
MIT
Repository
github
Last release
1 year ago

react-whatsapp-widget

WhatsApp chat widget for your website

NPM JavaScript Style Guide

Custom settings

What is this?

This is a very simple floating WhatsApp button widget. Due to the impact of covid-19 in 2020, most small businesses had to move to an online presence. One of the wey to improve communication with your customers is using a widget like this.

It adds a floating-like button to your site that calls the WhatsApp Chat API.

It will automatically begin a WhatsApp chat to the number you configure and the text the user writes.

All texts are fully customizable and also you can provide an icon/logo.

Install

npm install --save react-whatsapp-widget

Usage

import React from 'react';
// This is the way to import an SVG file and then pass it as a props
import { ReactComponent as CompanyIcon } from './assets/crown.svg';

import { WhatsAppWidget } from 'react-whatsapp-widget';
import 'react-whatsapp-widget/dist/index.css';

const App = () => {
    return (
        <WhatsAppWidget CompanyIcon={CompanyIcon} phoneNumber="XXXXXXXXXX" />
    );
};

āš ļø Where the phoneNumber is a full phone number in international format. Omit any zeroes, brackets, or dashes when adding the phone number in international format.

Example: 541112222222 where 54 is the Argentina internacional code.

Customization

optionvaluedefaultdescription
phoneNumberstring''WhatsApp intenational number which will receive the message.
CompanyIconComponentBiSupportYour company SVG icon
companyNamestring'Support'Your company name
replyTimeTextstring'Typically replies within a day'
messagestring'Hello! šŸ‘‹šŸ¼ \n\nWhat can we do for you?'With \n you can create a break-line.
sendButtonTextstring'Send'Text inside the send button
inputPlaceHolderstring'Type a message'Placeholder text of the message input
openbooleanfalseIf true the chatbox will be open as default

Contributing

After cloning the repository, you have to run the following commands in two different terminal tabs to start the development environment.

cd react-whatsapp-widget
npm install
npm start
cd react-whatsapp-widget/example
npm install
npm start

The first command watches the src/ and recompiles it into the dist/ folder when you make changes.

The second command runs the example app that links to your local package.

šŸš€ Pull requests are welcome!

License

MIT Ā© ann0nip

2.2.0

1 year ago

2.1.1

1 year ago

2.1.0

2 years ago

2.0.0

2 years ago

1.3.1

2 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.1.1

4 years ago

1.1.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago