Skip to content

Commit

Permalink
fix(content-block-cards): fix margin in smallest breakpoint
Browse files Browse the repository at this point in the history
Fixes wrong margin in `<dds-content-block-cards>` in its smallest
breakpoint. Also migrates the internal layout to CSS grid to eliminate
the negative margin adjustment of heading vs. cards.

Refs carbon-design-system#4959.
  • Loading branch information
asudoh committed Jan 26, 2021
1 parent 48fc2e4 commit e022a2e
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 18 deletions.
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 All @@ -104,8 +105,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

0 comments on commit e022a2e

Please sign in to comment.