myems-web/src/components/plugins/Toastify.js
import React, { Fragment } from 'react';
import { toast } from 'react-toastify';
import { Button, Card, CardBody } from 'reactstrap';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import PageHeader from '../common/PageHeader';
import FalconCardHeader from '../common/FalconCardHeader';
import FalconEditor from '../common/FalconEditor';
const toastifyCode = `<ButtonGroup>
<Button color='falcon-info' onClick={() => toast.info('Info typed toast')} >
Info
</Button>
<Button color='falcon-success' onClick={() => toast.success('Success typed toast')} >
Success
</Button>
<Button color='falcon-danger' onClick={() => toast.error('Error typed toast')} >
Error
</Button>
<Button color='falcon-default' onClick={() => toast('Default toast')} >
Default
</Button>
<Button color='falcon-warning' onClick={() => toast(
<Fragment>
Welcome to <strong>Falcon React</strong>!<br />
ReactJS Dashboard and WebApp Template
</Fragment>
)} >
Custom HTML
</Button>
</ButtonGroup>`;
const Toastify = () => (
<Fragment>
<PageHeader
title="React Toastify"
description="By default, all toasts will inherit ToastContainer's props. Props defined on toast supersede ToastContainer's props. Props marked with * can only be set on the ToastContainer. The demo is not exhaustive, check the repo for more!"
className="mb-3"
>
<Button
tag="a"
href="https://fkhadra.github.io/react-toastify"
target="_blank"
color="link"
size="sm"
className="pl-0"
>
React Toastify Documentation
<FontAwesomeIcon icon="chevron-right" className="ml-1 fs--2" />
</Button>
</PageHeader>
<Card>
<FalconCardHeader title="Example" />
<CardBody>
<FalconEditor code={toastifyCode} scope={{ toast }} language="jsx" />
</CardBody>
</Card>
</Fragment>
);
export default Toastify;