82 lines
2.3 KiB
JavaScript
82 lines
2.3 KiB
JavaScript
import { Button } from "antd";
|
|
import axios from "axios";
|
|
import gql from "graphql-tag";
|
|
|
|
import { JsonEditor as Editor } from "jsoneditor-react";
|
|
import "jsoneditor-react/es/editor.min.css";
|
|
import React, { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import client from "../../utils/GraphQLClient";
|
|
import { selectBodyshop } from "../../redux/user/user.selectors";
|
|
import { displayTemplateInWindowNoprint } from "../../utils/RenderTemplate";
|
|
|
|
const mapStateToProps = createStructuredSelector({
|
|
bodyshop: selectBodyshop,
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
//setUserLanguage: language => dispatch(setUserLanguage(language))
|
|
});
|
|
|
|
export function ShopTemplateTestRender({
|
|
bodyshop,
|
|
query,
|
|
emailEditorRef,
|
|
style,
|
|
}) {
|
|
const [variables, setVariables] = useState({ id: "uuid" });
|
|
const [loading, setLoading] = useState(false);
|
|
const { t } = useTranslation();
|
|
|
|
const handleTestRender = async () => {
|
|
try {
|
|
setLoading(true);
|
|
|
|
emailEditorRef.current.exportHtml(async (data) => {
|
|
try {
|
|
const inlineHtml = await axios.post("/render/inlinecss", {
|
|
html: data.html,
|
|
url: `${window.location.protocol}://${window.location.host}/`,
|
|
});
|
|
|
|
const { data: contextData } = await client.query({
|
|
query: gql(query),
|
|
variables: variables,
|
|
fetchPolicy: "network-only",
|
|
});
|
|
|
|
const renderResponse = await axios.post("/render", {
|
|
view: inlineHtml.data,
|
|
context: { ...contextData, bodyshop: bodyshop },
|
|
});
|
|
displayTemplateInWindowNoprint(renderResponse.data);
|
|
|
|
setLoading(false);
|
|
} catch (error) {
|
|
setLoading(false);
|
|
alert(error);
|
|
}
|
|
});
|
|
} catch (error) {
|
|
setLoading(false);
|
|
alert(error);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div style={{ ...style, margin: "1rem", display: "flex" }}>
|
|
<div style={{ flex: 1 }}>
|
|
<Editor value={variables} onChange={(e) => setVariables(e)} />
|
|
</div>
|
|
<Button loading={loading} type="ghost" onClick={handleTestRender}>
|
|
{t("bodyshop.actions.testrender")}
|
|
</Button>
|
|
</div>
|
|
);
|
|
}
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(ShopTemplateTestRender);
|