You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
7 years ago
|
import * as React from "react";
|
||
|
import { Button, Segment } from "semantic-ui-react";
|
||
|
|
||
|
import { injectState, State } from "@app/state";
|
||
|
import { getRandomId } from "@common/utils";
|
||
|
|
||
|
class MessageTest extends React.Component<{ state: State }> {
|
||
|
render() {
|
||
|
return (
|
||
|
<Segment>
|
||
|
<h2>Message Test</h2>
|
||
|
<Button onClick={this.test1}>Add test message</Button>
|
||
|
<Button onClick={this.test2}>Add test message w/ timeout</Button>
|
||
|
<Button onClick={this.test3}>Add test message w/ content</Button>
|
||
|
</Segment>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
private test1 = () => {
|
||
|
this.props.state.uiStore.addMessage({
|
||
|
info: true, content: "Test Message! " + getRandomId(), header: "Header to test message",
|
||
|
});
|
||
|
}
|
||
|
|
||
|
private test2 = () => {
|
||
|
this.props.state.uiStore.addMessage({
|
||
|
warning: true, content: "Im gonna dissapear in 5 seconds " + getRandomId(),
|
||
|
header: "Header to test message", timeout: 5000,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
private test3 = () => {
|
||
|
this.props.state.uiStore.addMessage({
|
||
|
color: "brown", content: <div className="ui segment">I Have crazy content!</div>,
|
||
|
header: "Header to test message", timeout: 5000,
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default injectState(MessageTest);
|