2020-07-22 08:53:29 +03:00
|
|
|
|
import * as React from "react";
|
|
|
|
|
import * as System from "~/components/system";
|
|
|
|
|
import * as Actions from "~/common/actions";
|
2020-08-25 21:08:42 +03:00
|
|
|
|
import * as Strings from "~/common/strings";
|
2020-07-23 11:57:44 +03:00
|
|
|
|
import * as Validations from "~/common/validations";
|
2020-10-27 13:56:29 +03:00
|
|
|
|
import * as Window from "~/common/window";
|
2020-11-13 01:36:20 +03:00
|
|
|
|
import * as Constants from "~/common/constants";
|
2020-08-20 08:29:33 +03:00
|
|
|
|
import * as FileUtilities from "~/common/file-utilities";
|
2020-11-22 00:25:40 +03:00
|
|
|
|
import * as UserBehaviors from "~/common/user-behaviors";
|
2020-11-28 07:39:01 +03:00
|
|
|
|
import * as Events from "~/common/custom-events";
|
2021-06-09 03:41:40 +03:00
|
|
|
|
import * as SVG from "~/common/svg";
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
2020-11-30 08:24:22 +03:00
|
|
|
|
import { css } from "@emotion/react";
|
2020-12-18 00:49:39 +03:00
|
|
|
|
import { SecondaryTabGroup } from "~/components/core/TabGroup";
|
2021-05-17 06:23:46 +03:00
|
|
|
|
import { ConfirmationModal } from "~/components/core/ConfirmationModal";
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
2021-05-17 06:23:46 +03:00
|
|
|
|
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
2020-07-22 08:53:29 +03:00
|
|
|
|
import ScenePage from "~/components/core/ScenePage";
|
2020-10-27 13:56:29 +03:00
|
|
|
|
import ScenePageHeader from "~/components/core/ScenePageHeader";
|
2020-07-22 08:53:29 +03:00
|
|
|
|
import Avatar from "~/components/core/Avatar";
|
2020-06-08 09:45:53 +03:00
|
|
|
|
|
|
|
|
|
const STYLES_FILE_HIDDEN = css`
|
|
|
|
|
height: 1px;
|
|
|
|
|
width: 1px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: -1px;
|
|
|
|
|
left: -1px;
|
|
|
|
|
`;
|
2020-04-09 00:29:13 +03:00
|
|
|
|
|
2020-10-27 11:40:52 +03:00
|
|
|
|
const STYLES_COPY_INPUT = css`
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-11-13 01:36:20 +03:00
|
|
|
|
const STYLES_HEADER = css`
|
|
|
|
|
font-family: ${Constants.font.semiBold};
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
`;
|
|
|
|
|
|
2020-04-09 00:29:13 +03:00
|
|
|
|
export default class SceneEditAccount extends React.Component {
|
2020-07-23 11:57:44 +03:00
|
|
|
|
state = {
|
|
|
|
|
username: this.props.viewer.username,
|
|
|
|
|
password: "",
|
|
|
|
|
confirm: "",
|
2020-08-22 08:45:50 +03:00
|
|
|
|
body: this.props.viewer.data.body,
|
|
|
|
|
photo: this.props.viewer.data.photo,
|
2020-08-25 08:00:32 +03:00
|
|
|
|
name: this.props.viewer.data.name,
|
2020-07-23 11:57:44 +03:00
|
|
|
|
deleting: false,
|
2021-03-07 23:53:54 +03:00
|
|
|
|
allow_filecoin_directory_listing: this.props.viewer.data.settings
|
|
|
|
|
?.allow_filecoin_directory_listing,
|
|
|
|
|
allow_automatic_data_storage: this.props.viewer.data.settings?.allow_automatic_data_storage,
|
|
|
|
|
allow_encrypted_data_storage: this.props.viewer.data.settings?.allow_encrypted_data_storage,
|
2020-07-23 11:57:44 +03:00
|
|
|
|
changingPassword: false,
|
|
|
|
|
changingAvatar: false,
|
2021-02-10 05:14:08 +03:00
|
|
|
|
savingNameBio: false,
|
2020-09-27 02:40:44 +03:00
|
|
|
|
changingFilecoin: false,
|
2021-05-11 19:42:33 +03:00
|
|
|
|
modalShow: false,
|
2021-06-09 03:41:40 +03:00
|
|
|
|
showPassword: false,
|
2020-07-23 11:57:44 +03:00
|
|
|
|
};
|
2020-07-01 09:41:54 +03:00
|
|
|
|
|
2020-06-08 09:45:53 +03:00
|
|
|
|
_handleUpload = async (e) => {
|
2021-02-10 05:25:51 +03:00
|
|
|
|
this.setState({ changingAvatar: true });
|
2021-03-07 23:53:54 +03:00
|
|
|
|
let file = await UserBehaviors.uploadImage(e.target.files[0], this.props.resources, true);
|
|
|
|
|
if (!file) {
|
2020-07-24 10:45:21 +03:00
|
|
|
|
this.setState({ changingAvatar: false });
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-07 23:53:54 +03:00
|
|
|
|
const cid = file.cid;
|
|
|
|
|
const url = Strings.getURLfromCID(cid);
|
2020-11-13 01:36:20 +03:00
|
|
|
|
let updateResponse = await Actions.updateViewer({
|
2020-08-22 08:45:50 +03:00
|
|
|
|
data: {
|
2021-03-07 23:53:54 +03:00
|
|
|
|
photo: Strings.getURLfromCID(cid),
|
2020-08-22 08:45:50 +03:00
|
|
|
|
},
|
2020-07-22 13:51:40 +03:00
|
|
|
|
});
|
|
|
|
|
|
2020-11-28 07:39:01 +03:00
|
|
|
|
Events.hasError(updateResponse);
|
2020-11-13 01:36:20 +03:00
|
|
|
|
this.setState({ changingAvatar: false, photo: url });
|
2020-08-22 08:45:50 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-09-27 02:40:44 +03:00
|
|
|
|
_handleSaveFilecoin = async (e) => {
|
|
|
|
|
this.setState({ changingFilecoin: true });
|
|
|
|
|
|
2020-11-13 01:36:20 +03:00
|
|
|
|
let response = await Actions.updateViewer({
|
2020-09-27 02:40:44 +03:00
|
|
|
|
data: {
|
2021-03-07 23:53:54 +03:00
|
|
|
|
settings: {
|
|
|
|
|
allow_filecoin_directory_listing: this.state.allow_filecoin_directory_listing,
|
|
|
|
|
allow_automatic_data_storage: this.state.allow_automatic_data_storage,
|
|
|
|
|
allow_encrypted_data_storage: this.state.allow_encrypted_data_storage,
|
|
|
|
|
},
|
2020-09-27 02:40:44 +03:00
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
2020-11-28 07:39:01 +03:00
|
|
|
|
Events.hasError(response);
|
2020-11-13 01:36:20 +03:00
|
|
|
|
|
2020-09-27 02:40:44 +03:00
|
|
|
|
this.setState({ changingFilecoin: false });
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-01 09:41:54 +03:00
|
|
|
|
_handleSave = async (e) => {
|
2020-07-23 11:57:44 +03:00
|
|
|
|
if (!Validations.username(this.state.username)) {
|
2020-11-28 07:39:01 +03:00
|
|
|
|
Events.dispatchMessage({
|
|
|
|
|
message: "Please include only letters and numbers in your username",
|
2020-09-12 01:25:33 +03:00
|
|
|
|
});
|
2020-07-23 11:57:44 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-18 00:49:39 +03:00
|
|
|
|
let data = { ...this.props.viewer.data, body: this.state.body, name: this.state.name };
|
2021-05-06 03:08:14 +03:00
|
|
|
|
this.props.onAction({ type: "UPDATE_VIEWER", viewer: { username: this.state.username, data } });
|
2021-02-10 05:14:08 +03:00
|
|
|
|
this.setState({ savingNameBio: true });
|
2020-12-18 00:49:39 +03:00
|
|
|
|
|
2020-11-13 01:36:20 +03:00
|
|
|
|
let response = await Actions.updateViewer({
|
2020-07-22 13:51:40 +03:00
|
|
|
|
username: this.state.username,
|
2020-08-22 08:45:50 +03:00
|
|
|
|
data: {
|
|
|
|
|
photo: this.state.photo,
|
|
|
|
|
body: this.state.body,
|
2020-08-25 08:00:32 +03:00
|
|
|
|
name: this.state.name,
|
2020-08-22 08:45:50 +03:00
|
|
|
|
},
|
2020-07-22 13:51:40 +03:00
|
|
|
|
});
|
2020-07-01 09:41:54 +03:00
|
|
|
|
|
2020-11-28 07:39:01 +03:00
|
|
|
|
Events.hasError(response);
|
2021-02-10 05:14:08 +03:00
|
|
|
|
this.setState({ savingNameBio: false });
|
2020-07-23 11:57:44 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-09-03 19:19:52 +03:00
|
|
|
|
_handleUsernameChange = (e) => {
|
|
|
|
|
this.setState({ [e.target.name]: e.target.value.toLowerCase() });
|
|
|
|
|
};
|
|
|
|
|
|
2020-07-23 11:57:44 +03:00
|
|
|
|
_handleChangePassword = async (e) => {
|
|
|
|
|
if (this.state.password !== this.state.confirm) {
|
2020-11-28 07:39:01 +03:00
|
|
|
|
Events.dispatchMessage({ message: "Passwords did not match" });
|
2020-07-23 11:57:44 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!Validations.password(this.state.password)) {
|
2020-11-28 07:39:01 +03:00
|
|
|
|
Events.dispatchMessage({ message: "Password length must be more than 8 characters" });
|
2020-07-23 11:57:44 +03:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-22 04:20:24 +03:00
|
|
|
|
this.setState({ changingPassword: true });
|
2020-11-28 07:39:01 +03:00
|
|
|
|
|
2020-11-13 01:36:20 +03:00
|
|
|
|
let response = await Actions.updateViewer({
|
2020-07-23 11:57:44 +03:00
|
|
|
|
type: "CHANGE_PASSWORD",
|
|
|
|
|
password: this.state.password,
|
|
|
|
|
});
|
|
|
|
|
|
2020-11-28 07:39:01 +03:00
|
|
|
|
if (Events.hasError(response)) {
|
|
|
|
|
this.setState({ changingPassword: false });
|
|
|
|
|
return;
|
2020-11-13 01:36:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-07-23 11:57:44 +03:00
|
|
|
|
this.setState({ changingPassword: false, password: "", confirm: "" });
|
2020-07-01 09:41:54 +03:00
|
|
|
|
};
|
|
|
|
|
|
2021-05-11 19:42:33 +03:00
|
|
|
|
_handleDelete = async (res) => {
|
|
|
|
|
if (!res) {
|
|
|
|
|
this.setState({ modalShow: false });
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-07-22 08:53:29 +03:00
|
|
|
|
this.setState({ deleting: true });
|
2021-05-11 19:42:33 +03:00
|
|
|
|
this.setState({ modalShow: false });
|
2021-05-06 03:08:14 +03:00
|
|
|
|
|
2020-10-27 13:56:29 +03:00
|
|
|
|
await Window.delay(100);
|
2020-07-22 08:53:29 +03:00
|
|
|
|
|
2021-04-20 01:28:57 +03:00
|
|
|
|
await UserBehaviors.deleteMe({ viewer: this.props.viewer });
|
2021-05-06 03:08:14 +03:00
|
|
|
|
window.location.replace("/_/auth");
|
2020-09-13 05:59:47 +03:00
|
|
|
|
this.setState({ deleting: false });
|
2020-07-22 08:53:29 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-04-09 00:29:13 +03:00
|
|
|
|
_handleChange = (e) => {
|
2020-09-27 02:40:44 +03:00
|
|
|
|
this.setState({ [e.target.name]: e.target.value });
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-09 00:29:13 +03:00
|
|
|
|
render() {
|
2021-05-06 03:08:14 +03:00
|
|
|
|
let tab = this.props.page.params?.tab || "profile";
|
2020-04-09 00:29:13 +03:00
|
|
|
|
return (
|
2021-05-17 06:23:46 +03:00
|
|
|
|
<WebsitePrototypeWrapper
|
|
|
|
|
title={`${this.props.page.pageTitle} • Slate`}
|
|
|
|
|
url={`${Constants.hostname}${this.props.page.pathname}`}
|
|
|
|
|
>
|
|
|
|
|
<ScenePage>
|
|
|
|
|
<ScenePageHeader title="Settings" />
|
|
|
|
|
<SecondaryTabGroup
|
|
|
|
|
tabs={[
|
|
|
|
|
{ title: "Profile", value: { tab: "profile" } },
|
|
|
|
|
{ title: "Data Storage", value: { tab: "storage" } },
|
|
|
|
|
{ title: "Security", value: { tab: "security" } },
|
|
|
|
|
{ title: "Account", value: { tab: "account" } },
|
|
|
|
|
]}
|
|
|
|
|
value={tab}
|
|
|
|
|
onAction={this.props.onAction}
|
|
|
|
|
style={{ marginBottom: 48 }}
|
|
|
|
|
/>
|
|
|
|
|
{tab === "profile" ? (
|
|
|
|
|
<div>
|
|
|
|
|
<div css={STYLES_HEADER}>Your Avatar</div>
|
|
|
|
|
|
|
|
|
|
<Avatar size={256} url={this.props.viewer.data.photo} />
|
|
|
|
|
|
|
|
|
|
<div style={{ marginTop: 24 }}>
|
|
|
|
|
<input
|
|
|
|
|
css={STYLES_FILE_HIDDEN}
|
|
|
|
|
type="file"
|
|
|
|
|
id="file"
|
|
|
|
|
onChange={this._handleUpload}
|
|
|
|
|
/>
|
|
|
|
|
<System.ButtonPrimary
|
|
|
|
|
style={{ margin: "0 16px 16px 0", width: "200px" }}
|
|
|
|
|
type="label"
|
|
|
|
|
htmlFor="file"
|
|
|
|
|
loading={this.state.changingAvatar}
|
|
|
|
|
>
|
|
|
|
|
Upload avatar
|
|
|
|
|
</System.ButtonPrimary>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div css={STYLES_HEADER}>Display name</div>
|
|
|
|
|
<System.Input
|
|
|
|
|
name="name"
|
|
|
|
|
value={this.state.name}
|
|
|
|
|
placeholder="Your name..."
|
|
|
|
|
onChange={this._handleChange}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<div css={STYLES_HEADER}>Bio</div>
|
|
|
|
|
<System.Textarea
|
|
|
|
|
name="body"
|
|
|
|
|
value={this.state.body}
|
|
|
|
|
placeholder="A bit about yourself..."
|
|
|
|
|
onChange={this._handleChange}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<div style={{ marginTop: 24 }}>
|
|
|
|
|
<System.ButtonPrimary
|
|
|
|
|
onClick={this._handleSave}
|
|
|
|
|
loading={this.state.savingNameBio}
|
|
|
|
|
style={{ width: "200px" }}
|
|
|
|
|
>
|
|
|
|
|
Save
|
|
|
|
|
</System.ButtonPrimary>
|
|
|
|
|
</div>
|
2020-11-13 01:36:20 +03:00
|
|
|
|
</div>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
) : null}
|
|
|
|
|
{tab === "storage" ? (
|
2020-11-13 01:36:20 +03:00
|
|
|
|
<div style={{ maxWidth: 800 }}>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
<div css={STYLES_HEADER}>
|
|
|
|
|
Allow Slate to make Filecoin archive storage deals on your behalf
|
|
|
|
|
</div>
|
|
|
|
|
<div style={{ maxWidth: 800 }}>
|
|
|
|
|
If this box is checked, then we will make Filecoin archive storage deals on your
|
|
|
|
|
behalf. By default these storage deals are not encrypted and anyone can retrieve
|
|
|
|
|
them from the Filecoin Network.
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<System.CheckBox
|
|
|
|
|
style={{ marginTop: 48 }}
|
|
|
|
|
name="allow_filecoin_directory_listing"
|
|
|
|
|
value={this.state.allow_filecoin_directory_listing}
|
|
|
|
|
onChange={this._handleChange}
|
2020-10-27 11:40:52 +03:00
|
|
|
|
>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
Show your successful deals on a directory page where others can retrieve them.
|
|
|
|
|
</System.CheckBox>
|
|
|
|
|
|
|
|
|
|
<System.CheckBox
|
|
|
|
|
style={{ marginTop: 24 }}
|
|
|
|
|
name="allow_automatic_data_storage"
|
|
|
|
|
value={this.state.allow_automatic_data_storage}
|
|
|
|
|
onChange={this._handleChange}
|
2020-10-27 11:40:52 +03:00
|
|
|
|
>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
Allow Slate to make archive storage deals on your behalf to the Filecoin Network.
|
|
|
|
|
You will get a receipt in the Filecoin section.
|
|
|
|
|
</System.CheckBox>
|
|
|
|
|
|
|
|
|
|
<System.CheckBox
|
|
|
|
|
style={{ marginTop: 24 }}
|
|
|
|
|
name="allow_encrypted_data_storage"
|
|
|
|
|
value={this.state.allow_encrypted_data_storage}
|
|
|
|
|
onChange={this._handleChange}
|
|
|
|
|
>
|
|
|
|
|
Force encryption on archive storage deals (only you can see retrieved data from the
|
|
|
|
|
Filecoin network).
|
|
|
|
|
</System.CheckBox>
|
|
|
|
|
|
|
|
|
|
<div style={{ marginTop: 24 }}>
|
|
|
|
|
<System.ButtonPrimary
|
|
|
|
|
onClick={this._handleSaveFilecoin}
|
|
|
|
|
loading={this.state.changingFilecoin}
|
|
|
|
|
style={{ width: "200px" }}
|
|
|
|
|
>
|
|
|
|
|
Save
|
|
|
|
|
</System.ButtonPrimary>
|
|
|
|
|
</div>
|
2020-11-23 08:05:48 +03:00
|
|
|
|
</div>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
) : null}
|
|
|
|
|
{tab === "security" ? (
|
|
|
|
|
<div>
|
|
|
|
|
<div css={STYLES_HEADER}>Change password</div>
|
|
|
|
|
<div>Passwords must be a minimum of eight characters.</div>
|
|
|
|
|
|
|
|
|
|
<System.Input
|
|
|
|
|
containerStyle={{ marginTop: 24 }}
|
|
|
|
|
name="password"
|
2021-06-09 03:41:40 +03:00
|
|
|
|
type={this.state.showPassword ? "text" : "password"}
|
2021-05-17 06:23:46 +03:00
|
|
|
|
value={this.state.password}
|
|
|
|
|
placeholder="Your new password"
|
|
|
|
|
onChange={this._handleChange}
|
2021-06-09 03:41:40 +03:00
|
|
|
|
onClickIcon={() => this.setState({ showPassword: !this.state.showPassword })}
|
|
|
|
|
icon={this.state.showPassword ? SVG.EyeOff : SVG.Eye}
|
2021-05-17 06:23:46 +03:00
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<div style={{ marginTop: 24 }}>
|
|
|
|
|
<System.ButtonPrimary
|
|
|
|
|
onClick={this._handleChangePassword}
|
|
|
|
|
loading={this.state.changingPassword}
|
|
|
|
|
style={{ width: "200px" }}
|
|
|
|
|
>
|
|
|
|
|
Change password
|
|
|
|
|
</System.ButtonPrimary>
|
|
|
|
|
</div>
|
2020-11-13 01:36:20 +03:00
|
|
|
|
</div>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
) : null}
|
|
|
|
|
{tab === "account" ? (
|
|
|
|
|
<div>
|
|
|
|
|
<div css={STYLES_HEADER}>Change username</div>
|
|
|
|
|
<div style={{ maxWidth: 800 }}>
|
|
|
|
|
Username must be unique. <br />
|
|
|
|
|
Changing your username will make any links to your profile or slates that you
|
|
|
|
|
previously shared invalid.
|
|
|
|
|
</div>
|
|
|
|
|
<System.Input
|
|
|
|
|
containerStyle={{ marginTop: 12 }}
|
|
|
|
|
name="username"
|
|
|
|
|
value={this.state.username}
|
|
|
|
|
placeholder="Username"
|
2021-06-09 04:01:16 +03:00
|
|
|
|
type="text"
|
2021-05-17 06:23:46 +03:00
|
|
|
|
onChange={this._handleUsernameChange}
|
|
|
|
|
/>
|
|
|
|
|
<div style={{ marginTop: 24 }}>
|
|
|
|
|
<System.ButtonPrimary onClick={this._handleSave} style={{ width: "200px" }}>
|
|
|
|
|
Change my username
|
|
|
|
|
</System.ButtonPrimary>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div css={STYLES_HEADER} style={{ marginTop: 64 }}>
|
|
|
|
|
Delete your account
|
|
|
|
|
</div>
|
|
|
|
|
<div style={{ maxWidth: 800 }}>
|
|
|
|
|
If you choose to delete your account you will lose your Textile Hub and Powergate
|
|
|
|
|
key.
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div style={{ marginTop: 24 }}>
|
|
|
|
|
<System.ButtonWarning
|
|
|
|
|
onClick={() => this.setState({ modalShow: true })}
|
|
|
|
|
loading={this.state.deleting}
|
|
|
|
|
style={{ width: "200px" }}
|
|
|
|
|
>
|
|
|
|
|
Delete my account
|
|
|
|
|
</System.ButtonWarning>
|
|
|
|
|
</div>
|
2020-10-27 11:40:52 +03:00
|
|
|
|
</div>
|
2021-05-17 06:23:46 +03:00
|
|
|
|
) : null}
|
|
|
|
|
<input
|
|
|
|
|
readOnly
|
|
|
|
|
ref={(c) => {
|
|
|
|
|
this._ref = c;
|
|
|
|
|
}}
|
|
|
|
|
value={this.state.copyValue}
|
|
|
|
|
tabIndex="-1"
|
|
|
|
|
css={STYLES_COPY_INPUT}
|
|
|
|
|
/>{" "}
|
|
|
|
|
{this.state.modalShow && (
|
|
|
|
|
<ConfirmationModal
|
|
|
|
|
type={"DELETE"}
|
|
|
|
|
withValidation={true}
|
|
|
|
|
matchValue={this.state.username}
|
|
|
|
|
callback={this._handleDelete}
|
|
|
|
|
header={`Are you sure you want to delete your account @${this.state.username}?`}
|
|
|
|
|
subHeader={`You will lose all your files and collections. You can’t undo this action.`}
|
|
|
|
|
inputHeader={`Please type your username to confirm`}
|
|
|
|
|
inputPlaceholder={`username`}
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</ScenePage>
|
|
|
|
|
</WebsitePrototypeWrapper>
|
2020-04-09 00:29:13 +03:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|