2020-09-17 02:26:15 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Strings from "~/common/strings";
|
|
|
|
import * as Constants from "~/common/constants";
|
|
|
|
import * as System from "~/components/system";
|
|
|
|
import * as Actions from "~/common/actions";
|
2020-11-28 07:39:01 +03:00
|
|
|
import * as Events from "~/common/custom-events";
|
2020-09-17 02:26:15 +03:00
|
|
|
|
2020-11-30 08:24:22 +03:00
|
|
|
import { css } from "@emotion/react";
|
2020-09-17 02:26:15 +03:00
|
|
|
|
|
|
|
const STYLES_HEADER = css`
|
|
|
|
font-family: ${Constants.font.semiBold};
|
|
|
|
margin-top: 32px;
|
|
|
|
`;
|
|
|
|
|
|
|
|
export default class SidebarCreateSlate extends React.Component {
|
|
|
|
state = {
|
2020-11-04 20:55:48 +03:00
|
|
|
name: this.props.viewer.data && this.props.viewer.data.name ? this.props.viewer.data.name : "",
|
2020-09-17 02:26:15 +03:00
|
|
|
email: "",
|
2020-09-17 21:37:29 +03:00
|
|
|
twitter: "",
|
2020-09-17 02:26:15 +03:00
|
|
|
message: "",
|
|
|
|
loading: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleSubmit = async () => {
|
|
|
|
this.setState({ loading: true });
|
2020-09-23 23:52:00 +03:00
|
|
|
if (Strings.isEmpty(this.state.email)) {
|
2020-11-28 07:39:01 +03:00
|
|
|
Events.dispatchMessage({ message: "Please provide an email address where we can reach you" });
|
2020-09-17 02:26:15 +03:00
|
|
|
this.setState({ loading: false });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.state.message || !this.state.message.length) {
|
2020-11-28 07:39:01 +03:00
|
|
|
Events.dispatchMessage({ message: "Please provide a message" });
|
2020-09-17 02:26:15 +03:00
|
|
|
this.setState({ loading: false });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const response = await Actions.createSupportMessage({
|
|
|
|
username: this.props.viewer.username,
|
|
|
|
name: this.state.name,
|
|
|
|
email: this.state.email,
|
2020-09-17 21:37:29 +03:00
|
|
|
twitter: this.state.twitter,
|
2020-09-17 02:26:15 +03:00
|
|
|
message: this.state.message,
|
|
|
|
stored: Strings.bytesToSize(this.props.viewer.stats.bytes),
|
|
|
|
});
|
|
|
|
|
2020-11-28 07:39:01 +03:00
|
|
|
if (Events.hasError(response)) {
|
2020-09-17 02:26:15 +03:00
|
|
|
this.setState({ loading: false });
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-28 07:39:01 +03:00
|
|
|
Events.dispatchMessage({
|
|
|
|
message: "Message sent. You'll hear from us shortly",
|
|
|
|
status: "INFO",
|
2020-09-17 02:26:15 +03:00
|
|
|
});
|
|
|
|
this.setState({ loading: false });
|
|
|
|
this.props.onCancel();
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
_handleChange = (e) => {
|
|
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
|
|
};
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<System.P
|
|
|
|
style={{
|
|
|
|
fontFamily: Constants.font.semiBold,
|
|
|
|
fontSize: Constants.typescale.lvl3,
|
|
|
|
marginBottom: "64px",
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Talk to us
|
|
|
|
</System.P>
|
|
|
|
|
|
|
|
<System.P css={STYLES_HEADER}>Name</System.P>
|
|
|
|
<System.Input
|
|
|
|
name="name"
|
|
|
|
style={{ marginTop: 16 }}
|
|
|
|
placeholder="Name"
|
|
|
|
value={this.state.name}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
onSubmit={this._handleSubmit}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<System.P css={STYLES_HEADER}>Email</System.P>
|
|
|
|
<System.Input
|
|
|
|
name="email"
|
|
|
|
style={{ marginTop: 16 }}
|
|
|
|
placeholder="Email"
|
|
|
|
value={this.state.email}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
onSubmit={this._handleSubmit}
|
|
|
|
/>
|
|
|
|
|
2020-09-17 21:37:29 +03:00
|
|
|
<System.P css={STYLES_HEADER}>Twitter</System.P>
|
|
|
|
<System.Input
|
|
|
|
name="twitter"
|
|
|
|
style={{ marginTop: 16 }}
|
|
|
|
placeholder="Twitter (optional)"
|
|
|
|
value={this.state.twitter}
|
|
|
|
onChange={this._handleChange}
|
|
|
|
onSubmit={this._handleSubmit}
|
|
|
|
/>
|
|
|
|
|
2020-09-17 02:26:15 +03:00
|
|
|
<System.P css={STYLES_HEADER}>Message</System.P>
|
|
|
|
|
|
|
|
<System.Textarea
|
|
|
|
style={{ marginTop: 16 }}
|
|
|
|
name="message"
|
|
|
|
value={this.state.message}
|
|
|
|
placeholder="Leave us your questions or feedback and we'll get back to you soon!"
|
|
|
|
onChange={this._handleChange}
|
|
|
|
onSubmit={this._handleSubmit}
|
|
|
|
/>
|
|
|
|
|
|
|
|
<System.ButtonPrimary
|
|
|
|
full
|
|
|
|
style={{ marginTop: 48 }}
|
|
|
|
onClick={this._handleSubmit}
|
|
|
|
loading={this.state.loading}
|
|
|
|
>
|
|
|
|
Send message
|
|
|
|
</System.ButtonPrimary>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|