Skip to content

Commit

Permalink
Toasts: unfinished commit working towards adding Toasts for ticket re…
Browse files Browse the repository at this point in the history
  • Loading branch information
hcharley committed Jan 24, 2019
1 parent 71f9574 commit c066f28
Show file tree
Hide file tree
Showing 15 changed files with 582 additions and 18 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,4 @@
{
"eslint.enable": true,
"eslint.autoFixOnSave": false,
}
88 changes: 88 additions & 0 deletions docs/lib/Components/ToastsPage.js
@@ -0,0 +1,88 @@
/* eslint react/no-multi-comp: 0, react/prop-types: 0 */
import React from 'react';
import { PrismCode } from 'react-prism';
import PageTitle from '../UI/PageTitle';
import SectionTitle from '../UI/SectionTitle';

import ToastExample from '../examples/Toast';
const ToastExampleSource = require('!!raw-loader!../examples/Toast');

import ToastBodyExample from '../examples/ToastBody';
const ToastBodyExampleSource = require('!!raw-loader!../examples/ToastBody');

import ToastHeaderIconExample from '../examples/ToastHeaderIcon';
const ToastHeaderIconExampleSource = require('!!raw-loader!../examples/ToastHeaderIcon');

import ToastDismissExample from '../examples/ToastDismiss';
const ToastDismissExampleSource = require('!!raw-loader!../examples/ToastDismiss');

import AlertUncontrolledDismissExample from '../examples/AlertUncontrolledDismiss';
const AlertUncontrolledDismissExampleSource = require('!!raw-loader!../examples/AlertUncontrolledDismiss');

import {AlertFadelessExample, UncontrolledAlertFadelessExample} from '../examples/AlertFadeless';
const AlertFadelessExampleSource = require('!!raw-loader!../examples/AlertFadeless');

export default class ToastsPage extends React.Component {
render() {
return (
<div>
<PageTitle title="Toasts" />
<div className="docs-example">
<ToastExample />
</div>
<pre>
<PrismCode className="language-jsx">
{ToastExampleSource}
</PrismCode>
</pre>

<SectionTitle>Properties</SectionTitle>
<pre>
<PrismCode className="language-jsx">
{`Toast.propTypes = {
className: PropTypes.string,
closeClassName: PropTypes.string,
color: PropTypes.string, // default: 'success'
isOpen: PropTypes.bool, // default: true
toggle: PropTypes.func,
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
// Controls the transition of the toast fading in and out
// See [Fade](/components/fade/) for more details
transition: PropTypes.shape(Fade.propTypes),
}`}
</PrismCode>
</pre>

<SectionTitle>Toast body</SectionTitle>
<div className="docs-example">
<ToastBodyExample />
</div>
<pre>
<PrismCode className="language-jsx">
{ToastBodyExampleSource}
</PrismCode>
</pre>

<SectionTitle>Header icons</SectionTitle>
<div className="docs-example">
<ToastHeaderIconExample />
</div>
<pre>
<PrismCode className="language-jsx">
{ToastHeaderIconExampleSource}
</PrismCode>
</pre>

<SectionTitle>Dismissing</SectionTitle>
<div className="docs-example">
<ToastDismissExample buttonLabel="Show toast" />
</div>
<pre>
<PrismCode className="language-jsx">
{ToastDismissExampleSource}
</PrismCode>
</pre>
</div>
);
}
}
4 changes: 4 additions & 0 deletions docs/lib/Components/index.js
Expand Up @@ -86,6 +86,10 @@ const items = [
name: 'Spinners',
to: '/components/spinners/'
},
{
name: 'Toasts',
to: '/components/toasts/'
},
{
name: 'Pagination',
to: '/components/pagination/'
Expand Down
111 changes: 111 additions & 0 deletions docs/lib/examples/Toast.js
@@ -0,0 +1,111 @@
import React from 'react';
import { Toast, ToastBody, ToastHeader } from 'reactstrap';

const Example = (props) => {
return (
<div>
<div className="p-3 my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a white background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 my-2 rounded bg-docs-transparent-grid">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a gridded background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-primary my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a primary background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-secondary my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a secondary background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-success my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a success background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-danger my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a danger background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-warning my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a warning background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-info my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on an info background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 bg-dark my-2 rounded">
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a dark background — check it out!
</ToastBody>
</Toast>
</div>
<div className="p-3 my-2 rounded" style={{ background: 'black' }}>
<Toast>
<ToastHeader>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast on a black background — check it out!
</ToastBody>
</Toast>
</div>
</div>
);
};

export default Example;
14 changes: 14 additions & 0 deletions docs/lib/examples/ToastBody.js
@@ -0,0 +1,14 @@
import React from 'react';
import { Toast } from 'reactstrap';

const Example = (props) => {
return (
<div>
<Toast body>
This is a toast with a body — check it out!
</Toast>
</div>
);
};

export default Example;
39 changes: 39 additions & 0 deletions docs/lib/examples/ToastDismiss.js
@@ -0,0 +1,39 @@
/* eslint react/no-multi-comp: 0, react/prop-types: 0 */

import React from 'react';
import { Button, Toast, ToastBody, ToastHeader } from 'reactstrap';

class ToastDismissExample extends React.Component {
constructor(props) {
super(props);
this.state = {
show: false
};

this.toggle = this.toggle.bind(this);
}

toggle() {
this.setState({
show: !this.state.show
});
}

render() {
return (
<div>
<Button color="danger" onClick={this.toggle}>{this.props.buttonLabel}</Button>
<br />
<br />
<Toast isOpen={this.state.show}>
<ToastHeader toggle={this.toggle}>Toast title</ToastHeader>
<ToastBody>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</ToastBody>
</Toast>
</div>
);
}
}

export default ToastDismissExample;
75 changes: 75 additions & 0 deletions docs/lib/examples/ToastHeaderIcon.js
@@ -0,0 +1,75 @@
import React from 'react';
import { Toast, ToastBody, ToastHeader } from 'reactstrap';

const Example = (props) => {
return (
<div>
<Toast>
<ToastHeader icon>
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a primary icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="secondary">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a secondary icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="success">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a success icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="danger">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a danger icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="warning">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a warning icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="info">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with an info icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="light">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a light icon — check it out!
</ToastBody>
</Toast>
<Toast>
<ToastHeader icon="dark">
Reactstrap
</ToastHeader>
<ToastBody>
This is a toast with a dark icon — check it out!
</ToastBody>
</Toast>
</div>
);
};

export default Example;
2 changes: 2 additions & 0 deletions docs/lib/routes.js
Expand Up @@ -24,6 +24,7 @@ import PaginationPage from './Components/PaginationPage';
import TabsPage from './Components/TabsPage';
import JumbotronPage from './Components/JumbotronPage';
import AlertsPage from './Components/AlertsPage';
import ToastsPage from './Components/ToastsPage';
import CollapsePage from './Components/CollapsePage';
import CarouselPage from './Components/CarouselPage';
import ListGroupPage from './Components/ListGroupPage';
Expand Down Expand Up @@ -62,6 +63,7 @@ const routes = (
<Route path="pagination/" component={PaginationPage} />
<Route path="tabs/" component={TabsPage} />
<Route path="alerts/" component={AlertsPage} />
<Route path="toasts/" component={ToastsPage} />
<Route path="jumbotron/" component={JumbotronPage} />
<Route path="collapse/" component={CollapsePage} />
<Route path="carousel/" component={CarouselPage} />
Expand Down

0 comments on commit c066f28

Please sign in to comment.