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

IYY-283: Site editors can create a ½ - ½ layout | IYY-284: Site editors can create a ⅓ - ⅓ - ⅓ layout #442

Open
wants to merge 19 commits into
base: iyy-sprint-03
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
87f54d5
feat(IYY-283): add initial fifty-fifty layout
joetower Nov 25, 2024
9b5322a
feat(IYY-283): add layout component
joetower Nov 26, 2024
2d53360
feat(IYY-283): fifty-fifty and thirty-thirty-thirty layouts
joetower Nov 26, 2024
c8dd211
feat(IYY-283): add two-thirds-one-thirds option
joetower Nov 26, 2024
15653be
feat(IYY-283): make divider an element so each column gets equal widt…
joetower Nov 26, 2024
f8ec8b6
feat(IYY-283): update spacing and dividers on mobile
joetower Nov 26, 2024
9363b42
feat(IYY-283): update comments
joetower Nov 27, 2024
b03a72a
feat(IYY-282): add link grid example to fifty-fifty layout, make sure…
joetower Nov 27, 2024
058c3c2
Merge branch 'develop' into IYY-283-fifty-fifty-layout
joetower Dec 2, 2024
d156206
feat(IYY-301): remove top margin from link-grid when used in a layout…
joetower Dec 2, 2024
b3d6c90
feat(IYY-301): rename two-thirds-one-thirds seventy-thirty
joetower Dec 4, 2024
57e08ee
feat(IYY-301): update divder width in seventy-thirty layout, add opac…
joetower Dec 5, 2024
3aaf2fb
Merge pull request #445 from yalesites-org/IYY-301-link-grid-fifty-fifty
joetower Dec 6, 2024
44a809b
feat(IYY-283): update caption color to use theme
joetower Dec 6, 2024
7496d31
feat(IYY-283): update caption to use layout color variable
joetower Dec 6, 2024
aeee090
feat(IYY-283): fix link colors in layout component
joetower Dec 16, 2024
88ea604
feat(IYY-283): add layout component to our spotlight JS spacing logic
joetower Dec 17, 2024
2d32eb3
feat(IYY-283): set default layout theme to 'default'
joetower Dec 17, 2024
60f5662
feat(IYY-283): linting fix
joetower Dec 20, 2024
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
4 changes: 4 additions & 0 deletions components/01-atoms/images/image/_yds-image.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ figure {
color: var(--color-gray-800);
}
}

[data-component-layout] & {
color: var(--color-layout-content);
}
}

@mixin clickable-component-image {
Expand Down
6 changes: 6 additions & 0 deletions components/02-molecules/accordion/_yds-accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
@include tokens.spacing-page-section;

--color-text-shadow: var(--color-basic-white);

// remove margin from the top and bottom of the accordion in a fifty-fifty layout
[data-component-layout='fifty-fifty'] & {
margin-block-start: 0;
margin-block-end: 0;
}
}

.accordion__heading {
Expand Down
13 changes: 13 additions & 0 deletions components/02-molecules/link-grid/_yds-link-grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ $component-link-grid-themes: map.deep-get(tokens.$tokens, 'component-themes');
&[data-component-theme='five'] {
--color-link-grid-action: var(--color-slot-two);
}

// if used in the layout component, remove the top margin
[data-component-layout] & {
margin-block-start: 0;
}
}

.link-grid__heading {
Expand Down Expand Up @@ -110,6 +115,14 @@ $component-link-grid-themes: map.deep-get(tokens.$tokens, 'component-themes');
&:first-of-type {
border-width: var(--size-thickness-4);
}

// if used in fifty-fifty layout and min-width 2xl
// make the columns 50% width
[data-component-layout='fifty-fifty'] & {
@media (min-width: tokens.$break-2xl) {
flex: 1 1 50%;
}
}
}

