Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(content-block-cards): fix margin in smallest breakpoint #5014

Merged
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
10 changes: 7 additions & 3 deletions packages/web-components/.storybook/container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ body {
.dds-ce-demo-devenv--simple-grid--card,
.dds-ce-demo-devenv--simple-grid--card-group,
.dds-ce-demo-devenv--simple-grid--content-layout,
.dds-ce-demo-devenv--simple-grid--content-layout--with-complementary {
.dds-ce-demo-devenv--simple-grid--content-layout--with-complementary,
.dds-ce-demo-devenv--simple-grid--content-block-cards {
> * {
grid-column: 1 / span 4;
}
Expand Down Expand Up @@ -117,8 +118,11 @@ body {
grid-column: 3 / span 12;
}

.dds-ce-demo-devenv--simple-grid--content-layout--with-complementary > * {
grid-column: 5 / span 12;
.dds-ce-demo-devenv--simple-grid--content-layout--with-complementary,
.dds-ce-demo-devenv--simple-grid--content-block-cards {
> * {
grid-column: 5 / span 12;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<body>
<div class="bx--grid">
<div class="bx--row">
<div class="bx--col-sm-4 bx--col-lg-12 bx--offset-lg-4">
<div class="bx--col-sm-4 bx--col-lg-12 bx--offset-lg-4 bx--no-gutter">
<dds-content-block-cards>
<dds-content-block-heading>Lorem ipsum dolor sit amet</dds-content-block-heading>
<dds-card-group>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,14 @@ export default {
title: 'Components/Content Block Cards',
decorators: [
story => html`
<dds-video-cta-container>
<dds-video-cta-container class="dds-ce-demo-devenv--simple-grid dds-ce-demo-devenv--simple-grid--content-block-cards">
${story()}
</dds-video-cta-container>
`,
],
parameters: {
...readme.parameters,
hasCardGroup: true,
hasGrid: true,
hasVerticalSpacingInComponent: true,
knobs: {
ContentBlockCards: () => ({
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
//
// Copyright IBM Corp. 2020
// Copyright IBM Corp. 2020, 2021
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
//

@import '@carbon/ibmdotcom-styles/scss/components/content-block-cards/content-block-cards';

:host(#{$dds-prefix}-content-block-cards) {
padding-left: calc(#{$carbon--grid-gutter} / 2);
padding-right: calc(#{$carbon--grid-gutter} / 2);

.#{$prefix}--content-block__children {
margin-left: calc(-1 * #{$carbon--grid-gutter} / 2);
margin-right: calc(-1 * #{$carbon--grid-gutter} / 2);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,15 @@
* LICENSE file in the root directory of this source tree.
*/

import { css, customElement } from 'lit-element';
import { Part } from 'lit-html';
import { html, css, customElement, TemplateResult } from 'lit-element';
import settings from 'carbon-components/es/globals/js/settings.js';
import ddsSettings from '@carbon/ibmdotcom-utilities/es/utilities/settings/settings.js';
import StableSelectorMixin from '../../globals/mixins/stable-selector';
import DDSContentBlock from '../content-block/content-block';
import styles from './content-block-cards.scss';

const { prefix } = settings;
const { stablePrefix: ddsPrefix } = ddsSettings;

/**
Expand All @@ -22,6 +25,50 @@ const { stablePrefix: ddsPrefix } = ddsSettings;
*/
@customElement(`${ddsPrefix}-content-block-cards`)
class DDSContentBlockCards extends StableSelectorMixin(DDSContentBlock) {
/**
* The CSS class list for the container (grid) node.
*/
// eslint-disable-next-line class-methods-use-this
protected _getContainerClasses(): string | ((part: Part) => void) {
return `${prefix}--content-layout ${prefix}--content-layout--card-group`;
}

/**
* @returns The non-header, non-complementary contents.
*/
protected _renderBody(): TemplateResult | string | void {
const { _hasContent: hasContent, _hasCopy: hasCopy, _hasMedia: hasMedia } = this;
return html`
<div ?hidden="${!hasContent && !hasCopy && !hasMedia}" class="${prefix}--content-layout__body">
${super._renderBody()}
</div>
`;
}

protected _renderInnerBody() {
return html`
${this._renderContent()}${this._renderMedia()}
`;
}

protected _renderFooter(): TemplateResult | string | void {
const { _hasFooter: hasFooter, _handleSlotChange: handleSlotChange } = this;
// TODO: See if we can remove the surrounding `<div>`
return html`
<div ?hidden="${!hasFooter}">
<slot name="footer" @slotchange="${handleSlotChange}"></slot>
</div>
`;
}

render() {
return html`
<div class="${this._getContainerClasses()}">
${this._renderHeading()}${this._renderBody()}
</div>
`;
}

static get stableSelector() {
return `${ddsPrefix}--content-block-cards`;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,12 @@
}
}

.#{$prefix}--content-layout--card-group ::slotted([slot='footer']) {
@include carbon--breakpoint('lg') {
width: calc(100% / 3);
}
}

// TODO: Apply `dds--make-col(2, 3)` to React version, too, so we can merge the style to React version
.#{$dds-prefix}-ce--content-block__col {
@include dds--make-col(2, 3);
Expand Down
74 changes: 32 additions & 42 deletions packages/web-components/tests/snapshots/dds-content-block-cards.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,64 +5,54 @@
#### `should render with minimum attributes`

```
<slot name="heading">
</slot>
<slot name="copy">
</slot>
<div
class="bx--content-block__children"
hidden=""
>
<slot>
<div class="bx--content-layout bx--content-layout--card-group">
<slot name="heading">
</slot>
<div hidden="">
<slot name="media">
<div
class="bx--content-layout__body"
hidden=""
>
<slot name="copy">
</slot>
</div>
</div>
<div
class="bx--content-block__cta-row"
hidden=""
>
<div class="bx--content-block__cta bx--content-block__cta-col">
<slot name="footer">
<slot>
</slot>
<div hidden="">
<slot name="media">
</slot>
</div>
<div hidden="">
<slot name="footer">
</slot>
</div>
</div>
</div>
<slot name="complementary">
</slot>

```

#### `should render with various attributes`

```
<slot name="heading">
</slot>
<slot name="copy">
</slot>
<div
class="bx--content-block__children"
hidden=""
>
<slot>
<div class="bx--content-layout bx--content-layout--card-group">
<slot name="heading">
</slot>
<div hidden="">
<slot name="media">
<div
class="bx--content-layout__body"
hidden=""
>
<slot name="copy">
</slot>
</div>
</div>
<div
class="bx--content-block__cta-row"
hidden=""
>
<div class="bx--content-block__cta bx--content-block__cta-col">
<slot name="footer">
<slot>
</slot>
<div hidden="">
<slot name="media">
</slot>
</div>
<div hidden="">
<slot name="footer">
</slot>
</div>
</div>
</div>
<slot name="complementary">
</slot>

```