1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/builder/src/components/userInterface/AppPreview/CurrentItemPreview.svelte

151 lines
3.6 KiB
Svelte
Raw Normal View History

2019-08-20 08:18:23 +12:00
<script>
import { store, backendUiStore } from "builderStore"
2020-02-12 05:36:16 +13:00
import { map, join } from "lodash/fp"
2020-05-07 21:53:34 +12:00
import iframeTemplate from "./iframeTemplate"
import { pipe } from "components/common/core"
2019-09-03 21:42:19 +12:00
2020-02-12 05:36:16 +13:00
let iframe
let styles = ""
2020-02-12 05:36:16 +13:00
function transform_component(comp) {
const props = comp.props || comp
if (props && props._children && props._children.length) {
props._children = props._children.map(transform_component)
}
2020-02-12 05:36:16 +13:00
return props
}
2020-05-26 02:23:56 +12:00
const getComponentTypeName = component => {
let [componentName] = component._component.match(/[a-z]*$/)
return componentName || "element"
}
2020-06-09 08:13:19 +12:00
const screenPlaceholder = {
name: "Screen Placeholder",
route: "*",
props: {
_component: "@budibase/standard-components/container",
type: "div",
_children: [
{
_component: "@budibase/standard-components/container",
_styles: { normal: {}, hover: {}, active: {}, selected: {} },
_id: "__screenslot__text",
_code: "",
className: "",
onLoad: [],
type: "div",
_children: [
{
_component: "@budibase/standard-components/text",
_styles: {
normal: {},
hover: {},
active: {},
selected: {},
},
_id: "__screenslot__text_2",
_code: "",
text: "content",
font: "",
color: "",
textAlign: "inline",
verticalAlign: "inline",
formattingTag: "none",
},
],
},
],
},
}
2020-02-12 05:36:16 +13:00
$: hasComponent = !!$store.currentPreviewItem
2020-06-09 08:13:19 +12:00
$: {
2020-05-13 01:44:30 +12:00
styles = ""
2020-05-07 21:53:34 +12:00
// Apply the CSS from the currently selected page and its screens
const currentPage = $store.pages[$store.currentPageName]
styles += currentPage._css
for (let screen of currentPage._screens) {
2020-05-07 21:53:34 +12:00
styles += screen._css
}
styles = styles
}
2019-08-20 08:18:23 +12:00
2020-05-26 21:19:04 +12:00
$: stylesheetLinks = pipe($store.pages.stylesheets, [
map(s => `<link rel="stylesheet" href="${s}"/>`),
join("\n"),
])
2020-02-11 05:58:20 +13:00
2020-05-07 21:53:34 +12:00
$: screensExist =
$store.currentPreviewItem._screens &&
$store.currentPreviewItem._screens.length > 0
2020-04-07 04:06:04 +12:00
2020-02-12 05:36:16 +13:00
$: frontendDefinition = {
2020-05-06 23:17:15 +12:00
appId: $store.appId,
libraries: $store.libraries,
2020-06-09 08:13:19 +12:00
page: $store.pages[$store.currentPageName],
screens: [
$store.currentFrontEndType === "page"
? screenPlaceholder
: $store.currentPreviewItem,
],
2020-05-07 21:53:34 +12:00
appRootPath: "",
2020-02-12 05:36:16 +13:00
}
2020-05-26 02:23:56 +12:00
$: selectedComponentType = getComponentTypeName($store.currentComponentInfo)
2020-05-07 21:53:34 +12:00
$: selectedComponentId = $store.currentComponentInfo
? $store.currentComponentInfo._id
: ""
2020-06-09 08:13:19 +12:00
const refreshContent = () => {
iframe.contentWindow.postMessage(JSON.stringify({
styles,
stylesheetLinks,
selectedComponentType,
selectedComponentId,
frontendDefinition,
}))
}
let iframeLoaded = false
$: if(iframe && !iframeLoaded) {
iframe.contentWindow.addEventListener("bb-ready", refreshContent)
iframeLoaded = true
}
$: if(iframe && frontendDefinition) {
refreshContent()
}
2020-02-12 05:36:16 +13:00
</script>
<div class="component-container">
{#if hasComponent && $store.currentPreviewItem}
<iframe
style="height: 100%; width: 100%"
title="componentPreview"
bind:this={iframe}
2020-06-09 08:13:19 +12:00
srcdoc={iframeTemplate} />
2020-02-12 05:36:16 +13:00
{/if}
2019-08-20 08:18:23 +12:00
</div>
<style>
2020-02-12 05:36:16 +13:00
.component-container {
grid-row-start: middle;
grid-column-start: middle;
position: relative;
overflow: hidden;
margin: auto;
height: 100%;
2020-02-12 05:36:16 +13:00
}
2020-02-12 05:36:16 +13:00
.component-container iframe {
border: 0;
left: 0;
top: 0;
width: 100%;
}
2020-02-19 04:53:22 +13:00
</style>