import * as React from "react"; import * as Actions from "~/common/actions"; import * as Constants from "~/common/constants"; import * as SVG from "~/common/svg"; import { css } from "@emotion/react"; import { SecondaryTabGroup } from "~/components/core/TabGroup"; import { Boundary } from "~/components/system/components/fragments/Boundary"; import { PopoverNavigation } from "~/components/system/components/PopoverNavigation"; import { ButtonPrimary, ButtonSecondary } from "~/components/system/components/Buttons"; 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 ${Constants.system.lightBorder}; */} border-radius: 4px; margin-bottom: 8px; background-color: ${Constants.system.white}; `; const STYLES_USER = css` display: grid; grid-template-columns: auto 1fr; align-items: center; margin: 16px; color: ${Constants.system.brand}; font-family: ${Constants.font.medium}; font-size: ${Constants.typescale.lvl1}; @media (max-width: ${Constants.sizes.mobile}px) { margin: 12px 16px; } `; const STYLES_BUTTONS = css` justify-self: end; display: flex; flex-direction: row; margin-right: 16px; justify-content: flex-end; @media (max-width: ${Constants.sizes.mobile}px) { margin-right: 8px; } `; const STYLES_ITEM_BOX = css` position: relative; justify-self: end; display: flex; align-items: center; justify-content: center; padding: 8px; margin-right: 16px; color: ${Constants.system.darkGray}; @media (max-width: ${Constants.sizes.mobile}px) { margin-right: 8px; } `; const STYLES_ACTION_BUTTON = css` cursor: pointer; padding: 8px; color: ${Constants.system.brand}; font-family: ${Constants.font.medium}; `; const STYLES_PROFILE_IMAGE = css` background-color: ${Constants.system.foreground}; background-size: cover; background-position: 50% 50%; height: 24px; width: 24px; margin-right: 16px; border-radius: 4px; `; const STYLES_MESSAGE = css` color: ${Constants.system.black}; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; @media (max-width: 1000px) { display: none; } `; const STYLES_NAME = css` overflow: hidden; white-space: nowrap; text-overflow: ellipsis; `; function UserEntry({ user, button, onClick, message }) { return (
{user.data.name || `@${user.username}`} {message ? {message} : null}
{button}
); } const STYLES_COPY_INPUT = css` pointer-events: none; position: absolute; opacity: 0; `; 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 { _ref; state = { copyValue: "", contextMenu: null, }; _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(); if (this.state.contextMenu === value) { this._handleHide(); } else { this.setState({ contextMenu: value }); } }; _handleFollow = async (e, id) => { this._handleHide(); e.stopPropagation(); await Actions.createSubscription({ userId: id, }); }; render() { let following = this.props.viewer.subscriptions .filter((relation) => { return !!relation.target_user_id; }) .map((relation) => { let button = (
this._handleClick(e, relation.id)}> {this.state.contextMenu === relation.id ? ( this._handleClick(e, relation.id)} > this._handleFollow(e, relation.user.id), }, ]} /> ) : null}
); return ( { this.props.onAction({ type: "NAVIGATE", value: this.props.sceneId, scene: "PROFILE", data: relation.user, }); }} /> ); }); let followers = this.props.viewer.subscribers.map((relation) => { let button = (
this._handleClick(e, relation.id)}> {this.state.contextMenu === relation.id ? ( this._handleClick(e, relation.id)} > { return subscription.target_user_id === relation.owner.id; }).length ? "Unfollow" : "Follow", onClick: (e) => this._handleFollow(e, relation.owner.id), }, ]} /> ) : null}
); return ( { this.props.onAction({ type: "NAVIGATE", value: this.props.sceneId, scene: "PROFILE", data: relation.owner, }); }} /> ); }); return ( {this.props.tab === 0 ? ( following && following.length ? ( following ) : ( You can follow any user on the network to be updated on their new uploads and slates. ) ) : null} {this.props.tab === 1 ? ( followers && followers.length ? ( followers ) : ( You don't have any followers yet. ) ) : null} { this._ref = c; }} value={this.state.copyValue} tabIndex="-1" css={STYLES_COPY_INPUT} /> ); } }