slate/scenes/SceneDirectory.js
2020-09-05 17:47:56 -07:00

280 lines
7.2 KiB
JavaScript

import * as React from "react";
import * as System from "~/components/system";
import * as Actions from "~/common/actions";
import * as Constants from "~/common/constants";
import * as SVG from "~/common/svg";
import { css } from "@emotion/react";
import { TabGroup } from "~/components/core/TabGroup";
import ScenePage from "~/components/core/ScenePage";
import ScenePageHeader from "~/components/core/ScenePageHeader";
import EmptyState from "~/components/core/EmptyState";
const STYLES_USER_ENTRY = css`
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
font-size: ${Constants.typescale.lvl1};
cursor: pointer;
border: 1px solid rgba(229, 229, 229, 0.75);
border-radius: 4px;
margin-bottom: 8px;
`;
const STYLES_USER = css`
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
margin: 24px;
color: ${Constants.system.brand};
font-family: ${Constants.font.medium};
font-size: ${Constants.typescale.lvl1};
`;
const STYLES_BUTTONS = css`
justify-self: end;
display: flex;
flex-direction: row;
margin-right: 48px;
`;
const STYLES_ACTION_BUTTON = css`
cursor: pointer;
padding: 8px;
color: ${Constants.system.brand};
font-family: ${Constants.font.medium};
`;
const STYLES_PROFILE_IMAGE = css`
background-size: cover;
background-position: 50% 50%;
height: 24px;
width: 24px;
margin-right: 16px;
border-radius: 4px;
`;
function UserEntry({ user, button, onClick, message }) {
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})` }}
/>
<span>
{user.data.name || `@${user.username}`}
{message ? (
<span style={{ color: Constants.system.black }}>{message}</span>
) : null}
</span>
</div>
{button}
</div>
);
}
export default class SceneDirectory extends React.Component {
state = {
loading: false,
tab: 0,
};
_handleDelete = async (id) => {
const response = await Actions.deleteTrustRelationship({
id: id,
});
await this.props.onRehydrate();
};
_handleAccept = async (id) => {
const response = await Actions.updateTrustRelationship({
userId: id,
});
await this.props.onRehydrate();
};
_handleFollow = async (id) => {
const response = await Actions.createSubscription({
userId: id,
});
await this.props.onRehydrate();
};
render() {
let requests = this.props.viewer.pendingTrusted
.filter((relation) => {
return !relation.data.verified;
})
.map((relation) => {
let button = (
<div css={STYLES_BUTTONS}>
<div
css={STYLES_ACTION_BUTTON}
onClick={() => this._handleAccept(relation.owner.id)}
>
Accept
</div>
<div
css={STYLES_ACTION_BUTTON}
style={{ color: Constants.system.darkGray, marginLeft: "16px" }}
onClick={() => {
this._handleDelete(relation.id);
}}
>
Decline
</div>
</div>
);
return (
<UserEntry
user={relation.owner}
button={button}
onClick={() => {
this.props.onAction({
type: "NAVIGATE",
value: this.props.sceneId,
scene: "PUBLIC_PROFILE",
data: relation.owner,
});
}}
message=" requested to trust you"
/>
);
});
let trusted = this.props.viewer.pendingTrusted
.filter((relation) => {
return relation.data.verified;
})
.map((relation) => {
let button = (
<div
css={STYLES_ACTION_BUTTON}
onClick={() => this._handleDelete(relation.id)}
>
Remove
</div>
);
console.log(relation.owner);
return (
<UserEntry
user={relation.owner}
button={button}
onClick={() => {
this.props.onAction({
type: "NAVIGATE",
value: this.props.sceneId,
scene: "PUBLIC_PROFILE",
data: relation.owner,
});
}}
/>
);
});
if (!trusted) {
trusted = [];
}
trusted.push(
...this.props.viewer.trusted
.filter((relation) => {
return relation.data.verified;
})
.map((relation) => {
let button = (
<div
css={STYLES_ACTION_BUTTON}
onClick={() => this._handleDelete(relation.id)}
>
Remove
</div>
);
return (
<UserEntry
user={relation.user}
button={button}
onClick={() => {
this.props.onAction({
type: "NAVIGATE",
value: this.props.sceneId,
scene: "PUBLIC_PROFILE",
data: relation.user,
});
}}
/>
);
})
);
let following = this.props.viewer.subscriptions
.filter((relation) => {
return !!relation.target_user_id;
})
.map((relation) => {
let button = (
<div
css={STYLES_ACTION_BUTTON}
onClick={() => this._handleFollow(relation.user.id)}
>
Unfollow
</div>
);
return (
<UserEntry
user={relation.user}
button={button}
onClick={() => {
this.props.onAction({
type: "NAVIGATE",
value: this.props.sceneId,
scene: "PUBLIC_PROFILE",
data: relation.user,
});
}}
/>
);
});
return (
<ScenePage>
<ScenePageHeader title="Directory" />
<TabGroup
tabs={["Requests", "Trusted", "Following"]}
value={this.state.tab}
onChange={(value) => this.setState({ tab: value })}
/>
{this.state.tab === 0 ? (
requests.length ? (
requests
) : (
<EmptyState style={{ marginTop: 88 }}>
No requests at the moment! Once someone sends you a trust request
it will appear here.
</EmptyState>
)
) : null}
{this.state.tab === 1 ? (
trusted.length ? (
trusted
) : (
<EmptyState style={{ marginTop: 88 }}>
You have no peers yet. Get started by searching for your friends
and sending them a peer request!
</EmptyState>
)
) : null}
{this.state.tab === 2 ? (
following.length ? (
following
) : (
<EmptyState style={{ marginTop: 88 }}>
You are not following anybody. Get started by searching for your
friends and clicking follow!
</EmptyState>
)
) : null}
</ScenePage>
);
}
}