@mindful-web/marko-web 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +3 -0
- package/LICENSE +21 -0
- package/browser/.eslintrc.js +1 -0
- package/browser/components/element-id.js +1 -0
- package/browser/components/gated-download/wufoo.vue +97 -0
- package/browser/components/image-slide.vue +54 -0
- package/browser/components/image-slider.vue +87 -0
- package/browser/components/index.js +15 -0
- package/browser/components/load-more-trigger.vue +129 -0
- package/browser/components/oembed.vue +133 -0
- package/browser/components/trigger-in-view-event.vue +41 -0
- package/browser/components/trigger-screen-change-event.vue +94 -0
- package/browser/event-bus.js +5 -0
- package/browser/index.js +83 -0
- package/browser/jquery-full.js +3 -0
- package/browser/jquery.js +3 -0
- package/browser/utils/clean-path.js +4 -0
- package/browser/vue.js +3 -0
- package/components/browser-component/script.marko +10 -0
- package/components/browser-component/script.marko.js +39 -0
- package/components/browser-component.marko +25 -0
- package/components/browser-component.marko.js +75 -0
- package/components/deferred-stylesheet.marko +6 -0
- package/components/deferred-stylesheet.marko.js +28 -0
- package/components/document/components/body-wrapper.marko +8 -0
- package/components/document/components/body-wrapper.marko.js +33 -0
- package/components/document/components/error.marko +26 -0
- package/components/document/components/error.marko.js +88 -0
- package/components/document/components/live-reload.marko +7 -0
- package/components/document/components/live-reload.marko.js +30 -0
- package/components/document/components/polyfill.marko +8 -0
- package/components/document/components/polyfill.marko.js +33 -0
- package/components/document/components/styles.marko +20 -0
- package/components/document/components/styles.marko.js +61 -0
- package/components/document/container.marko +15 -0
- package/components/document/container.marko.js +54 -0
- package/components/document/index.marko +63 -0
- package/components/document/index.marko.js +139 -0
- package/components/document/marko.json +46 -0
- package/components/element/array.marko +19 -0
- package/components/element/array.marko.js +67 -0
- package/components/element/audio.marko +5 -0
- package/components/element/audio.marko.js +33 -0
- package/components/element/block.marko +11 -0
- package/components/element/block.marko.js +44 -0
- package/components/element/clear.marko +4 -0
- package/components/element/clear.marko.js +32 -0
- package/components/element/components/image.marko +32 -0
- package/components/element/components/image.marko.js +62 -0
- package/components/element/components/text.marko +11 -0
- package/components/element/components/text.marko.js +37 -0
- package/components/element/content/address1.marko +14 -0
- package/components/element/content/address1.marko.js +40 -0
- package/components/element/content/address2.marko +14 -0
- package/components/element/content/address2.marko.js +40 -0
- package/components/element/content/audio.marko +13 -0
- package/components/element/content/audio.marko.js +39 -0
- package/components/element/content/authors.marko +12 -0
- package/components/element/content/authors.marko.js +43 -0
- package/components/element/content/body.marko +28 -0
- package/components/element/content/body.marko.js +66 -0
- package/components/element/content/byline.marko +15 -0
- package/components/element/content/byline.marko.js +41 -0
- package/components/element/content/city-state-zip.marko +14 -0
- package/components/element/content/city-state-zip.marko.js +40 -0
- package/components/element/content/contributors.marko +12 -0
- package/components/element/content/contributors.marko.js +43 -0
- package/components/element/content/country.marko +14 -0
- package/components/element/content/country.marko.js +40 -0
- package/components/element/content/embed-code.marko +15 -0
- package/components/element/content/embed-code.marko.js +41 -0
- package/components/element/content/end-date.marko +17 -0
- package/components/element/content/end-date.marko.js +43 -0
- package/components/element/content/ends.marko +14 -0
- package/components/element/content/ends.marko.js +40 -0
- package/components/element/content/fax.marko +14 -0
- package/components/element/content/fax.marko.js +40 -0
- package/components/element/content/images.marko +12 -0
- package/components/element/content/images.marko.js +43 -0
- package/components/element/content/marko.json +328 -0
- package/components/element/content/mobile.marko +14 -0
- package/components/element/content/mobile.marko.js +40 -0
- package/components/element/content/name.marko +15 -0
- package/components/element/content/name.marko.js +41 -0
- package/components/element/content/phone.marko +14 -0
- package/components/element/content/phone.marko.js +40 -0
- package/components/element/content/photographers.marko +12 -0
- package/components/element/content/photographers.marko.js +43 -0
- package/components/element/content/public-email.marko +19 -0
- package/components/element/content/public-email.marko.js +47 -0
- package/components/element/content/published.marko +17 -0
- package/components/element/content/published.marko.js +43 -0
- package/components/element/content/short-name.marko +15 -0
- package/components/element/content/short-name.marko.js +41 -0
- package/components/element/content/sidebar-stubs.marko +24 -0
- package/components/element/content/sidebar-stubs.marko.js +63 -0
- package/components/element/content/sidebars.marko +27 -0
- package/components/element/content/sidebars.marko.js +63 -0
- package/components/element/content/source.marko +14 -0
- package/components/element/content/source.marko.js +40 -0
- package/components/element/content/sponsors.marko +12 -0
- package/components/element/content/sponsors.marko.js +43 -0
- package/components/element/content/start-date.marko +17 -0
- package/components/element/content/start-date.marko.js +43 -0
- package/components/element/content/starts.marko +14 -0
- package/components/element/content/starts.marko.js +40 -0
- package/components/element/content/teaser.marko +15 -0
- package/components/element/content/teaser.marko.js +41 -0
- package/components/element/content/title.marko +14 -0
- package/components/element/content/title.marko.js +40 -0
- package/components/element/content/tollfree.marko +14 -0
- package/components/element/content/tollfree.marko.js +40 -0
- package/components/element/content/transcript.marko +22 -0
- package/components/element/content/transcript.marko.js +53 -0
- package/components/element/content/website.marko +22 -0
- package/components/element/content/website.marko.js +51 -0
- package/components/element/date.marko +2 -0
- package/components/element/date.marko.js +27 -0
- package/components/element/extract-render.js +1 -0
- package/components/element/image/caption.marko +15 -0
- package/components/element/image/caption.marko.js +41 -0
- package/components/element/image/credit.marko +15 -0
- package/components/element/image/credit.marko.js +41 -0
- package/components/element/image/display-name.marko +14 -0
- package/components/element/image/display-name.marko.js +40 -0
- package/components/element/image/marko.json +38 -0
- package/components/element/image/slider.marko +18 -0
- package/components/element/image/slider.marko.js +50 -0
- package/components/element/img.marko +12 -0
- package/components/element/img.marko.js +43 -0
- package/components/element/index.marko +12 -0
- package/components/element/index.marko.js +47 -0
- package/components/element/link.marko +25 -0
- package/components/element/link.marko.js +54 -0
- package/components/element/magazine-issue/description.marko +14 -0
- package/components/element/magazine-issue/description.marko.js +40 -0
- package/components/element/magazine-issue/digital-edition-url.marko +22 -0
- package/components/element/magazine-issue/digital-edition-url.marko.js +51 -0
- package/components/element/magazine-issue/marko.json +42 -0
- package/components/element/magazine-issue/name.marko +14 -0
- package/components/element/magazine-issue/name.marko.js +40 -0
- package/components/element/magazine-issue/pdf-url.marko +22 -0
- package/components/element/magazine-issue/pdf-url.marko.js +51 -0
- package/components/element/magazine-publication/cancel-url.marko +22 -0
- package/components/element/magazine-publication/cancel-url.marko.js +51 -0
- package/components/element/magazine-publication/change-address-url.marko +22 -0
- package/components/element/magazine-publication/change-address-url.marko.js +51 -0
- package/components/element/magazine-publication/description.marko +14 -0
- package/components/element/magazine-publication/description.marko.js +40 -0
- package/components/element/magazine-publication/einquiry-url.marko +22 -0
- package/components/element/magazine-publication/einquiry-url.marko.js +51 -0
- package/components/element/magazine-publication/marko.json +82 -0
- package/components/element/magazine-publication/name.marko +14 -0
- package/components/element/magazine-publication/name.marko.js +40 -0
- package/components/element/magazine-publication/renewal-url.marko +22 -0
- package/components/element/magazine-publication/renewal-url.marko.js +51 -0
- package/components/element/magazine-publication/reprints-url.marko +22 -0
- package/components/element/magazine-publication/reprints-url.marko.js +51 -0
- package/components/element/magazine-publication/subscribe-url.marko +22 -0
- package/components/element/magazine-publication/subscribe-url.marko.js +51 -0
- package/components/element/marko.json +211 -0
- package/components/element/obj-array.marko +17 -0
- package/components/element/obj-array.marko.js +56 -0
- package/components/element/obj-audio.marko +20 -0
- package/components/element/obj-audio.marko.js +50 -0
- package/components/element/obj-date.marko +25 -0
- package/components/element/obj-date.marko.js +55 -0
- package/components/element/obj-nodes.marko +20 -0
- package/components/element/obj-nodes.marko.js +62 -0
- package/components/element/obj-text.marko +23 -0
- package/components/element/obj-text.marko.js +53 -0
- package/components/element/obj.marko +23 -0
- package/components/element/obj.marko.js +61 -0
- package/components/element/object-link.js +49 -0
- package/components/element/object-type.js +9 -0
- package/components/element/picture.marko +38 -0
- package/components/element/picture.marko.js +85 -0
- package/components/element/show-element.js +8 -0
- package/components/element/text.marko +37 -0
- package/components/element/text.marko.js +76 -0
- package/components/element/website-section/description.marko +16 -0
- package/components/element/website-section/description.marko.js +44 -0
- package/components/element/website-section/hierarchy.marko +19 -0
- package/components/element/website-section/hierarchy.marko.js +60 -0
- package/components/element/website-section/marko.json +31 -0
- package/components/element/website-section/name.marko +18 -0
- package/components/element/website-section/name.marko.js +46 -0
- package/components/font/google.marko +6 -0
- package/components/font/google.marko.js +41 -0
- package/components/font/link.marko +14 -0
- package/components/font/link.marko.js +45 -0
- package/components/font/marko.json +21 -0
- package/components/font/typekit.marko +5 -0
- package/components/font/typekit.marko.js +38 -0
- package/components/load-more/index.marko +53 -0
- package/components/load-more/index.marko.js +119 -0
- package/components/load-more/marko.json +30 -0
- package/components/load-more/trigger.marko +11 -0
- package/components/load-more/trigger.marko.js +40 -0
- package/components/marko.json +37 -0
- package/components/node/body.marko +40 -0
- package/components/node/body.marko.js +112 -0
- package/components/node/element.marko +6 -0
- package/components/node/element.marko.js +39 -0
- package/components/node/footer.marko +19 -0
- package/components/node/footer.marko.js +63 -0
- package/components/node/header.marko +19 -0
- package/components/node/header.marko.js +63 -0
- package/components/node/image-inner-wrapper.marko +61 -0
- package/components/node/image-inner-wrapper.marko.js +116 -0
- package/components/node/image-wrapper.marko +34 -0
- package/components/node/image-wrapper.marko.js +98 -0
- package/components/node/image.marko +51 -0
- package/components/node/image.marko.js +93 -0
- package/components/node/index.marko +35 -0
- package/components/node/index.marko.js +100 -0
- package/components/node/marko.json +189 -0
- package/components/node/utils/image-height.js +3 -0
- package/components/node/utils/image-values.js +17 -0
- package/components/node-list/body.marko +19 -0
- package/components/node-list/body.marko.js +50 -0
- package/components/node-list/element.marko +3 -0
- package/components/node-list/element.marko.js +35 -0
- package/components/node-list/footer.marko +19 -0
- package/components/node-list/footer.marko.js +50 -0
- package/components/node-list/header.marko +19 -0
- package/components/node-list/header.marko.js +50 -0
- package/components/node-list/index.marko +36 -0
- package/components/node-list/index.marko.js +93 -0
- package/components/node-list/marko.json +121 -0
- package/components/node-list/node.marko +15 -0
- package/components/node-list/node.marko.js +49 -0
- package/components/node-list/nodes.marko +82 -0
- package/components/node-list/nodes.marko.js +126 -0
- package/components/page/container.marko +13 -0
- package/components/page/container.marko.js +46 -0
- package/components/page/description.marko +4 -0
- package/components/page/description.marko.js +26 -0
- package/components/page/image.marko +50 -0
- package/components/page/image.marko.js +122 -0
- package/components/page/layouts/content.marko +23 -0
- package/components/page/layouts/content.marko.js +63 -0
- package/components/page/layouts/default.marko +20 -0
- package/components/page/layouts/default.marko.js +61 -0
- package/components/page/layouts/dynamic-page.marko +19 -0
- package/components/page/layouts/dynamic-page.marko.js +59 -0
- package/components/page/layouts/magazine-issue.marko +19 -0
- package/components/page/layouts/magazine-issue.marko.js +59 -0
- package/components/page/layouts/magazine-publication.marko +19 -0
- package/components/page/layouts/magazine-publication.marko.js +59 -0
- package/components/page/layouts/marko.json +86 -0
- package/components/page/layouts/website-section.marko +25 -0
- package/components/page/layouts/website-section.marko.js +78 -0
- package/components/page/marko.json +93 -0
- package/components/page/metadata/components/common.marko +54 -0
- package/components/page/metadata/components/common.marko.js +117 -0
- package/components/page/metadata/content.marko +147 -0
- package/components/page/metadata/content.marko.js +216 -0
- package/components/page/metadata/default.marko +2 -0
- package/components/page/metadata/default.marko.js +29 -0
- package/components/page/metadata/dynamic-page.marko +40 -0
- package/components/page/metadata/dynamic-page.marko.js +84 -0
- package/components/page/metadata/google-structured-data/content.js +138 -0
- package/components/page/metadata/magazine-issue.marko +39 -0
- package/components/page/metadata/magazine-issue.marko.js +83 -0
- package/components/page/metadata/magazine-publication.marko +35 -0
- package/components/page/metadata/magazine-publication.marko.js +79 -0
- package/components/page/metadata/marko.json +32 -0
- package/components/page/metadata/website-section.marko +48 -0
- package/components/page/metadata/website-section.marko.js +92 -0
- package/components/page/rel-canonical.marko +13 -0
- package/components/page/rel-canonical.marko.js +42 -0
- package/components/page/title.marko +18 -0
- package/components/page/title.marko.js +46 -0
- package/components/page/wrapper.marko +16 -0
- package/components/page/wrapper.marko.js +63 -0
- package/components/resolve/marko.json +6 -0
- package/components/resolve/page.marko +10 -0
- package/components/resolve/page.marko.js +49 -0
- package/components/rss/marko.json +10 -0
- package/components/rss/website-section.marko +17 -0
- package/components/rss/website-section.marko.js +46 -0
- package/config/abstract-config.js +42 -0
- package/config/core.js +48 -0
- package/config/site.js +6 -0
- package/express/apollo.js +34 -0
- package/express/asset-loader.js +55 -0
- package/express/cdn.js +27 -0
- package/express/css-loader.js +117 -0
- package/express/embedded-media.js +31 -0
- package/express/error-handlers.js +113 -0
- package/express/find-content-alias.js +30 -0
- package/express/get-redirect.js +44 -0
- package/express/graphql-proxy.js +17 -0
- package/express/index.js +153 -0
- package/express/json-error-handler.js +30 -0
- package/express/load-document.js +3 -0
- package/express/load-more.js +6 -0
- package/express/load-object.js +10 -0
- package/express/oembed.js +18 -0
- package/express/rss.js +19 -0
- package/express/sitemaps.js +16 -0
- package/express/website-context.js +19 -0
- package/index.js +8 -0
- package/integration/test-website-boot.js +198 -0
- package/marko.json +6 -0
- package/middleware/disabled-features.js +15 -0
- package/middleware/index.js +15 -0
- package/middleware/page-node/index.js +45 -0
- package/middleware/page-node/resolved.js +26 -0
- package/middleware/with-content.js +54 -0
- package/middleware/with-dynamic-page.js +37 -0
- package/middleware/with-load-more.js +9 -0
- package/middleware/with-magazine-issue.js +24 -0
- package/middleware/with-magazine-publication.js +24 -0
- package/middleware/with-website-section.js +47 -0
- package/package.json +64 -0
- package/scss/carousel.scss +42 -0
- package/scss/document.scss +55 -0
- package/scss/fonts/alata-fallback.scss +7 -0
- package/scss/fonts/alegreya-fallback.scss +6 -0
- package/scss/fonts/arimo-fallback.scss +7 -0
- package/scss/fonts/fira-sans-fallback.scss +7 -0
- package/scss/fonts/ibm-plex-sans-fallback.scss +7 -0
- package/scss/fonts/informapro-fallback.scss +6 -0
- package/scss/fonts/lato-fallback.scss +7 -0
- package/scss/fonts/manrope-fallback.scss +6 -0
- package/scss/fonts/merriweather-fallback.scss +7 -0
- package/scss/fonts/montserrat-fallback.scss +7 -0
- package/scss/fonts/open-sans-condensed-fallback.scss +6 -0
- package/scss/fonts/open-sans-fallback.scss +7 -0
- package/scss/fonts/oswald-fallback.scss +7 -0
- package/scss/fonts/poppins-fallback.scss +6 -0
- package/scss/fonts/pt-sans-fallback.scss +6 -0
- package/scss/fonts/pt-serif-fallback.scss +6 -0
- package/scss/fonts/public-sans-fallback.scss +7 -0
- package/scss/fonts/raleway-fallback.scss +6 -0
- package/scss/fonts/roboto-condensed-fallback.scss +7 -0
- package/scss/fonts/roboto-fallback.scss +7 -0
- package/scss/fonts/roboto-slab-fallback.scss +7 -0
- package/scss/fonts/solitaire-mvb-pro-fallback.scss +6 -0
- package/scss/fonts/source-sans-4-fallback.scss +7 -0
- package/scss/fonts/source-serif-pro-fallback.scss +7 -0
- package/scss/fonts/synthese-fallback.scss +6 -0
- package/scss/fonts/zilla-slab-fallback.scss +6 -0
- package/scss/load-more.scss +3 -0
- package/scss/node-list.scss +144 -0
- package/scss/node.scss +371 -0
- package/scss/page-image.scss +15 -0
- package/start-server.js +169 -0
- package/utils/apply-query-params.js +16 -0
- package/utils/build-content-input.js +9 -0
- package/utils/build-marko-global.js +1 -0
- package/utils/default-value.js +1 -0
- package/utils/embedded-media/facebook-oembed.js +50 -0
- package/utils/embedded-media/image.js +71 -0
- package/utils/embedded-media/index.js +8 -0
- package/utils/embedded-media/instagram-oembed.js +57 -0
- package/utils/embedded-media/oembed.js +18 -0
- package/utils/hierarchy-aliases.js +3 -0
- package/utils/hierarchy-ids.js +3 -0
- package/utils/index.js +11 -0
- package/utils/is-dev.js +1 -0
- package/utils/published-content/description.js +1 -0
- package/utils/render-ssr-component-from-marko.js +18 -0
- package/utils/render-ssr-component.js +15 -0
- package/utils/should-collapse.js +1 -0
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
// Compiled using marko@4.20.2 - DO NOT EDIT
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web$1.0.0/components/node/header.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_objectPath_module = require("@mindful-web/object-path"),
|
|
8
|
+
objectPath_module = module_objectPath_module.default || module_objectPath_module,
|
|
9
|
+
getAsObject = module_objectPath_module.getAsObject,
|
|
10
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
11
|
+
marko_web_node_element_template = require("./element.marko"),
|
|
12
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
13
|
+
marko_web_node_element_tag = marko_loadTag(marko_web_node_element_template);
|
|
14
|
+
|
|
15
|
+
function render(input, out, __component, component, state) {
|
|
16
|
+
var data = input;
|
|
17
|
+
|
|
18
|
+
const left = getAsObject(input, "left");
|
|
19
|
+
|
|
20
|
+
const right = getAsObject(input, "right");
|
|
21
|
+
|
|
22
|
+
marko_web_node_element_tag({
|
|
23
|
+
show: true,
|
|
24
|
+
tag: input.tag,
|
|
25
|
+
blockName: input.blockName,
|
|
26
|
+
name: "header",
|
|
27
|
+
modifiers: input.modifiers,
|
|
28
|
+
attrs: input.attrs,
|
|
29
|
+
renderBody: function(out) {
|
|
30
|
+
if (left.renderBody) {
|
|
31
|
+
marko_web_node_element_tag(marko_assign({
|
|
32
|
+
show: true,
|
|
33
|
+
tag: "div",
|
|
34
|
+
blockName: "node"
|
|
35
|
+
}, left, {
|
|
36
|
+
name: "header-left"
|
|
37
|
+
}), out, __component, "1");
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
if (right.renderBody) {
|
|
41
|
+
marko_web_node_element_tag(marko_assign({
|
|
42
|
+
show: true,
|
|
43
|
+
tag: "div",
|
|
44
|
+
blockName: "node"
|
|
45
|
+
}, right, {
|
|
46
|
+
name: "header-right"
|
|
47
|
+
}), out, __component, "2");
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}, out, __component, "0");
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
marko_template._ = marko_renderer(render, {
|
|
54
|
+
d_: true,
|
|
55
|
+
e_: marko_componentType
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
marko_template.meta = {
|
|
59
|
+
id: "/@mindful-web/marko-web$1.0.0/components/node/header.marko",
|
|
60
|
+
tags: [
|
|
61
|
+
"./element.marko"
|
|
62
|
+
]
|
|
63
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { get, getAsObject } from "@mindful-web/object-path";
|
|
2
|
+
import imageValues from "./utils/image-values";
|
|
3
|
+
import imageHeight from "./utils/image-height";
|
|
4
|
+
|
|
5
|
+
$ const blockName = input.blockName || "node";
|
|
6
|
+
$ const element = `${blockName}__image-inner-wrapper`;
|
|
7
|
+
|
|
8
|
+
$ const {
|
|
9
|
+
src,
|
|
10
|
+
alt,
|
|
11
|
+
isLogo,
|
|
12
|
+
lazyload,
|
|
13
|
+
imageAttrs,
|
|
14
|
+
} = input;
|
|
15
|
+
|
|
16
|
+
$ const usePlaceholder = input.usePlaceholder == null ? true : input.usePlaceholder;
|
|
17
|
+
$ const hasImage = Boolean(src);
|
|
18
|
+
$ const hasLink = Boolean(get(input, "link.href"));
|
|
19
|
+
$ const isPlaceholder = !hasImage && usePlaceholder;
|
|
20
|
+
|
|
21
|
+
$ const { width, height, modifier } = imageValues(input);
|
|
22
|
+
|
|
23
|
+
$ const modifiers = [];
|
|
24
|
+
$ if (modifier) modifiers.push(modifier);
|
|
25
|
+
$ if (input.gradient) modifiers.push("gradient");
|
|
26
|
+
$ if (isPlaceholder) modifiers.push("placeholder");
|
|
27
|
+
$ const classNames = [element, ...modifiers.map(mod => `${element}--${mod}`), input.class];
|
|
28
|
+
|
|
29
|
+
$ const options = {
|
|
30
|
+
...input.options,
|
|
31
|
+
w: input.width,
|
|
32
|
+
h: input.ar ? imageHeight(input.width, input.ar) : undefined,
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
$ const imageInput = {
|
|
36
|
+
src,
|
|
37
|
+
alt,
|
|
38
|
+
width,
|
|
39
|
+
height,
|
|
40
|
+
options,
|
|
41
|
+
isLogo,
|
|
42
|
+
usePlaceholder,
|
|
43
|
+
lazyload,
|
|
44
|
+
attrs: imageAttrs,
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
<!-- @todo add modifiers -->
|
|
48
|
+
|
|
49
|
+
<if(hasImage || usePlaceholder)>
|
|
50
|
+
<if(hasLink)>
|
|
51
|
+
$ const linkAttrs = { ...input.attrs, ...getAsObject(input, "link.attrs") };
|
|
52
|
+
<marko-web-link ...input.link attrs=linkAttrs class=classNames>
|
|
53
|
+
<marko-web-node-image ...imageInput />
|
|
54
|
+
</marko-web-link>
|
|
55
|
+
</if>
|
|
56
|
+
<else>
|
|
57
|
+
<div ...input.attrs class=classNames>
|
|
58
|
+
<marko-web-node-image ...imageInput />
|
|
59
|
+
</div>
|
|
60
|
+
</else>
|
|
61
|
+
</if>
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
// Compiled using marko@4.20.2 - DO NOT EDIT
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web$1.0.0/components/node/image-inner-wrapper.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_objectPath_module = require("@mindful-web/object-path"),
|
|
8
|
+
objectPath_module = module_objectPath_module.default || module_objectPath_module,
|
|
9
|
+
get = module_objectPath_module.get,
|
|
10
|
+
getAsObject = module_objectPath_module.getAsObject,
|
|
11
|
+
module_imageValues = require("./utils/image-values"),
|
|
12
|
+
imageValues = module_imageValues.default || module_imageValues,
|
|
13
|
+
module_imageHeight = require("./utils/image-height"),
|
|
14
|
+
imageHeight = module_imageHeight.default || module_imageHeight,
|
|
15
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
16
|
+
marko_web_node_image_template = require("./image.marko"),
|
|
17
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
18
|
+
marko_web_node_image_tag = marko_loadTag(marko_web_node_image_template),
|
|
19
|
+
marko_web_link_template = require("../element/link.marko"),
|
|
20
|
+
marko_web_link_tag = marko_loadTag(marko_web_link_template),
|
|
21
|
+
marko_mergeAttrs = require("marko/dist/runtime/html/helpers/merge-attrs");
|
|
22
|
+
|
|
23
|
+
function render(input, out, __component, component, state) {
|
|
24
|
+
var data = input;
|
|
25
|
+
|
|
26
|
+
const blockName = input.blockName || "node";
|
|
27
|
+
|
|
28
|
+
const element = `${blockName}__image-inner-wrapper`;
|
|
29
|
+
|
|
30
|
+
const {
|
|
31
|
+
src,
|
|
32
|
+
alt,
|
|
33
|
+
isLogo,
|
|
34
|
+
lazyload,
|
|
35
|
+
imageAttrs,
|
|
36
|
+
} = input;
|
|
37
|
+
|
|
38
|
+
const usePlaceholder = input.usePlaceholder == null ? true : input.usePlaceholder;
|
|
39
|
+
|
|
40
|
+
const hasImage = Boolean(src);
|
|
41
|
+
|
|
42
|
+
const hasLink = Boolean(get(input, "link.href"));
|
|
43
|
+
|
|
44
|
+
const isPlaceholder = !hasImage && usePlaceholder;
|
|
45
|
+
|
|
46
|
+
const { width, height, modifier } = imageValues(input);
|
|
47
|
+
|
|
48
|
+
const modifiers = [];
|
|
49
|
+
|
|
50
|
+
if (modifier) modifiers.push(modifier);
|
|
51
|
+
|
|
52
|
+
if (input.gradient) modifiers.push("gradient");
|
|
53
|
+
|
|
54
|
+
if (isPlaceholder) modifiers.push("placeholder");
|
|
55
|
+
|
|
56
|
+
const classNames = [element, ...modifiers.map(mod => `${element}--${mod}`), input.class];
|
|
57
|
+
|
|
58
|
+
const options = {
|
|
59
|
+
...input.options,
|
|
60
|
+
w: input.width,
|
|
61
|
+
h: input.ar ? imageHeight(input.width, input.ar) : undefined,
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
const imageInput = {
|
|
65
|
+
src,
|
|
66
|
+
alt,
|
|
67
|
+
width,
|
|
68
|
+
height,
|
|
69
|
+
options,
|
|
70
|
+
isLogo,
|
|
71
|
+
usePlaceholder,
|
|
72
|
+
lazyload,
|
|
73
|
+
attrs: imageAttrs,
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
if (hasImage || usePlaceholder) {
|
|
77
|
+
if (hasLink) {
|
|
78
|
+
const linkAttrs = { ...input.attrs, ...getAsObject(input, "link.attrs") };
|
|
79
|
+
|
|
80
|
+
marko_web_link_tag(marko_assign({}, input.link, {
|
|
81
|
+
attrs: linkAttrs,
|
|
82
|
+
class: classNames,
|
|
83
|
+
renderBody: function(out) {
|
|
84
|
+
marko_web_node_image_tag(marko_assign({
|
|
85
|
+
lazyload: true
|
|
86
|
+
}, imageInput), out, __component, "1");
|
|
87
|
+
}
|
|
88
|
+
}), out, __component, "0");
|
|
89
|
+
} else {
|
|
90
|
+
out.w("<div" +
|
|
91
|
+
marko_mergeAttrs(input.attrs, {
|
|
92
|
+
class: classNames
|
|
93
|
+
}) +
|
|
94
|
+
">");
|
|
95
|
+
|
|
96
|
+
marko_web_node_image_tag(marko_assign({
|
|
97
|
+
lazyload: true
|
|
98
|
+
}, imageInput), out, __component, "3");
|
|
99
|
+
|
|
100
|
+
out.w("</div>");
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
marko_template._ = marko_renderer(render, {
|
|
106
|
+
d_: true,
|
|
107
|
+
e_: marko_componentType
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
marko_template.meta = {
|
|
111
|
+
id: "/@mindful-web/marko-web$1.0.0/components/node/image-inner-wrapper.marko",
|
|
112
|
+
tags: [
|
|
113
|
+
"./image.marko",
|
|
114
|
+
"../element/link.marko"
|
|
115
|
+
]
|
|
116
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { getAsArray } from "@mindful-web/object-path";
|
|
2
|
+
import imageValues from "./utils/image-values";
|
|
3
|
+
|
|
4
|
+
$ const usePlaceholder = input.usePlaceholder == null ? true : input.usePlaceholder;
|
|
5
|
+
$ const hasImage = Boolean(input.src);
|
|
6
|
+
$ const { width, height } = imageValues(input);
|
|
7
|
+
|
|
8
|
+
$ const style = [];
|
|
9
|
+
$ if (width) {
|
|
10
|
+
style.push(`width: ${input.width}px;`);
|
|
11
|
+
// Add min-width for IE11
|
|
12
|
+
style.push(`min-width: ${input.width}px;`);
|
|
13
|
+
}
|
|
14
|
+
$ if (height) style.push(`height: ${height}px;`);
|
|
15
|
+
|
|
16
|
+
$ const { header, body, align } = input;
|
|
17
|
+
$ delete input.header;
|
|
18
|
+
$ delete input.body;
|
|
19
|
+
$ delete input.align;
|
|
20
|
+
|
|
21
|
+
$ const modifiers = [];
|
|
22
|
+
$ if (align) modifiers.push(`align-${align}`);
|
|
23
|
+
|
|
24
|
+
<if(hasImage || usePlaceholder)>
|
|
25
|
+
<marko-web-node-element name="image-wrapper" block-name=input.blockName attrs={ style } modifiers=modifiers>
|
|
26
|
+
<marko-web-node-image-inner-wrapper ...input />
|
|
27
|
+
<if(header)>
|
|
28
|
+
<marko-web-node-header ...header modifiers=["overlay", ...getAsArray(header, "modifiers")] />
|
|
29
|
+
</if>
|
|
30
|
+
<if(body)>
|
|
31
|
+
<marko-web-node-body ...body modifiers=["overlay", ...getAsArray(header, "modifiers")] />
|
|
32
|
+
</if>
|
|
33
|
+
</marko-web-node-element>
|
|
34
|
+
</if>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
// Compiled using marko@4.20.2 - DO NOT EDIT
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web$1.0.0/components/node/image-wrapper.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_objectPath_module = require("@mindful-web/object-path"),
|
|
8
|
+
objectPath_module = module_objectPath_module.default || module_objectPath_module,
|
|
9
|
+
getAsArray = module_objectPath_module.getAsArray,
|
|
10
|
+
module_imageValues = require("./utils/image-values"),
|
|
11
|
+
imageValues = module_imageValues.default || module_imageValues,
|
|
12
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
13
|
+
marko_web_node_image_inner_wrapper_template = require("./image-inner-wrapper.marko"),
|
|
14
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
15
|
+
marko_web_node_image_inner_wrapper_tag = marko_loadTag(marko_web_node_image_inner_wrapper_template),
|
|
16
|
+
marko_web_node_header_template = require("./header.marko"),
|
|
17
|
+
marko_web_node_header_tag = marko_loadTag(marko_web_node_header_template),
|
|
18
|
+
marko_web_node_body_template = require("./body.marko"),
|
|
19
|
+
marko_web_node_body_tag = marko_loadTag(marko_web_node_body_template),
|
|
20
|
+
marko_web_node_element_template = require("./element.marko"),
|
|
21
|
+
marko_web_node_element_tag = marko_loadTag(marko_web_node_element_template);
|
|
22
|
+
|
|
23
|
+
function render(input, out, __component, component, state) {
|
|
24
|
+
var data = input;
|
|
25
|
+
|
|
26
|
+
const usePlaceholder = input.usePlaceholder == null ? true : input.usePlaceholder;
|
|
27
|
+
|
|
28
|
+
const hasImage = Boolean(input.src);
|
|
29
|
+
|
|
30
|
+
const { width, height } = imageValues(input);
|
|
31
|
+
|
|
32
|
+
const style = [];
|
|
33
|
+
|
|
34
|
+
if (width) {
|
|
35
|
+
style.push(`width: ${input.width}px;`);
|
|
36
|
+
// Add min-width for IE11
|
|
37
|
+
style.push(`min-width: ${input.width}px;`);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
if (height) style.push(`height: ${height}px;`);
|
|
41
|
+
|
|
42
|
+
const { header, body, align } = input;
|
|
43
|
+
|
|
44
|
+
delete input.header;
|
|
45
|
+
|
|
46
|
+
delete input.body;
|
|
47
|
+
|
|
48
|
+
delete input.align;
|
|
49
|
+
|
|
50
|
+
const modifiers = [];
|
|
51
|
+
|
|
52
|
+
if (align) modifiers.push(`align-${align}`);
|
|
53
|
+
|
|
54
|
+
if (hasImage || usePlaceholder) {
|
|
55
|
+
marko_web_node_element_tag({
|
|
56
|
+
show: true,
|
|
57
|
+
tag: "div",
|
|
58
|
+
blockName: input.blockName,
|
|
59
|
+
name: "image-wrapper",
|
|
60
|
+
attrs: {
|
|
61
|
+
style: style
|
|
62
|
+
},
|
|
63
|
+
modifiers: modifiers,
|
|
64
|
+
renderBody: function(out) {
|
|
65
|
+
marko_web_node_image_inner_wrapper_tag(marko_assign({
|
|
66
|
+
lazyload: true
|
|
67
|
+
}, input), out, __component, "1");
|
|
68
|
+
|
|
69
|
+
if (header) {
|
|
70
|
+
marko_web_node_header_tag(marko_assign({}, header, {
|
|
71
|
+
modifiers: ["overlay", ...getAsArray(header, "modifiers")]
|
|
72
|
+
}), out, __component, "2");
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
if (body) {
|
|
76
|
+
marko_web_node_body_tag(marko_assign({}, body, {
|
|
77
|
+
modifiers: ["overlay", ...getAsArray(header, "modifiers")]
|
|
78
|
+
}), out, __component, "3");
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}, out, __component, "0");
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
marko_template._ = marko_renderer(render, {
|
|
86
|
+
d_: true,
|
|
87
|
+
e_: marko_componentType
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
marko_template.meta = {
|
|
91
|
+
id: "/@mindful-web/marko-web$1.0.0/components/node/image-wrapper.marko",
|
|
92
|
+
tags: [
|
|
93
|
+
"./image-inner-wrapper.marko",
|
|
94
|
+
"./header.marko",
|
|
95
|
+
"./body.marko",
|
|
96
|
+
"./element.marko"
|
|
97
|
+
]
|
|
98
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { buildImgixUrl, getRelativeAspectRatioHeight, getRelativeAspectRatioWidth } from "@mindful-web/image";
|
|
2
|
+
import { get, getAsObject } from "@mindful-web/object-path";
|
|
3
|
+
|
|
4
|
+
$ const element = "node__image";
|
|
5
|
+
$ const hasImage = Boolean(input.src);
|
|
6
|
+
|
|
7
|
+
<!--
|
|
8
|
+
1. If either width or height input is set, use them as the options.w and options.h
|
|
9
|
+
2. Using options.w and options.h, determine relative w and h when not present
|
|
10
|
+
3. Finally, using options, set the image width and height attrs
|
|
11
|
+
-->
|
|
12
|
+
|
|
13
|
+
$ const { width, height } = input;
|
|
14
|
+
$ const options = getAsObject(input, "options");
|
|
15
|
+
|
|
16
|
+
$ if (width || height) {
|
|
17
|
+
options.w = width || undefined;
|
|
18
|
+
options.h = height || undefined;
|
|
19
|
+
}
|
|
20
|
+
$ if (input.ar) options.ar = input.ar;
|
|
21
|
+
|
|
22
|
+
$ const {
|
|
23
|
+
w,
|
|
24
|
+
h,
|
|
25
|
+
ar,
|
|
26
|
+
fit,
|
|
27
|
+
} = options;
|
|
28
|
+
$ if (w && !h) options.h = ar ? getRelativeAspectRatioHeight(w, ar) : undefined;
|
|
29
|
+
$ if (h && !w) options.w = ar ? getRelativeAspectRatioWidth(h, ar) : undefined;
|
|
30
|
+
$ if (!fit) options.fit = options.w && options.h ? "crop" : undefined;
|
|
31
|
+
|
|
32
|
+
$ const attrs = { ...input.attrs, width: options.w, height: options.h };
|
|
33
|
+
|
|
34
|
+
<if(hasImage)>
|
|
35
|
+
$ const src = buildImgixUrl(input.src, options, input.defaultOptions, input.isLogo);
|
|
36
|
+
$ const srcset = [`${buildImgixUrl(src, { dpr: 2 })} 2x`];
|
|
37
|
+
<marko-web-img
|
|
38
|
+
src=src
|
|
39
|
+
srcset=srcset
|
|
40
|
+
alt=input.alt
|
|
41
|
+
attrs=attrs
|
|
42
|
+
class=[element, input.class]
|
|
43
|
+
lazyload=input.lazyload
|
|
44
|
+
/>
|
|
45
|
+
</if>
|
|
46
|
+
<else-if(input.usePlaceholder)>
|
|
47
|
+
<div
|
|
48
|
+
...attrs
|
|
49
|
+
class=[element, `${element}--placeholder`, input.class]
|
|
50
|
+
/>
|
|
51
|
+
</else-if>
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
// Compiled using marko@4.20.2 - DO NOT EDIT
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web$1.0.0/components/node/image.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_image_module = require("@mindful-web/image"),
|
|
8
|
+
image_module = module_image_module.default || module_image_module,
|
|
9
|
+
buildImgixUrl = module_image_module.buildImgixUrl,
|
|
10
|
+
getRelativeAspectRatioHeight = module_image_module.getRelativeAspectRatioHeight,
|
|
11
|
+
getRelativeAspectRatioWidth = module_image_module.getRelativeAspectRatioWidth,
|
|
12
|
+
module_objectPath_module = require("@mindful-web/object-path"),
|
|
13
|
+
objectPath_module = module_objectPath_module.default || module_objectPath_module,
|
|
14
|
+
get = module_objectPath_module.get,
|
|
15
|
+
getAsObject = module_objectPath_module.getAsObject,
|
|
16
|
+
marko_web_img_template = require("../element/img.marko"),
|
|
17
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
18
|
+
marko_web_img_tag = marko_loadTag(marko_web_img_template),
|
|
19
|
+
marko_mergeAttrs = require("marko/dist/runtime/html/helpers/merge-attrs");
|
|
20
|
+
|
|
21
|
+
function render(input, out, __component, component, state) {
|
|
22
|
+
var data = input;
|
|
23
|
+
|
|
24
|
+
const element = "node__image";
|
|
25
|
+
|
|
26
|
+
const hasImage = Boolean(input.src);
|
|
27
|
+
|
|
28
|
+
const { width, height } = input;
|
|
29
|
+
|
|
30
|
+
const options = getAsObject(input, "options");
|
|
31
|
+
|
|
32
|
+
if (width || height) {
|
|
33
|
+
options.w = width || undefined;
|
|
34
|
+
options.h = height || undefined;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (input.ar) options.ar = input.ar;
|
|
38
|
+
|
|
39
|
+
const {
|
|
40
|
+
w,
|
|
41
|
+
h,
|
|
42
|
+
ar,
|
|
43
|
+
fit,
|
|
44
|
+
} = options;
|
|
45
|
+
|
|
46
|
+
if (w && !h) options.h = ar ? getRelativeAspectRatioHeight(w, ar) : undefined;
|
|
47
|
+
|
|
48
|
+
if (h && !w) options.w = ar ? getRelativeAspectRatioWidth(h, ar) : undefined;
|
|
49
|
+
|
|
50
|
+
if (!fit) options.fit = options.w && options.h ? "crop" : undefined;
|
|
51
|
+
|
|
52
|
+
const attrs = { ...input.attrs, width: options.w, height: options.h };
|
|
53
|
+
|
|
54
|
+
if (hasImage) {
|
|
55
|
+
const src = buildImgixUrl(input.src, options, input.defaultOptions, input.isLogo);
|
|
56
|
+
|
|
57
|
+
const srcset = [`${buildImgixUrl(src, { dpr: 2 })} 2x`];
|
|
58
|
+
|
|
59
|
+
marko_web_img_tag({
|
|
60
|
+
lazyload: input.lazyload,
|
|
61
|
+
src: src,
|
|
62
|
+
srcset: srcset,
|
|
63
|
+
alt: input.alt,
|
|
64
|
+
attrs: attrs,
|
|
65
|
+
class: [
|
|
66
|
+
element,
|
|
67
|
+
input.class
|
|
68
|
+
]
|
|
69
|
+
}, out, __component, "0");
|
|
70
|
+
} else if (input.usePlaceholder) {
|
|
71
|
+
out.w("<div" +
|
|
72
|
+
marko_mergeAttrs(attrs, {
|
|
73
|
+
class: [
|
|
74
|
+
element,
|
|
75
|
+
element + "--placeholder",
|
|
76
|
+
input.class
|
|
77
|
+
]
|
|
78
|
+
}) +
|
|
79
|
+
"></div>");
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
marko_template._ = marko_renderer(render, {
|
|
84
|
+
d_: true,
|
|
85
|
+
e_: marko_componentType
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
marko_template.meta = {
|
|
89
|
+
id: "/@mindful-web/marko-web$1.0.0/components/node/image.marko",
|
|
90
|
+
tags: [
|
|
91
|
+
"../element/img.marko"
|
|
92
|
+
]
|
|
93
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { getAsArray } from "@mindful-web/object-path";
|
|
2
|
+
|
|
3
|
+
$ const blockName = input.blockName || "node";
|
|
4
|
+
$ const tag = input.tag || "div";
|
|
5
|
+
|
|
6
|
+
$ const modifiers = [...getAsArray(input.modifiers)];
|
|
7
|
+
$ if (input.imagePosition) modifiers.push(`image-${input.imagePosition}`);
|
|
8
|
+
$ if (input.flush) modifiers.push("flush");
|
|
9
|
+
$ if (input.flushX) modifiers.push("flush-x");
|
|
10
|
+
$ if (input.flushY) modifiers.push("flush-y");
|
|
11
|
+
$ if (input.card) modifiers.push("card");
|
|
12
|
+
$ if (input.imageFlush) modifiers.push("image-flush");
|
|
13
|
+
$ if (input.fullHeight) modifiers.push("full-height");
|
|
14
|
+
$ if (input.type) modifiers.push(`${input.type}-type`);
|
|
15
|
+
|
|
16
|
+
$ const classNames = [blockName, ...modifiers.map(mod => `${blockName}--${mod}`), input.class];
|
|
17
|
+
|
|
18
|
+
<${tag} ...input.attrs class=classNames>
|
|
19
|
+
<if(input.header)>
|
|
20
|
+
<marko-web-node-header ...input.header />
|
|
21
|
+
</if>
|
|
22
|
+
|
|
23
|
+
<marko-web-node-element name="contents">
|
|
24
|
+
<if(input.image)>
|
|
25
|
+
<marko-web-node-image-wrapper ...input.image />
|
|
26
|
+
</if>
|
|
27
|
+
<if(input.body)>
|
|
28
|
+
<marko-web-node-body ...input.body />
|
|
29
|
+
</if>
|
|
30
|
+
</marko-web-node-element>
|
|
31
|
+
|
|
32
|
+
<if(input.footer)>
|
|
33
|
+
<marko-web-node-footer ...input.footer />
|
|
34
|
+
</if>
|
|
35
|
+
</>
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
// Compiled using marko@4.20.2 - DO NOT EDIT
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
var marko_template = module.exports = require("marko/dist/html").t(__filename),
|
|
5
|
+
marko_componentType = "/@mindful-web/marko-web$1.0.0/components/node/index.marko",
|
|
6
|
+
marko_renderer = require("marko/dist/runtime/components/renderer"),
|
|
7
|
+
module_objectPath_module = require("@mindful-web/object-path"),
|
|
8
|
+
objectPath_module = module_objectPath_module.default || module_objectPath_module,
|
|
9
|
+
getAsArray = module_objectPath_module.getAsArray,
|
|
10
|
+
marko_web_node_header_template = require("./header.marko"),
|
|
11
|
+
marko_loadTag = require("marko/dist/runtime/helpers/load-tag"),
|
|
12
|
+
marko_web_node_header_tag = marko_loadTag(marko_web_node_header_template),
|
|
13
|
+
marko_assign = require("marko/dist/runtime/helpers/assign"),
|
|
14
|
+
marko_web_node_image_wrapper_template = require("./image-wrapper.marko"),
|
|
15
|
+
marko_web_node_image_wrapper_tag = marko_loadTag(marko_web_node_image_wrapper_template),
|
|
16
|
+
marko_web_node_body_template = require("./body.marko"),
|
|
17
|
+
marko_web_node_body_tag = marko_loadTag(marko_web_node_body_template),
|
|
18
|
+
marko_web_node_element_template = require("./element.marko"),
|
|
19
|
+
marko_web_node_element_tag = marko_loadTag(marko_web_node_element_template),
|
|
20
|
+
marko_web_node_footer_template = require("./footer.marko"),
|
|
21
|
+
marko_web_node_footer_tag = marko_loadTag(marko_web_node_footer_template),
|
|
22
|
+
marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag");
|
|
23
|
+
|
|
24
|
+
function render(input, out, __component, component, state) {
|
|
25
|
+
var data = input;
|
|
26
|
+
|
|
27
|
+
const blockName = input.blockName || "node";
|
|
28
|
+
|
|
29
|
+
const tag = input.tag || "div";
|
|
30
|
+
|
|
31
|
+
const modifiers = [...getAsArray(input.modifiers)];
|
|
32
|
+
|
|
33
|
+
if (input.imagePosition) modifiers.push(`image-${input.imagePosition}`);
|
|
34
|
+
|
|
35
|
+
if (input.flush) modifiers.push("flush");
|
|
36
|
+
|
|
37
|
+
if (input.flushX) modifiers.push("flush-x");
|
|
38
|
+
|
|
39
|
+
if (input.flushY) modifiers.push("flush-y");
|
|
40
|
+
|
|
41
|
+
if (input.card) modifiers.push("card");
|
|
42
|
+
|
|
43
|
+
if (input.imageFlush) modifiers.push("image-flush");
|
|
44
|
+
|
|
45
|
+
if (input.fullHeight) modifiers.push("full-height");
|
|
46
|
+
|
|
47
|
+
if (input.type) modifiers.push(`${input.type}-type`);
|
|
48
|
+
|
|
49
|
+
const classNames = [blockName, ...modifiers.map(mod => `${blockName}--${mod}`), input.class];
|
|
50
|
+
|
|
51
|
+
marko_dynamicTag(out, tag, function() {
|
|
52
|
+
return marko_assign({}, input.attrs, {
|
|
53
|
+
class: classNames
|
|
54
|
+
});
|
|
55
|
+
}, function(out) {
|
|
56
|
+
if (input.header) {
|
|
57
|
+
marko_web_node_header_tag(input.header, out, __component, "1");
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
marko_web_node_element_tag({
|
|
61
|
+
show: true,
|
|
62
|
+
tag: "div",
|
|
63
|
+
blockName: "node",
|
|
64
|
+
name: "contents",
|
|
65
|
+
renderBody: function(out) {
|
|
66
|
+
if (input.image) {
|
|
67
|
+
marko_web_node_image_wrapper_tag(marko_assign({
|
|
68
|
+
ar: "1:1",
|
|
69
|
+
width: 320,
|
|
70
|
+
lazyload: true
|
|
71
|
+
}, input.image), out, __component, "3");
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (input.body) {
|
|
75
|
+
marko_web_node_body_tag(input.body, out, __component, "4");
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}, out, __component, "2");
|
|
79
|
+
|
|
80
|
+
if (input.footer) {
|
|
81
|
+
marko_web_node_footer_tag(input.footer, out, __component, "5");
|
|
82
|
+
}
|
|
83
|
+
}, null, null, __component, "0");
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
marko_template._ = marko_renderer(render, {
|
|
87
|
+
d_: true,
|
|
88
|
+
e_: marko_componentType
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
marko_template.meta = {
|
|
92
|
+
id: "/@mindful-web/marko-web$1.0.0/components/node/index.marko",
|
|
93
|
+
tags: [
|
|
94
|
+
"./header.marko",
|
|
95
|
+
"./image-wrapper.marko",
|
|
96
|
+
"./body.marko",
|
|
97
|
+
"./element.marko",
|
|
98
|
+
"./footer.marko"
|
|
99
|
+
]
|
|
100
|
+
};
|