slate/scenes/SceneSlates.js

118 lines
3.4 KiB
JavaScript
Raw Normal View History

import * as React from "react";
2020-08-12 11:34:17 +03:00
import * as Constants from "~/common/constants";
import * as System from "~/components/system";
import * as SVG from "~/common/svg";
import { css } from "@emotion/react";
2020-09-03 02:17:31 +03:00
import { TabGroup } from "~/components/core/TabGroup";
import ScenePage from "~/components/core/ScenePage";
2020-08-22 07:25:34 +03:00
import ScenePageHeader from "~/components/core/ScenePageHeader";
2020-09-06 00:36:20 +03:00
import SceneContent from "~/components/core/SceneContent";
2020-07-27 11:33:39 +03:00
import Section from "~/components/core/Section";
import SlatePreviewBlock from "~/components/core/SlatePreviewBlock";
2020-09-01 07:44:56 +03:00
import CircleButtonGray from "~/components/core/CircleButtonGray";
2020-09-02 03:15:56 +03:00
import EmptyState from "~/components/core/EmptyState";
// TODO(jim): Slates design.
export default class SceneSlates extends React.Component {
2020-09-01 07:44:56 +03:00
state = {
2020-09-03 02:17:31 +03:00
tab: 0,
2020-09-01 07:44:56 +03:00
};
_handleAdd = () => {
2020-09-04 01:42:08 +03:00
this.props.onAction({
2020-09-01 07:44:56 +03:00
name: "Create slate",
type: "SIDEBAR",
value: "SIDEBAR_CREATE_SLATE",
});
2020-09-04 01:42:08 +03:00
this.props.onRehydrate();
2020-09-01 07:44:56 +03:00
};
render() {
2020-09-03 02:24:10 +03:00
let subscriptions = this.props.viewer.subscriptions
.filter((each) => {
return !!each.target_slate_id;
})
.map((relation) => (
<div
key={relation.slate.id}
onClick={() =>
this.props.onAction({
type: "NAVIGATE",
value: "V1_NAVIGATION_SLATE",
data: relation.slate,
})
}
>
<SlatePreviewBlock username={null} slate={relation.slate} />
2020-09-03 02:24:10 +03:00
</div>
));
2020-07-27 11:33:39 +03:00
return (
<ScenePage>
2020-09-01 07:44:56 +03:00
<ScenePageHeader
title="Slates"
actions={
2020-09-03 02:17:31 +03:00
this.state.tab === 0 ? (
2020-09-01 07:44:56 +03:00
<CircleButtonGray
onMouseUp={this._handleAdd}
onTouchEnd={this._handleAdd}
style={{ marginLeft: 12 }}
>
<SVG.Plus height="16px" />
</CircleButtonGray>
) : null
}
/>
2020-09-03 02:17:31 +03:00
<TabGroup
tabs={["My Slates", "Following"]}
value={this.state.tab}
onChange={(value) => this.setState({ tab: value })}
/>
2020-09-03 09:00:02 +03:00
2020-09-06 00:36:20 +03:00
<SceneContent>
{this.state.tab === 0 ? (
this.props.viewer.slates && this.props.viewer.slates.length ? (
this.props.viewer.slates.map((slate) => (
<div
key={slate.id}
onClick={() =>
this.props.onAction({
type: "NAVIGATE",
value: slate.id,
data: slate,
})
}
>
<SlatePreviewBlock
slate={slate}
username={this.props.viewer.username}
editing
/>
</div>
))
) : (
<EmptyState style={{ marginTop: 88 }}>
You have no slates yet! Create a new slate by clicking the plus
button
</EmptyState>
)
) : null}
2020-09-03 09:00:02 +03:00
2020-09-06 00:36:20 +03:00
{this.state.tab === 1 ? (
subscriptions.length ? (
subscriptions
) : (
<EmptyState style={{ marginTop: 88 }}>
You aren't following any slates yet! Get started by following
any slates you encounter that you want to be updated on
</EmptyState>
)
) : null}
</SceneContent>
2020-07-27 11:33:39 +03:00
</ScenePage>
);
}
}