Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active August 28, 2020 16:38
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save ryanflorence/5a99e069aca0a35d51e66f2d7fde5b80 to your computer and use it in GitHub Desktop.
Save ryanflorence/5a99e069aca0a35d51e66f2d7fde5b80 to your computer and use it in GitHub Desktop.
// Adds a lovely fade in of the modal
// and a gentle slide-down of the modal content
class Demo extends React.Component {
state = { showDialog: false };
render() {
return (
<div>
<button onClick={() => this.setState({ showDialog: true })}>
Show Dialog
</button>
<Transition
from={{ opacity: 0, y: -10 }}
enter={{ opacity: 1, y: 0 }}
leave={{ opacity: 0, y: 10 }}
>
{this.state.showDialog &&
(styles => (
<DialogOverlay style={{ opacity: styles.opacity }}>
<DialogContent
style={{
transform: `translate3d(0px, ${styles.y}px, 0px)`,
border: "4px solid hsla(0, 0%, 0%, 0.5)",
borderRadius: 10
}}
>
<button onClick={() => this.setState({ showDialog: false })}>
Close Dialog
</button>
<p>React Spring makes it too easy!</p>
</DialogContent>
</DialogOverlay>
))}
</Transition>
</div>
);
}
}
@ryanflorence
Copy link
Author

Eventually will live at https://reach.tech/ui

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment