summaryrefslogtreecommitdiff
path: root/sw-ui/src/components/home/ChooseNameForm.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'sw-ui/src/components/home/ChooseNameForm.tsx')
-rw-r--r--sw-ui/src/components/home/ChooseNameForm.tsx42
1 files changed, 42 insertions, 0 deletions
diff --git a/sw-ui/src/components/home/ChooseNameForm.tsx b/sw-ui/src/components/home/ChooseNameForm.tsx
new file mode 100644
index 00000000..8292150b
--- /dev/null
+++ b/sw-ui/src/components/home/ChooseNameForm.tsx
@@ -0,0 +1,42 @@
+import { Button, Classes, InputGroup, Intent } from '@blueprintjs/core';
+import React, { ChangeEvent, Component, SyntheticEvent } from 'react';
+import { connect } from 'react-redux';
+import { actions } from '../../redux/actions/user';
+
+type ChooseNameFormPresenterProps = {
+ chooseUsername: (username: string) => void,
+}
+
+class ChooseNameFormPresenter extends Component<ChooseNameFormPresenterProps> {
+ _username = '';
+
+ play = (e: SyntheticEvent<any>) => {
+ e.preventDefault();
+ if (this._username !== undefined) {
+ this.props.chooseUsername(this._username);
+ }
+ };
+
+ render() {
+ return (
+ <form onSubmit={this.play}>
+ <InputGroup
+ className={Classes.LARGE}
+ placeholder="Username"
+ onChange={(e: ChangeEvent<HTMLInputElement>) => (this._username = e.target.value)}
+ rightElement={this.renderSubmit()}
+ />
+ </form>
+ );
+ }
+
+ renderSubmit = () => (
+ <Button className={Classes.MINIMAL} onClick={this.play} intent={Intent.PRIMARY} icon="arrow-right" />
+ );
+}
+
+const mapDispatchToProps = {
+ chooseUsername: actions.chooseUsername,
+};
+
+export const ChooseNameForm = connect(null, mapDispatchToProps)(ChooseNameFormPresenter);
bgstack15