gcg-website/static/admin/previews/page-previews/cantorpreis-preview.js

49 lines
988 B
JavaScript
Raw Normal View History

import {
2023-05-29 16:22:34 +02:00
PageHeader,
Section,
Container,
Row,
ContentJustify,
} from "./components/index.js";
const CantorpreisPreview = ({ widgetFor, entry, fields, collection }) => {
2023-05-29 16:22:34 +02:00
const imageField = useMemo(
() => fields.find((field) => field.name === "image"),
[fields]
);
2023-05-29 16:22:34 +02:00
const imageUrl = useMediaAsset(
entry.data.image,
collection,
imageField,
entry
);
2023-05-29 16:22:34 +02:00
return [
PageHeader(entry),
Section(
Container(
Row([
h(
"div",
{ className: "col-md-5 mb-4" },
2023-05-29 16:22:34 +02:00
h("img", {
className: "img-fluid w-100",
2023-05-29 16:22:34 +02:00
src: imageUrl,
})
),
h(
"div",
{ className: "col-md-7" },
2023-05-29 16:22:34 +02:00
h("h3", {}, entry.data.name),
2023-06-09 20:35:28 +02:00
h("h6", { className: "text-body-secondary" }, entry.data.title),
ContentJustify(widgetFor("body"))
2023-05-29 16:22:34 +02:00
),
])
)
),
];
};
export default CantorpreisPreview;