slate/components/core/Profile.js

365 lines
9.7 KiB
JavaScript
Raw Normal View History

import * as React from "react";
import * as Constants from "~/common/constants";
2020-09-27 23:11:04 +03:00
import * as Strings from "~/common/strings";
2021-01-08 03:48:57 +03:00
import * as SVG from "~/common/svg";
2021-01-12 23:30:12 +03:00
import * as Actions from "~/common/actions";
import * as Events from "~/common/custom-events";
2021-05-27 11:20:34 +03:00
import * as Styles from "~/common/styles";
2021-05-06 03:08:14 +03:00
import { Link } from "~/components/core/Link";
2020-11-30 08:24:22 +03:00
import { css } from "@emotion/react";
import { ButtonPrimary, ButtonSecondary } from "~/components/system/components/Buttons";
2021-08-03 20:10:02 +03:00
import { SecondaryTabGroup } from "~/components/core/TabGroup";
import { LoaderSpinner } from "~/components/system/components/Loaders";
import ProcessedText from "~/components/core/ProcessedText";
2021-01-08 03:48:57 +03:00
import EmptyState from "~/components/core/EmptyState";
2021-05-27 11:20:34 +03:00
import ProfilePhoto from "~/components/core/ProfilePhoto";
import CollectionPreviewBlock from "~/components/core/CollectionPreviewBlock";
2021-01-08 03:48:57 +03:00
2021-01-06 02:09:59 +03:00
const STYLES_PROFILE_BACKGROUND = css`
background-color: ${Constants.system.white};
width: 100%;
padding: 104px 56px 24px 56px;
@media (max-width: ${Constants.sizes.mobile}px) {
padding: 80px 24px 16px 24px;
}
`;
2020-11-01 21:40:03 +03:00
const STYLES_PROFILE = css`
width: 100%;
2021-01-15 00:34:41 +03:00
padding: 0px 56px 80px 56px;
2020-11-01 21:40:03 +03:00
overflow-wrap: break-word;
white-space: pre-wrap;
@media (max-width: ${Constants.sizes.mobile}px) {
2021-01-15 00:34:41 +03:00
padding: 0px 24px 16px 24px;
2020-11-01 21:40:03 +03:00
}
`;
const STYLES_PROFILE_INFO = css`
line-height: 1.3;
2020-11-05 00:44:28 +03:00
width: 50%;
2021-01-06 02:09:59 +03:00
max-width: 800px;
2020-11-01 21:40:03 +03:00
overflow-wrap: break-word;
white-space: pre-wrap;
2021-01-06 02:09:59 +03:00
margin: 0 auto;
2020-11-05 21:31:48 +03:00
@media (max-width: ${Constants.sizes.tablet}px) {
2020-11-05 00:44:28 +03:00
width: 100%;
2021-01-06 02:09:59 +03:00
max-width: 100%;
2020-11-05 00:44:28 +03:00
}
2020-11-01 21:40:03 +03:00
`;
2021-01-06 02:09:59 +03:00
const STYLES_INFO = css`
2020-11-01 21:40:03 +03:00
display: block;
width: 100%;
2021-01-06 02:09:59 +03:00
text-align: center;
2020-11-01 21:40:03 +03:00
margin-bottom: 48px;
overflow-wrap: break-word;
white-space: pre-wrap;
`;
const STYLES_PROFILE_IMAGE = css`
2021-07-07 22:58:14 +03:00
background-color: ${Constants.semantic.bgLight};
background-size: cover;
background-position: 50% 50%;
2021-01-06 02:09:59 +03:00
width: 120px;
height: 120px;
2020-11-01 21:40:03 +03:00
flex-shrink: 0;
border-radius: 8px;
2021-01-06 02:09:59 +03:00
margin: 0 auto;
2021-02-04 22:16:24 +03:00
position: relative;
2020-11-01 21:40:03 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
width: 64px;
height: 64px;
}
`;
2021-02-04 22:16:24 +03:00
const STYLES_STATUS_INDICATOR = css`
position: absolute;
bottom: 0;
right: 0;
width: 12px;
height: 12px;
border-radius: 50%;
2021-07-07 22:58:14 +03:00
border: 2px solid ${Constants.system.green};
background-color: ${Constants.system.green};
2021-02-04 22:16:24 +03:00
`;
2021-01-06 02:09:59 +03:00
const STYLES_NAME = css`
font-size: ${Constants.typescale.lvl4};
2020-11-17 10:12:35 +03:00
font-family: ${Constants.font.semiBold};
2020-11-01 21:40:03 +03:00
max-width: 100%;
2020-11-17 10:12:35 +03:00
font-weight: 400;
2021-01-06 02:09:59 +03:00
margin: 16px auto;
2020-11-01 21:40:03 +03:00
overflow-wrap: break-word;
white-space: pre-wrap;
2020-11-17 10:12:35 +03:00
color: ${Constants.system.black};
@media (max-width: ${Constants.sizes.mobile}px) {
margin-bottom: 8px;
}
2020-09-03 00:08:32 +03:00
`;
const STYLES_DESCRIPTION = css`
2020-11-17 10:12:35 +03:00
font-size: ${Constants.typescale.lvl0};
2021-07-07 22:58:14 +03:00
color: ${Constants.system.grayLight2};
2021-01-06 02:09:59 +03:00
max-width: 100%;
2020-11-01 21:40:03 +03:00
overflow-wrap: break-word;
white-space: pre-wrap;
2021-02-22 13:56:56 +03:00
ul,
ol {
white-space: normal;
}
2020-11-01 21:40:03 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
margin-top: 24px;
}
`;
const STYLES_STATS = css`
font-size: ${Constants.typescale.lvl0};
2021-01-06 02:09:59 +03:00
margin: 16px auto;
2020-11-01 21:40:03 +03:00
display: flex;
2021-01-06 02:09:59 +03:00
justify-content: center;
2021-07-07 22:58:14 +03:00
color: ${Constants.system.grayDark2};
2020-11-01 21:40:03 +03:00
`;
const STYLES_STAT = css`
margin: 0px 12px;
${"" /* width: 112px; */}
2020-11-01 21:40:03 +03:00
flex-shrink: 0;
`;
2021-01-06 02:09:59 +03:00
const STYLES_BUTTON = css`
margin-bottom: 32px;
@media (max-width: ${Constants.sizes.mobile}px) {
margin-bottom: 16px;
}
`;
// const STYLES_COPY_INPUT = css`
// pointer-events: none;
// position: absolute;
// opacity: 0;
// `;
2021-01-15 22:00:33 +03:00
2021-05-06 03:08:14 +03:00
function CollectionsPage({
user,
viewer,
fetched,
subscriptions,
tab = "collections",
isOwner,
onAction,
}) {
let slates = [];
if (tab === "collections") {
slates = user.slates
? isOwner
? user.slates.filter((slate) => slate.isPublic === true)
: user.slates
: slates;
} else {
slates = subscriptions;
}
slates = slates || [];
return (
<div>
<SecondaryTabGroup
tabs={[
2021-08-03 20:10:02 +03:00
{ title: "Collections", value: { tab: "collections" } },
{ title: "Subscribed", value: { tab: "subscribed" } },
2021-05-06 03:08:14 +03:00
]}
value={tab}
onAction={onAction}
style={{ margin: "0 0 24px 0" }}
/>
{slates?.length ? (
2021-05-27 11:20:34 +03:00
<div css={Styles.COLLECTIONS_PREVIEW_GRID}>
{slates.map((collection) => (
<Link key={collection.id} href={`/$/slate/${collection.id}`} onAction={onAction}>
<CollectionPreviewBlock
onAction={onAction}
collection={collection}
viewer={viewer}
owner={tab === "collections" ? user : collection.owner}
2021-05-27 11:20:34 +03:00
/>
</Link>
))}
</div>
2021-05-06 03:08:14 +03:00
) : (
<EmptyState>
{tab === "collections" || fetched ? (
<React.Fragment>
<SVG.Slate height="24px" style={{ marginBottom: 24 }} />
{tab === "collections"
? `This user does not have any public collections yet`
: `This user is not following any collections yet`}
</React.Fragment>
) : (
<LoaderSpinner style={{ height: 24, width: 24 }} />
)}
</EmptyState>
)}
2021-05-06 03:08:14 +03:00
</div>
);
}
export default class Profile extends React.Component {
2021-01-15 22:00:33 +03:00
_ref = null;
2021-01-11 23:21:11 +03:00
2020-11-13 01:27:50 +03:00
state = {
2021-01-11 23:21:11 +03:00
contextMenu: null,
subscriptions: [],
isFollowing:
this.props.external || this.props.user.id === this.props.viewer?.id
? false
: !!this.props.viewer?.following.some((entry) => {
return entry.id === this.props.user.id;
}),
fetched: false,
2021-07-17 01:51:01 +03:00
index: -1,
2020-11-13 01:27:50 +03:00
};
componentDidUpdate = (prevProps) => {
2021-05-06 03:08:14 +03:00
if (!this.state.fetched && this.props.page.params !== prevProps.page.params) {
this.fetchSocial();
}
};
fetchSocial = async () => {
if (this.state.fetched) return;
2021-08-03 20:10:02 +03:00
if (this.props.page.params?.tab !== "subscribed") return;
let subscriptions;
if (this.props.user.id === this.props.viewer?.id) {
subscriptions = this.props.viewer?.subscriptions;
} else {
const query = { id: this.props.user.id };
let response = await Actions.getSocial(query);
if (Events.hasError(response)) {
return;
}
subscriptions = response.subscriptions;
}
this.setState({
subscriptions: subscriptions,
fetched: true,
});
};
2021-08-03 20:10:02 +03:00
_handleHide = () => {
this.setState({ contextMenu: null });
};
2021-05-06 03:08:14 +03:00
// _handleClick = (e, value) => {
// e.stopPropagation();
// if (this.state.contextMenu === value) {
// this._handleHide();
// } else {
// this.setState({ contextMenu: value });
// }
// };
_handleFollow = async (e, id) => {
2021-01-22 00:53:33 +03:00
if (this.props.external) {
2021-05-06 03:08:14 +03:00
this._handleLoginModal();
return;
2021-01-22 00:53:33 +03:00
}
this._handleHide();
e.stopPropagation();
await Actions.createSubscription({
userId: id,
});
2021-01-15 00:34:41 +03:00
};
2021-05-06 03:08:14 +03:00
_handleLoginModal = (e) => {
if (e) {
e.preventDefault();
e.stopPropagation();
2021-01-27 06:11:44 +03:00
}
2021-05-06 03:08:14 +03:00
Events.dispatchCustomEvent({ name: "slate-global-open-cta", detail: {} });
2021-01-27 06:11:44 +03:00
};
2021-02-09 20:55:38 +03:00
checkStatus = ({ id }) => {
const { activeUsers } = this.props;
return activeUsers && activeUsers.includes(id);
2021-02-04 12:21:59 +03:00
};
render() {
2021-05-06 03:08:14 +03:00
let tab = this.props.page.params?.tab;
2021-08-03 20:10:02 +03:00
let { user, isOwner } = this.props;
let { fileCount } = user;
2020-11-01 21:40:03 +03:00
const showStatusIndicator = this.props.isAuthenticated;
return (
2020-11-01 21:40:03 +03:00
<div>
2021-01-06 02:09:59 +03:00
<div css={STYLES_PROFILE_BACKGROUND}>
<div css={STYLES_PROFILE_INFO}>
<div css={STYLES_PROFILE_IMAGE}>
<ProfilePhoto user={user} size={{ base: 64, mobile: 120 }} />
{showStatusIndicator && this.checkStatus({ id: user.id }) && (
<div css={STYLES_STATUS_INDICATOR} />
)}
2021-02-04 22:16:24 +03:00
</div>
2021-01-06 02:09:59 +03:00
<div css={STYLES_INFO}>
<div css={STYLES_NAME}>{Strings.getPresentationName(user)}</div>
2021-01-22 00:53:33 +03:00
{!isOwner && (
<div css={STYLES_BUTTON}>
{this.state.isFollowing ? (
<ButtonSecondary
onClick={(e) => {
this.setState({ isFollowing: false });
this._handleFollow(e, this.props.user.id);
}}
>
Unfollow
</ButtonSecondary>
) : (
<ButtonPrimary
onClick={(e) => {
this.setState({ isFollowing: true });
this._handleFollow(e, this.props.user.id);
}}
>
Follow
</ButtonPrimary>
)}
</div>
)}
{user.data.body ? (
2021-01-06 02:09:59 +03:00
<div css={STYLES_DESCRIPTION}>
<ProcessedText text={user.data.body} />
2020-11-01 21:40:03 +03:00
</div>
2021-01-06 02:09:59 +03:00
) : null}
<div css={STYLES_STATS}>
<div css={STYLES_STAT}>
<div style={{ fontFamily: `${Constants.font.text}` }}>
2021-08-03 20:10:02 +03:00
{fileCount}{" "}
2021-07-07 22:58:14 +03:00
<span style={{ color: `${Constants.system.grayLight2}` }}>Files</span>
2021-01-06 02:09:59 +03:00
</div>
</div>
<div css={STYLES_STAT}>
<div style={{ fontFamily: `${Constants.font.text}` }}>
{user.slates?.length || 0}{" "}
2021-07-07 22:58:14 +03:00
<span style={{ color: `${Constants.system.grayLight2}` }}>Collections</span>
2021-01-06 02:09:59 +03:00
</div>
2020-11-01 21:40:03 +03:00
</div>
</div>
2020-09-03 00:08:32 +03:00
</div>
2020-11-01 21:40:03 +03:00
</div>
2020-12-13 04:16:55 +03:00
</div>
2021-01-15 00:34:41 +03:00
<div css={STYLES_PROFILE}>
2021-08-03 20:10:02 +03:00
<CollectionsPage
{...this.props}
tab={tab}
fetched={this.state.fetched}
subscriptions={this.state.subscriptions}
2021-01-12 23:30:12 +03:00
/>
</div>
</div>
);
}
}