Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

fix(cms): image text blocks distinction #1065 (#1070) #1070

Merged
merged 4 commits into from
Sep 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions packages/default-theme/cms/blocks/CmsBlockImageText.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
<template>
<article class="cms-block-image-text">
<CmsGenericElement
:content="getLeftContent"
class="cms-block-image-text__image"
/>
<CmsGenericElement
:content="getRightContent"
class="cms-block-image-text__text"
/>
</article>
</template>

<script>
import CmsGenericElement from "sw-cms/CmsGenericElement"

export default {
name: "CmsBlockImageText",

components: {
CmsGenericElement,
},

props: {
content: {
type: Object,
default: () => ({}),
},
},

computed: {
getSlots() {
return this.content.slots || []
},

getLeftContent() {
return this.getSlots.find(({ slot }) => slot === "left")
},
getRightContent() {
return this.getSlots.find(({ slot }) => slot === "right")
},
},
}
</script>

<style lang="scss" scoped>
@import "@/assets/scss/variables";

.cms-block-image-text {
display: flex;
flex-direction: column;
margin-right: 0;
margin-left: 0;

&__image,
&__text {
margin: var(--spacer-sm);
flex: 1;
& img {
height: 340px;
object-fit: cover;
width: 100%;
}
}

@include for-desktop {
align-items: center;
flex-direction: row;
justify-content: space-around;

.cms-block-image-text__image {
margin-bottom: 0;
margin-right: var(--spacer-sm);
margin-top: 0;
}

.cms-block-image-text__text {
margin-bottom: 0;
margin-left: var(--spacer-sm);
margin-top: 0;
}
}
}
</style>
51 changes: 9 additions & 42 deletions packages/default-theme/cms/blocks/CmsBlockTextOnImage.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
<template>
<article class="cms-block-text-on-image">
<CmsGenericElement
:content="getLeftContent"
class="cms-block-text-on-image__image"
/>
<CmsGenericElement
:content="getRightContent"
class="cms-block-text-on-image__text"
v-if="getContent"
:content="getContent"
class="cms-block-text-on-image__content"
/>
</article>
</template>
Expand All @@ -33,11 +30,8 @@ export default {
return this.content.slots || []
},

getLeftContent() {
return this.getSlots.find(({ slot }) => slot === "left")
},
getRightContent() {
return this.getSlots.find(({ slot }) => slot === "right")
getContent() {
return this.getSlots.length && this.getSlots[0]
},
},
}
Expand All @@ -47,38 +41,11 @@ export default {
@import "@/assets/scss/variables";

.cms-block-text-on-image {
display: flex;
flex-direction: column;
margin-right: 0;
margin-left: 0;

&__image,
&__text {
margin: var(--spacer-sm);
flex: 1;
& img {
height: 340px;
object-fit: cover;
width: 100%;
}
}

@include for-desktop {
align-items: center;
flex-direction: row;
justify-content: space-around;

.cms-block-text-on-image__image {
margin-bottom: 0;
margin-right: var(--spacer-sm);
margin-top: 0;
}
background-position: center;
background-size: cover;

.cms-block-text-on-image__text {
margin-bottom: 0;
margin-left: var(--spacer-sm);
margin-top: 0;
}
&__content {
padding: var(--spacer-2xl) var(--spacer-xl);
}
}
</style>
2 changes: 1 addition & 1 deletion packages/default-theme/cms/cmsMap.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"text-on-image": "CmsBlockTextOnImage",
"sidebar-filter": "CmsBlockDefault",
"product-listing": "CmsBlockDefault",
"image-text": "CmsBlockTextOnImage",
"image-text": "CmsBlockImageText",
"image": "CmsBlockDefault",
"image-cover": "CmsBlockImageCover",
"category-navigation": "CmsBlockCategoryNavigation",
Expand Down