2021-07-27 18:20:57 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as Strings from "~/common/strings";
|
|
|
|
import * as Styles from "~/common/styles";
|
|
|
|
import * as Actions from "~/common/actions";
|
|
|
|
import * as Events from "~/common/custom-events";
|
|
|
|
|
|
|
|
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
|
|
|
|
|
|
|
|
import { SignUpPopover } from "~/components/core/Auth/components";
|
|
|
|
import { H5, P3 } from "~/components/system/components/Typography";
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
import { ButtonPrimary } from "~/components/system/components/Buttons";
|
|
|
|
import { useForm } from "~/common/hooks";
|
|
|
|
import { Input } from "~/components/system";
|
2021-07-29 22:10:47 +03:00
|
|
|
import { BackgroundGenerator } from "~/components/core/Auth/components";
|
2021-07-27 18:20:57 +03:00
|
|
|
|
2021-07-27 19:51:39 +03:00
|
|
|
const TOOLS_OPTIONS = {
|
|
|
|
Dropbox: "DROPBOX",
|
|
|
|
"Google Drive": "GOOGLE_DRIVE",
|
|
|
|
"Are.na": "ARENA",
|
|
|
|
Pinterest: "PINTEREST",
|
|
|
|
"Browser Bookmarks": "BROWSER_BOOKMARKS",
|
|
|
|
};
|
|
|
|
const SLATE_USECASES_OPTIONS = {
|
|
|
|
"Personal Storage": "PERSONAL_STORAGE",
|
|
|
|
"Public File Sharing": "PUBLIC_FILE_SHARING",
|
|
|
|
Moodboarding: "MOODBOARDING",
|
|
|
|
Archiving: "ARCHIVING",
|
|
|
|
Bookmarking: "BOOKMARKING",
|
|
|
|
};
|
|
|
|
|
|
|
|
const REFERRAL_OPTIONS = {
|
|
|
|
Twitter: "TWITTER",
|
|
|
|
"IPFS/Filecoin Community": "IPFS_FILECOIN",
|
|
|
|
"From a friend": "FRIEND",
|
|
|
|
};
|
2021-07-27 18:20:57 +03:00
|
|
|
|
|
|
|
// NOTE(amine): form styles
|
|
|
|
const STYLES_FORM_WRAPPER = css`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
`;
|
|
|
|
|
|
|
|
// NOTE(amine): input styles
|
|
|
|
const STYLES_SURVEY_INPUT = (theme) => css`
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 45px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 0 0 1px ${theme.system.gray};
|
|
|
|
background-color: transparent;
|
|
|
|
& > input::placeholder {
|
|
|
|
${Styles.H5};
|
|
|
|
color: ${theme.semantic.textGray};
|
|
|
|
text-align: center;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
// NOTE(amine): checkbox styles
|
|
|
|
const STYLES_CHECKBOX_WRAPPER = (theme) => css`
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 45px;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: 1px solid ${theme.system.gray};
|
|
|
|
background-color: transparent;
|
|
|
|
transition: all 0.3s;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_CHECKBOX_SELECTED = (theme) => css`
|
|
|
|
border: 1px solid ${theme.system.blue};
|
|
|
|
background-color: ${theme.system.grayLight4};
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_CHECKBOX_INPUT = css`
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0%;
|
|
|
|
left: 0%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
${Styles.HOVERABLE};
|
|
|
|
`;
|
|
|
|
|
2021-07-27 19:51:39 +03:00
|
|
|
function SceneSurvey() {
|
2021-07-27 18:20:57 +03:00
|
|
|
const [step, setStep] = React.useState(1);
|
|
|
|
const surveyResults = React.useRef({});
|
|
|
|
|
|
|
|
if (step === 1) {
|
|
|
|
return (
|
|
|
|
<ToolsForm
|
|
|
|
onSubmit={(value) => {
|
2021-07-27 19:51:39 +03:00
|
|
|
surveyResults.current.tools = value.map((item) => TOOLS_OPTIONS[item] || item).join(",");
|
2021-07-27 18:20:57 +03:00
|
|
|
setStep(2);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (step === 2) {
|
|
|
|
return (
|
|
|
|
<UsecasesForm
|
|
|
|
onSubmit={(value) => {
|
2021-07-27 19:51:39 +03:00
|
|
|
surveyResults.current.useCases = value
|
|
|
|
.map((item) => SLATE_USECASES_OPTIONS[item] || item)
|
|
|
|
.join(",");
|
2021-07-27 18:20:57 +03:00
|
|
|
setStep(3);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ReferralForm
|
|
|
|
onSubmit={async (value) => {
|
2021-07-27 19:51:39 +03:00
|
|
|
surveyResults.current.referrals = value
|
|
|
|
.map((item) => REFERRAL_OPTIONS[item] || item)
|
|
|
|
.join(",");
|
2021-07-27 18:20:57 +03:00
|
|
|
// call endpoint
|
2021-11-11 17:13:35 +03:00
|
|
|
const response = await Actions.createOnboarding(surveyResults.current);
|
2021-07-27 18:20:57 +03:00
|
|
|
if (Events.hasError(response)) {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-27 19:51:39 +03:00
|
|
|
window.location.replace("/_/data");
|
2021-07-27 18:20:57 +03:00
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const ToolsForm = ({ onSubmit }) => {
|
|
|
|
const { getFieldProps, getFormProps, values } = useForm({
|
|
|
|
initialValues: { tools: [], other: "" },
|
|
|
|
onSubmit: ({ tools, other }) => {
|
|
|
|
const value = [...tools];
|
|
|
|
if (!Strings.isEmpty(other)) {
|
|
|
|
value.push(other);
|
|
|
|
}
|
|
|
|
onSubmit(value);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const isCheckBoxSelected = (fieldValue) => values.tools.some((item) => item === fieldValue);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<SignUpPopover title="What do you currently use for saving things on the web?">
|
|
|
|
<form css={STYLES_FORM_WRAPPER} {...getFormProps()}>
|
|
|
|
<H5
|
|
|
|
style={{ marginTop: 24 }}
|
|
|
|
css={(theme) => css({ color: theme.semantic.textGrayDark })}
|
|
|
|
>
|
|
|
|
Select all that apply
|
|
|
|
</H5>
|
2021-07-27 19:51:39 +03:00
|
|
|
{Object.keys(TOOLS_OPTIONS).map((item, i) => (
|
2021-07-27 18:20:57 +03:00
|
|
|
<Checkbox
|
|
|
|
key={i}
|
|
|
|
style={{ marginTop: 12 }}
|
|
|
|
type="checkbox"
|
|
|
|
isSelected={isCheckBoxSelected(item)}
|
|
|
|
{...getFieldProps("tools", { type: "checkbox" })}
|
|
|
|
value={item}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
<Input
|
|
|
|
inputCss={STYLES_SURVEY_INPUT}
|
|
|
|
style={{ marginTop: 12 }}
|
|
|
|
placeholder="Others"
|
|
|
|
type="text"
|
|
|
|
{...getFieldProps("other")}
|
|
|
|
/>
|
|
|
|
<ButtonPrimary type="submit" style={{ marginTop: 24 }}>
|
|
|
|
Next
|
|
|
|
</ButtonPrimary>
|
|
|
|
<P3 style={{ marginTop: 12 }} color="textBlack">
|
|
|
|
1/3
|
|
|
|
</P3>
|
|
|
|
</form>
|
|
|
|
</SignUpPopover>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const UsecasesForm = ({ onSubmit }) => {
|
|
|
|
const { getFieldProps, getFormProps, values } = useForm({
|
|
|
|
initialValues: { tools: [], other: "" },
|
|
|
|
onSubmit: ({ tools, other }) => {
|
|
|
|
const value = [...tools];
|
|
|
|
if (!Strings.isEmpty(other)) {
|
|
|
|
value.push(other);
|
|
|
|
}
|
|
|
|
onSubmit(value);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const isCheckBoxSelected = (fieldValue) => values.tools.some((item) => item === fieldValue);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<SignUpPopover title="What are you interested in using Slate for?">
|
|
|
|
<form css={STYLES_FORM_WRAPPER} {...getFormProps()}>
|
|
|
|
<H5 style={{ marginTop: 24 }} color="textGrayDark">
|
|
|
|
Select all that apply
|
|
|
|
</H5>
|
2021-07-27 19:51:39 +03:00
|
|
|
{Object.keys(SLATE_USECASES_OPTIONS).map((item, i) => (
|
2021-07-27 18:20:57 +03:00
|
|
|
<Checkbox
|
|
|
|
key={i}
|
|
|
|
style={{ marginTop: 12 }}
|
|
|
|
type="checkbox"
|
|
|
|
isSelected={isCheckBoxSelected(item)}
|
|
|
|
{...getFieldProps("tools", { type: "checkbox" })}
|
|
|
|
value={item}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
<Input
|
|
|
|
inputCss={STYLES_SURVEY_INPUT}
|
|
|
|
style={{ marginTop: 12 }}
|
|
|
|
placeholder="Others"
|
|
|
|
type="text"
|
|
|
|
{...getFieldProps("other")}
|
|
|
|
/>
|
|
|
|
<ButtonPrimary type="submit" style={{ marginTop: 24 }}>
|
|
|
|
Next
|
|
|
|
</ButtonPrimary>
|
|
|
|
<P3 style={{ marginTop: 12 }} color="textBlack">
|
|
|
|
2/3
|
|
|
|
</P3>
|
|
|
|
</form>
|
|
|
|
</SignUpPopover>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const ReferralForm = ({ onSubmit }) => {
|
|
|
|
const { getFieldProps, getFormProps, isSubmitting, values } = useForm({
|
|
|
|
initialValues: { referrals: [], other: "" },
|
|
|
|
onSubmit: async ({ referrals, other }) => {
|
|
|
|
const value = [...referrals];
|
|
|
|
if (!Strings.isEmpty(other)) {
|
|
|
|
value.push(other);
|
|
|
|
}
|
|
|
|
await onSubmit(value);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const isCheckBoxSelected = (fieldValue) => values.referrals.some((item) => item === fieldValue);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<SignUpPopover title="How did you find out about Slate?">
|
|
|
|
<form css={STYLES_FORM_WRAPPER} {...getFormProps()}>
|
|
|
|
<H5 style={{ marginTop: 24 }} color="textGrayDark">
|
|
|
|
Select all that apply
|
|
|
|
</H5>
|
2021-07-27 19:51:39 +03:00
|
|
|
{Object.keys(REFERRAL_OPTIONS).map((item, i) => (
|
2021-07-27 18:20:57 +03:00
|
|
|
<Checkbox
|
|
|
|
key={i}
|
|
|
|
style={{ marginTop: 12 }}
|
|
|
|
type="checkbox"
|
|
|
|
isSelected={isCheckBoxSelected(item)}
|
|
|
|
{...getFieldProps("referrals", { type: "checkbox" })}
|
|
|
|
value={item}
|
|
|
|
/>
|
|
|
|
))}
|
|
|
|
<Input
|
|
|
|
inputCss={STYLES_SURVEY_INPUT}
|
|
|
|
style={{ marginTop: 12 }}
|
|
|
|
placeholder="Others"
|
|
|
|
type="text"
|
|
|
|
{...getFieldProps("other")}
|
|
|
|
/>
|
|
|
|
<ButtonPrimary type="submit" loading={isSubmitting} style={{ marginTop: 24 }}>
|
2021-11-11 17:31:02 +03:00
|
|
|
Submit
|
2021-07-27 18:20:57 +03:00
|
|
|
</ButtonPrimary>
|
|
|
|
<P3 style={{ marginTop: 12 }} color="textBlack">
|
|
|
|
3/3
|
|
|
|
</P3>
|
|
|
|
</form>
|
|
|
|
</SignUpPopover>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
2021-07-27 19:51:39 +03:00
|
|
|
|
|
|
|
const Checkbox = ({ touched, value, style, isSelected, ...props }) => {
|
|
|
|
return (
|
|
|
|
<div style={style} css={[STYLES_CHECKBOX_WRAPPER, isSelected && STYLES_CHECKBOX_SELECTED]}>
|
|
|
|
<H5 color="textBlack">{value}</H5>
|
|
|
|
<input value={value} css={STYLES_CHECKBOX_INPUT} type="checkbox" {...props} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const background_image =
|
|
|
|
"https://slate.textile.io/ipfs/bafybeiddgkvf5ta6y5b7wamrxl33mtst4detegleblw4gfduhwm3sdwdra";
|
|
|
|
|
|
|
|
const STYLES_ROOT = css`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
background-image: url(${background_image});
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
|
|
|
`;
|
|
|
|
|
|
|
|
const STYLES_MIDDLE = css`
|
|
|
|
position: relative;
|
|
|
|
min-height: 10%;
|
|
|
|
flex-grow: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: left;
|
|
|
|
padding: 24px;
|
|
|
|
`;
|
2021-07-29 22:10:47 +03:00
|
|
|
|
|
|
|
const WithCustomWrapper = (Component) => (props) => {
|
|
|
|
return (
|
2021-07-27 19:51:39 +03:00
|
|
|
<WebsitePrototypeWrapper>
|
2021-07-29 22:10:47 +03:00
|
|
|
<BackgroundGenerator css={STYLES_ROOT} isMobile={props.isMobile}>
|
2021-07-27 19:51:39 +03:00
|
|
|
<div css={STYLES_MIDDLE}>
|
|
|
|
<Component {...props} />
|
|
|
|
</div>
|
2021-07-29 22:10:47 +03:00
|
|
|
</BackgroundGenerator>
|
2021-07-27 19:51:39 +03:00
|
|
|
</WebsitePrototypeWrapper>
|
|
|
|
);
|
2021-07-29 22:10:47 +03:00
|
|
|
};
|
2021-07-27 19:51:39 +03:00
|
|
|
|
|
|
|
export default WithCustomWrapper(SceneSurvey);
|