slate/scenes/SceneDirectory.js

353 lines
9.3 KiB
JavaScript
Raw Normal View History

import * as React from "react";
import * as Actions from "~/common/actions";
import * as Constants from "~/common/constants";
import * as SVG from "~/common/svg";
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";
2020-09-06 02:41:12 +03:00
import { Boundary } from "~/components/system/components/fragments/Boundary";
import { PopoverNavigation } from "~/components/system/components/PopoverNavigation";
2021-05-06 03:08:14 +03:00
import { Link } from "~/components/core/Link";
import ScenePage from "~/components/core/ScenePage";
import ScenePageHeader from "~/components/core/ScenePageHeader";
import EmptyState from "~/components/core/EmptyState";
import WebsitePrototypeWrapper from "~/components/core/WebsitePrototypeWrapper";
const STYLES_USER_ENTRY = css`
display: grid;
2020-09-06 00:36:20 +03:00
grid-template-columns: auto 1fr;
align-items: center;
font-size: ${Constants.typescale.lvl1};
cursor: pointer;
2020-12-11 05:59:17 +03:00
${"" /* border: 1px solid ${Constants.system.lightBorder}; */}
2020-09-05 22:08:09 +03:00
border-radius: 4px;
margin-bottom: 8px;
2020-12-11 05:59:17 +03:00
background-color: ${Constants.system.white};
`;
const STYLES_USER = css`
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
2020-12-11 06:12:03 +03:00
margin: 16px;
2020-09-05 22:08:09 +03:00
color: ${Constants.system.brand};
font-family: ${Constants.font.medium};
font-size: ${Constants.typescale.lvl1};
2020-10-01 03:41:53 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
margin: 12px 16px;
}
`;
2020-09-06 00:36:20 +03:00
const STYLES_BUTTONS = css`
justify-self: end;
2020-09-06 00:36:20 +03:00
display: flex;
flex-direction: row;
2020-12-11 06:12:03 +03:00
margin-right: 16px;
2020-10-01 03:41:53 +03:00
justify-content: flex-end;
@media (max-width: ${Constants.sizes.mobile}px) {
margin-right: 8px;
}
2020-09-06 00:36:20 +03:00
`;
2020-09-06 02:41:12 +03:00
const STYLES_ITEM_BOX = css`
position: relative;
justify-self: end;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
2020-12-11 06:12:03 +03:00
margin-right: 16px;
2020-09-06 02:41:12 +03:00
color: ${Constants.system.darkGray};
2020-10-01 03:41:53 +03:00
@media (max-width: ${Constants.sizes.mobile}px) {
margin-right: 8px;
}
2020-09-06 02:41:12 +03:00
`;
2020-09-06 00:36:20 +03:00
const STYLES_ACTION_BUTTON = css`
cursor: pointer;
padding: 8px;
color: ${Constants.system.brand};
font-family: ${Constants.font.medium};
`;
const STYLES_PROFILE_IMAGE = css`
2020-09-10 06:28:48 +03:00
background-color: ${Constants.system.foreground};
background-size: cover;
background-position: 50% 50%;
height: 24px;
width: 24px;
2020-09-05 22:08:09 +03:00
margin-right: 16px;
border-radius: 4px;
position: relative;
`;
const STYLES_STATUS_INDICATOR = css`
position: absolute;
bottom: 0;
right: 0;
width: 7px;
height: 7px;
border-radius: 50%;
border: 2px solid ${Constants.system.active};
background-color: ${Constants.system.active};
`;
2020-09-06 02:41:12 +03:00
const STYLES_MESSAGE = css`
color: ${Constants.system.black};
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
@media (max-width: 1000px) {
display: none;
}
`;
2020-09-07 01:30:33 +03:00
const STYLES_NAME = css`
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
`;
2021-02-09 20:42:27 +03:00
function UserEntry({ user, button, onClick, message, checkStatus }) {
2021-02-09 20:55:38 +03:00
const isOnline = checkStatus({ id: user.id });
return (
<div key={user.username} css={STYLES_USER_ENTRY}>
<div css={STYLES_USER} onClick={onClick}>
<div css={STYLES_PROFILE_IMAGE} style={{ backgroundImage: `url(${user.data.photo})` }}>
{isOnline ? <div css={STYLES_STATUS_INDICATOR} /> : null}
</div>
2020-09-07 01:30:33 +03:00
<span css={STYLES_NAME}>
2020-09-05 22:08:09 +03:00
{user.data.name || `@${user.username}`}
2020-09-06 02:41:12 +03:00
{message ? <span css={STYLES_MESSAGE}>{message}</span> : null}
2020-09-05 22:08:09 +03:00
</span>
</div>
{button}
</div>
);
}
2020-09-06 02:41:12 +03:00
const STYLES_COPY_INPUT = css`
pointer-events: none;
position: absolute;
opacity: 0;
`;
2020-10-01 03:41:53 +03:00
const STYLES_MOBILE_HIDDEN = css`
@media (max-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
const STYLES_MOBILE_ONLY = css`
@media (min-width: ${Constants.sizes.mobile}px) {
display: none;
}
`;
export default class SceneDirectory extends React.Component {
2020-09-06 02:41:12 +03:00
_ref;
state = {
2020-09-06 02:41:12 +03:00
copyValue: "",
contextMenu: null,
};
2020-09-06 02:41:12 +03:00
_handleCopy = (e, value) => {
e.stopPropagation();
this.setState({ copyValue: value }, () => {
this._ref.select();
document.execCommand("copy");
this._handleHide();
});
};
_handleHide = (e) => {
this.setState({ contextMenu: null });
};
_handleClick = (e, value) => {
e.stopPropagation();
2021-05-25 01:19:48 +03:00
e.preventDefault();
2020-09-06 02:41:12 +03:00
if (this.state.contextMenu === value) {
this._handleHide();
} else {
this.setState({ contextMenu: value });
}
};
_handleFollow = async (e, id) => {
e.stopPropagation();
2021-05-25 01:19:48 +03:00
e.preventDefault();
this._handleHide();
2020-10-31 02:12:20 +03:00
await Actions.createSubscription({
userId: id,
});
};
2021-02-09 20:55:38 +03:00
checkStatus = ({ id }) => {
const { activeUsers } = this.props;
2021-02-09 20:55:38 +03:00
return activeUsers && activeUsers.includes(id);
};
render() {
let following = this.props.viewer.following.map((relation) => {
let button = (
<div css={STYLES_ITEM_BOX} onClick={(e) => this._handleClick(e, relation.id)}>
<SVG.MoreHorizontal height="24px" />
{this.state.contextMenu === relation.id ? (
<Boundary
captureResize={true}
captureScroll={false}
enabled
onOutsideRectEvent={(e) => this._handleClick(e, relation.id)}
>
<PopoverNavigation
style={{
top: "40px",
right: "0px",
}}
navigation={[
2021-05-06 03:08:14 +03:00
[
{
text: "Unfollow",
onClick: (e) => this._handleFollow(e, relation.id),
},
],
]}
/>
</Boundary>
) : null}
</div>
);
return (
2021-05-25 01:19:48 +03:00
<Link key={relation.id} href={`/$/user/${relation.id}`} onAction={this.props.onAction}>
2021-05-06 03:08:14 +03:00
<UserEntry
key={relation.id}
user={relation}
button={button}
checkStatus={this.checkStatus}
// onClick={() => {
// this.props.onAction({
// type: "NAVIGATE",
// value: "NAV_PROFILE",
// shallow: true,
// data: relation,
// });
// }}
/>
</Link>
);
});
2020-09-07 01:30:33 +03:00
let followers = this.props.viewer.followers.map((relation) => {
2020-09-07 01:30:33 +03:00
let button = (
2020-10-26 00:11:27 +03:00
<div css={STYLES_ITEM_BOX} onClick={(e) => this._handleClick(e, relation.id)}>
2020-09-07 01:30:33 +03:00
<SVG.MoreHorizontal height="24px" />
{this.state.contextMenu === relation.id ? (
<Boundary
captureResize={true}
captureScroll={false}
enabled
onOutsideRectEvent={(e) => this._handleClick(e, relation.id)}
>
<PopoverNavigation
style={{
top: "40px",
right: "0px",
}}
navigation={[
2021-05-06 03:08:14 +03:00
[
{
text: this.props.viewer.following.some((user) => {
return user.id === relation.id;
})
? "Unfollow"
: "Follow",
onClick: (e) => this._handleFollow(e, relation.id),
},
],
2020-09-07 01:30:33 +03:00
]}
/>
</Boundary>
) : null}
</div>
);
return (
2021-05-25 01:19:48 +03:00
<Link key={relation.id} href={`/$/user/${relation.id}`} onAction={this.props.onAction}>
2021-05-06 03:08:14 +03:00
<UserEntry
key={relation.id}
user={relation}
button={button}
checkStatus={this.checkStatus}
// onClick={() => {
// this.props.onAction({
// type: "NAVIGATE",
// value: "NAV_PROFILE",
// shallow: true,
// data: relation,
// });
// }}
/>
</Link>
2020-09-07 01:30:33 +03:00
);
});
2021-05-06 03:08:14 +03:00
let tab = this.props.page.params?.tab || "following";
return (
<WebsitePrototypeWrapper
title={`${this.props.page.pageTitle} • Slate`}
url={`${Constants.hostname}${this.props.page.pathname}`}
>
<ScenePage>
<ScenePageHeader title="Directory" />
<SecondaryTabGroup
tabs={[
{ title: "Following", value: { tab: "following" } },
{ title: "Followers", value: { tab: "followers" } },
]}
value={tab}
onAction={this.props.onAction}
/>
{tab === "following" ? (
following && following.length ? (
following
) : (
<EmptyState>
<SVG.Users height="24px" style={{ marginBottom: 24 }} />
You can follow any user on the network to be updated on their new uploads and
collections.
</EmptyState>
)
) : null}
{tab === "followers" ? (
followers && followers.length ? (
followers
) : (
<EmptyState>
<SVG.Users height="24px" style={{ marginBottom: 24 }} />
You don't have any followers yet.
</EmptyState>
)
) : null}
<input
readOnly
ref={(c) => {
this._ref = c;
}}
value={this.state.copyValue}
tabIndex="-1"
css={STYLES_COPY_INPUT}
/>
</ScenePage>
</WebsitePrototypeWrapper>
);
}
}