2020-07-27 06:20:34 +03:00
|
|
|
import * as React from "react";
|
|
|
|
import * as System from "~/components/system";
|
2020-08-03 02:29:11 +03:00
|
|
|
import * as Actions from "~/common/actions";
|
2020-08-07 09:33:44 +03:00
|
|
|
import * as Constants from "~/common/constants";
|
2020-08-09 11:08:46 +03:00
|
|
|
import * as SVG from "~/components/system/svg";
|
2020-07-27 06:20:34 +03:00
|
|
|
|
|
|
|
import { css } from "@emotion/react";
|
|
|
|
|
|
|
|
import ScenePage from "~/components/core/ScenePage";
|
2020-08-22 07:25:34 +03:00
|
|
|
import ScenePageHeader from "~/components/core/ScenePageHeader";
|
2020-08-09 11:08:46 +03:00
|
|
|
import Slate from "~/components/core/Slate";
|
2020-08-20 23:33:08 +03:00
|
|
|
import SlateMediaObject from "~/components/core/SlateMediaObject";
|
2020-08-09 11:08:46 +03:00
|
|
|
import CircleButtonLight from "~/components/core/CircleButtonLight";
|
2020-08-07 09:33:44 +03:00
|
|
|
|
2020-08-22 12:32:40 +03:00
|
|
|
const moveIndex = (set, fromIndex, toIndex) => {
|
|
|
|
const element = set[fromIndex];
|
|
|
|
set.splice(fromIndex, 1);
|
|
|
|
set.splice(toIndex, 0, element);
|
|
|
|
|
|
|
|
return set;
|
|
|
|
};
|
|
|
|
|
2020-07-27 06:20:34 +03:00
|
|
|
export default class SceneSlate extends React.Component {
|
2020-08-03 02:29:11 +03:00
|
|
|
state = {
|
|
|
|
slatename: this.props.current.slatename,
|
|
|
|
public: this.props.current.data.public,
|
2020-08-07 05:34:33 +03:00
|
|
|
objects: this.props.current.data.objects,
|
2020-08-22 08:19:11 +03:00
|
|
|
body: this.props.current.data.body,
|
2020-08-03 02:29:11 +03:00
|
|
|
loading: false,
|
|
|
|
};
|
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
componentDidMount() {
|
|
|
|
this._handleUpdateCarousel(this.state);
|
|
|
|
}
|
|
|
|
|
2020-08-03 02:29:11 +03:00
|
|
|
componentDidUpdate(prevProps) {
|
2020-08-22 07:25:34 +03:00
|
|
|
const isNewSlateScene =
|
|
|
|
prevProps.current.slatename !== this.props.current.slatename;
|
2020-08-22 08:19:11 +03:00
|
|
|
|
|
|
|
let isUpdated = false;
|
|
|
|
if (
|
2020-08-22 07:25:34 +03:00
|
|
|
this.props.current.data.objects.length !==
|
2020-08-22 08:19:11 +03:00
|
|
|
prevProps.current.data.objects.length
|
|
|
|
) {
|
|
|
|
isUpdated = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.props.current.data.body !== prevProps.current.data.body) {
|
|
|
|
isUpdated = true;
|
|
|
|
}
|
2020-08-09 11:08:46 +03:00
|
|
|
|
|
|
|
if (isNewSlateScene || isUpdated) {
|
2020-08-03 02:29:11 +03:00
|
|
|
this.setState({
|
|
|
|
slatename: this.props.current.slatename,
|
|
|
|
public: this.props.current.data.public,
|
2020-08-07 05:34:33 +03:00
|
|
|
objects: this.props.current.data.objects,
|
2020-08-22 08:19:11 +03:00
|
|
|
body: this.props.current.data.body,
|
2020-08-03 02:29:11 +03:00
|
|
|
loading: false,
|
|
|
|
});
|
2020-08-20 23:33:08 +03:00
|
|
|
|
|
|
|
this._handleUpdateCarousel({
|
|
|
|
objects: this.props.current.data.objects,
|
|
|
|
});
|
2020-08-03 02:29:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-22 12:32:40 +03:00
|
|
|
_handleMoveIndex = async (from, to) => {
|
|
|
|
const objects = moveIndex(this.state.objects, from.index, to.index);
|
|
|
|
this.setState({ objects });
|
|
|
|
await this._handleSave(null, objects);
|
|
|
|
};
|
|
|
|
|
2020-08-21 10:07:39 +03:00
|
|
|
_handleSave = async (e, objects) => {
|
2020-08-03 02:29:11 +03:00
|
|
|
this.setState({ loading: true });
|
|
|
|
|
|
|
|
const response = await Actions.updateSlate({
|
|
|
|
id: this.props.current.slateId,
|
|
|
|
slatename: this.state.slatename,
|
|
|
|
data: {
|
2020-08-21 10:07:39 +03:00
|
|
|
objects: objects ? objects : this.state.objects,
|
2020-08-03 02:29:11 +03:00
|
|
|
public: this.state.public,
|
2020-08-22 08:19:11 +03:00
|
|
|
body: this.state.body,
|
2020-08-03 02:29:11 +03:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!response) {
|
2020-08-09 11:08:46 +03:00
|
|
|
this.setState({ loading: false });
|
2020-08-03 02:29:11 +03:00
|
|
|
alert("TODO: Server Error");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (response.error) {
|
2020-08-09 11:08:46 +03:00
|
|
|
this.setState({ loading: false });
|
2020-08-03 02:29:11 +03:00
|
|
|
alert(`TODO: ${response.decorator}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.props.onRehydrate();
|
2020-08-09 11:08:46 +03:00
|
|
|
|
|
|
|
this._handleUpdateCarousel(this.state);
|
2020-08-03 02:29:11 +03:00
|
|
|
};
|
|
|
|
|
2020-08-21 10:07:39 +03:00
|
|
|
_handleObjectSave = async (object) => {
|
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "state-global-carousel-loading",
|
|
|
|
detail: { saving: true },
|
|
|
|
});
|
|
|
|
|
|
|
|
const objects = [...this.state.objects];
|
|
|
|
for (let i = 0; i < objects.length; i++) {
|
|
|
|
if (objects[i].id === object.id) {
|
|
|
|
objects[i] = object;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setState({ objects });
|
|
|
|
|
|
|
|
await this._handleSave(null, objects);
|
|
|
|
|
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "state-global-carousel-loading",
|
|
|
|
detail: { saving: false },
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
_handleUpdateCarousel = (state) => {
|
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "slate-global-create-carousel",
|
|
|
|
detail: {
|
|
|
|
slides: state.objects.map((each) => {
|
2020-08-21 10:07:39 +03:00
|
|
|
const cid = each.url.replace("https://hub.textile.io/ipfs/", "");
|
|
|
|
|
2020-08-09 11:38:16 +03:00
|
|
|
return {
|
|
|
|
onDelete: this._handleDelete,
|
2020-08-21 10:07:39 +03:00
|
|
|
onObjectSave: this._handleObjectSave,
|
2020-08-09 11:38:16 +03:00
|
|
|
id: each.id,
|
2020-08-21 10:07:39 +03:00
|
|
|
cid,
|
|
|
|
data: each,
|
2020-08-22 07:25:34 +03:00
|
|
|
component: (
|
|
|
|
<SlateMediaObject key={each.id} useImageFallback data={each} />
|
|
|
|
),
|
2020-08-09 11:38:16 +03:00
|
|
|
};
|
2020-08-09 11:08:46 +03:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
2020-08-07 05:17:49 +03:00
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
_handleDelete = async (id) => {
|
2020-08-09 11:38:16 +03:00
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "state-global-carousel-loading",
|
|
|
|
detail: { loading: true },
|
|
|
|
});
|
2020-08-07 05:17:49 +03:00
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
const response = await Actions.updateSlate({
|
2020-08-07 05:17:49 +03:00
|
|
|
id: this.props.current.slateId,
|
2020-08-09 11:08:46 +03:00
|
|
|
slatename: this.state.slatename,
|
|
|
|
data: {
|
|
|
|
objects: this.state.objects.filter((o) => o.id !== id),
|
|
|
|
public: this.state.public,
|
|
|
|
},
|
2020-08-07 05:17:49 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!response) {
|
2020-08-09 11:38:16 +03:00
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "state-global-carousel-loading",
|
|
|
|
detail: { loading: false },
|
|
|
|
});
|
2020-08-07 05:17:49 +03:00
|
|
|
alert("TODO: Server Error");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (response.error) {
|
2020-08-09 11:38:16 +03:00
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "state-global-carousel-loading",
|
|
|
|
detail: { loading: false },
|
|
|
|
});
|
2020-08-07 05:17:49 +03:00
|
|
|
alert(`TODO: ${response.decorator}`);
|
|
|
|
}
|
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
await this.props.onRehydrate();
|
2020-08-07 05:17:49 +03:00
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
this._handleUpdateCarousel(this.state);
|
2020-08-03 02:29:11 +03:00
|
|
|
|
2020-08-09 11:38:16 +03:00
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "state-global-carousel-loading",
|
|
|
|
detail: { loading: false },
|
|
|
|
});
|
2020-08-03 02:29:11 +03:00
|
|
|
};
|
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
_handleSelect = (index) =>
|
|
|
|
System.dispatchCustomEvent({
|
|
|
|
name: "slate-global-open-carousel",
|
|
|
|
detail: { index },
|
|
|
|
});
|
2020-07-27 11:33:39 +03:00
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
_handleAdd = () => {
|
|
|
|
return this.props.onAction({
|
|
|
|
type: "SIDEBAR",
|
|
|
|
value: "SIDEBAR_ADD_FILE_TO_BUCKET",
|
|
|
|
data: this.props.current,
|
|
|
|
});
|
|
|
|
};
|
2020-07-27 11:33:39 +03:00
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
_handleShowSettings = () => {
|
|
|
|
return this.props.onAction({
|
|
|
|
type: "SIDEBAR",
|
|
|
|
value: "SIDEBAR_SINGLE_SLATE_SETTINGS",
|
|
|
|
data: this.props.current,
|
|
|
|
});
|
|
|
|
};
|
2020-07-27 11:33:39 +03:00
|
|
|
|
2020-08-09 11:08:46 +03:00
|
|
|
render() {
|
2020-08-22 08:19:11 +03:00
|
|
|
const { slatename, objects, body = "A slate." } = this.state;
|
2020-08-03 02:29:11 +03:00
|
|
|
|
2020-07-27 11:33:39 +03:00
|
|
|
return (
|
2020-08-09 11:08:46 +03:00
|
|
|
<ScenePage style={{ padding: `88px 24px 128px 24px` }}>
|
2020-08-22 07:25:34 +03:00
|
|
|
<ScenePageHeader
|
|
|
|
style={{ padding: `0 24px 0 24px` }}
|
|
|
|
title={slatename}
|
|
|
|
actions={
|
|
|
|
<React.Fragment>
|
|
|
|
<CircleButtonLight
|
|
|
|
onClick={this._handleAdd}
|
|
|
|
style={{ marginLeft: 12, marginRight: 12 }}
|
|
|
|
>
|
|
|
|
<SVG.Plus height="16px" />
|
|
|
|
</CircleButtonLight>
|
|
|
|
<CircleButtonLight onClick={this._handleShowSettings}>
|
|
|
|
<SVG.Settings height="16px" />
|
|
|
|
</CircleButtonLight>
|
|
|
|
</React.Fragment>
|
|
|
|
}
|
|
|
|
>
|
2020-08-22 08:19:11 +03:00
|
|
|
{body}
|
2020-08-22 07:25:34 +03:00
|
|
|
</ScenePageHeader>
|
2020-08-22 12:32:40 +03:00
|
|
|
<Slate
|
|
|
|
editing
|
|
|
|
items={objects}
|
|
|
|
onMoveIndex={this._handleMoveIndex}
|
|
|
|
onSelect={this._handleSelect}
|
|
|
|
/>
|
2020-07-27 11:33:39 +03:00
|
|
|
</ScenePage>
|
|
|
|
);
|
2020-07-27 06:20:34 +03:00
|
|
|
}
|
|
|
|
}
|