.link-grid__list-item {
Expand Down
41 changes: 40 additions & 1 deletion components/03-organisms/layout/layout.stories.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,56 @@
// Markup.
import twoColumnTwig from './two-column/_two-column--example.twig';
import layoutTwig from './layout/_layout--example.twig';

// Data files
import textData from '../../02-molecules/text/text-field.yml';
import accordionData from '../../02-molecules/accordion/accordion.yml';

// Image atom component - generic images for demo
import imageData from '../../01-atoms/images/image/image.yml';

import '../../02-molecules/accordion/yds-accordion';

/**
* Storybook Definition.
*/
export default {
title: 'Organisms/Layout/Two Column',
title: 'Organisms/Layouts',
parameters: {
layout: 'fullscreen',
},
argTypes: {
divider: {
name: 'Divider',
type: 'boolean',
},
layoutOption: {
name: 'Layout',
type: 'select',
options: ['fifty-fifty', 'thirty-thirty-thirty', 'seventy-thirty'],
control: { type: 'select' },
},
theme: {
name: 'Component Theme',
type: 'select',
options: ['one', 'two', 'three', 'four'],
control: { type: 'select' },
},
},
args: {
divider: false,
layoutOption: 'fifty-fifty',
theme: 'one',
},
};

export const TwoColumn = () => twoColumnTwig(textData);
export const layout = ({ divider, theme, layoutOption }) =>
layoutTwig({
...textData,
...accordionData,
...imageData.responsive_images['4x3'],
layout__divider: divider ? 'true' : 'false',
component__theme: theme,
component__layout: layoutOption,
});
101 changes: 101 additions & 0 deletions components/03-organisms/layout/layout/_layout--example.twig
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
{% extends "@organisms/layout/layout/yds-layout.twig" %}
{% block layout__primary %}
{% include "@molecules/text/yds-text-field.twig" with {
text_field__content: '<h2>Primary Column</h2><h3>The Undergraduate Handbook</h3><p>A comprehensive guide for prospective and current Chemistry Majors, with a complete description of requirements and opportunities.</p><p><a href="#">View the handbook online</a></p><h3>Course List</h3><p>A list of courses and a description of the Chemistry undergraduate program, including information on placement exams, laboratory registration, premedical students, and major requirements</p><p><a href="#">Yale College programs of study</a></p>',
} %}
{% endblock %}
{% block layout__secondary %}
{% if component__layout == 'fifty-fifty' %}
{% include "@molecules/link-grid/yds-link-grid.twig" with {
link_grid__heading: 'Quick Links',
link_grid__theme: 'default',
link_grid__links_one: [
{
link_grid__link__content: 'Undergraduate Handbook',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Course List',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Placement Exams',
link_grid__link__url: '#'
},
],
link_grid__links_two: [
{
link_grid__link__content: 'Laboratory Registration',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Premedical Students',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Major Requirements',
link_grid__link__url: '#'
},
],
link_grid__links_three: [
{
link_grid__link__content: 'Yale College Programs of Study',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Yale College Programs of Study',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Yale College Programs of Study',
link_grid__link__url: '#'
},
],
link_grid__links_four: [
{
link_grid__link__content: 'Yale College Programs of Study',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Yale College Programs of Study',
link_grid__link__url: '#'
},
{
link_grid__link__content: 'Yale College Programs of Study',
link_grid__link__url: '#'
},
],
}%}

{% include "@molecules/accordion/yds-accordion.twig" with {
accordion__heading: 'Accordion Group',
accordion__width: 'site',
accordion__alignment: 'left',
accordion__items: [
{
accordion__item__heading: accordion__item__heading,
accordion__item__content: accordion__item__content
},
{
accordion__item__heading: 'Books',
accordion__item__content: accordion__item__content
},
{
accordion__item__heading: 'Courses',
accordion__item__content: accordion__item__content
},
{
accordion__item__heading: 'Events',
accordion__item__content: accordion__item__content
},
]
} %}
{% else %}
{% include "@molecules/text/yds-text-field.twig" with {
text_field__content: '<h2>Secondary Column</h2><h3>The Undergraduate Handbook</h3><p>A comprehensive guide for prospective and current Chemistry Majors, with a complete description of requirements and opportunities.</p><p><a href="#">View the handbook online</a></p><h3>Course List</h3><p>A list of courses and a description of the Chemistry undergraduate program, including information on placement exams, laboratory registration, premedical students, and major requirements</p><p><a href="#">Yale College programs of study</a></p>',
} %}
{% endif %}
{% endblock %}
{% block layout__tertiary %}
{% include "@atoms/images/image/_responsive-image.twig" %}
{% endblock %}
Loading