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

Better press page #196

Merged
merged 36 commits into from
Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
28d8c96
Better Styling for press page
dirtyredz Oct 3, 2018
608e1b8
Added 3 lists for the "In The News" section.
dirtyredz Oct 3, 2018
79b2ebc
Update Button test for onClick
dirtyredz Oct 3, 2018
7bcd8c4
Tests for PressLinks components
dirtyredz Oct 3, 2018
3e40e85
Merge from master
dirtyredz Oct 3, 2018
8201dea
Move PressLinks into Press
dirtyredz Oct 3, 2018
bbc413a
Use proper press import
dirtyredz Oct 3, 2018
dd5cae3
Ignore Links data structure
dirtyredz Oct 3, 2018
c8bf708
Merge branch 'master' into BetterPressPage
dirtyredz Oct 3, 2018
cd0ab2c
Merge branch 'master' into BetterPressPage
dirtyredz Oct 3, 2018
1c39db4
Merge branch 'master' into BetterPressPage
kylemh Oct 3, 2018
361aca7
Merge branch 'master' into BetterPressPage
kylemh Oct 3, 2018
4886c07
Merge branch 'master' into BetterPressPage
kylemh Oct 3, 2018
8c0728a
Merge branch 'master' into BetterPressPage
dirtyredz Oct 3, 2018
16cb650
Changes for project consistancy and readability
dirtyredz Oct 3, 2018
0945f7c
Press Articles readability, and fixed tests
dirtyredz Oct 3, 2018
b143fb4
Pass aria and data attributes to button
dirtyredz Oct 3, 2018
ed500fa
Nested Class instead of element class (still winning the war)
dirtyredz Oct 3, 2018
e53cabd
Using datum prop button
dirtyredz Oct 3, 2018
eab9302
Asc Order on objects
dirtyredz Oct 3, 2018
970e76b
Check if prop actually exists
dirtyredz Oct 3, 2018
c15cf7c
Moved ArticleItem to its own directory and renamed ArticleGroup
dirtyredz Oct 3, 2018
9a5f669
Use module resolved paths instead of relative paths
kylemh Oct 3, 2018
b9c0f9f
Rename component class
kylemh Oct 3, 2018
5ad37dc
Rename test suite
kylemh Oct 3, 2018
404d84b
Update ArticleGroup.test.js.snap
kylemh Oct 3, 2018
0c7d7e5
Dont use snapshot in data and aria testing
dirtyredz Oct 3, 2018
55e18a2
Use Region and Article for easier readability
dirtyredz Oct 3, 2018
7cc32a3
Remove dead comments and simplify rendering logic
kylemh Oct 3, 2018
5c34b9c
Specify disabled rule and use resolved path
kylemh Oct 3, 2018
fc0af68
Resolve lint error and rendering error
kylemh Oct 3, 2018
2ab4333
Put missing required prop in test case
kylemh Oct 3, 2018
5b08534
Retry the refactor 😅
kylemh Oct 3, 2018
dce7e88
Add required prop to <OutboundLink /> on <ArticleGroup />
kylemh Oct 3, 2018
03a1542
Updated Snap
dirtyredz Oct 3, 2018
cc2c97d
Merge branch 'master' into BetterPressPage
kylemh Oct 3, 2018
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
1 change: 1 addition & 0 deletions common/styles/globalStyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ body {
line-height: 1.5;
hyphens: none;
margin: 0;
min-width: 300px;
}

h1,
Expand Down
52 changes: 52 additions & 0 deletions common/utils/__tests__/prop-utils.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/* eslint-env jest */
import { getPropsStartingWith, getDataAttributes, getAriaAttributes } from '../prop-utils';

describe('getPropsStartingWith', () => {
test('should return the props that start with the given string', () => {
const props = {
'test-1': 'test',
'test-2': 'test 2',
'another-prop': 'test 3',
};

const result = getPropsStartingWith('test-', props);
expect(result).toEqual({
'test-1': 'test',
'test-2': 'test 2',
});
});
});

describe('getDataAttributes', () => {
test('should return only the props that start with `data-`', () => {
const props = {
'data-ci': 'ci',
'data-gtm': 'gtm',
children: 'test children',
};

const result = getDataAttributes(props);

expect(result).toEqual({
'data-ci': 'ci',
'data-gtm': 'gtm',
});
});
});

describe('getAriaAttributes', () => {
test('should return only the props that start with `aria-`', () => {
const props = {
'aria-label': 'a11y rocks!',
'aria-checked': 'true',
children: 'test children',
};

const result = getAriaAttributes(props);

expect(result).toEqual({
'aria-label': 'a11y rocks!',
'aria-checked': 'true',
});
});
});
14 changes: 14 additions & 0 deletions common/utils/prop-utils.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// General utilities for dealing with component prop types
import pickBy from 'lodash/pickBy';

export function getPropsStartingWith(string, props) {
return pickBy(props, (value, key) => key.startsWith(string));
}

export function getDataAttributes(props) {
return getPropsStartingWith('data-', props);
}

export function getAriaAttributes(props) {
return getPropsStartingWith('aria-', props);
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,11 @@ exports[`ImageCard should render properly with some props assigned 1`] = `
}
}
className=""
datum=""
disabled={false}
fullWidth={false}
href="https://www.testlink.com"
onClick={[Function]}
tabIndex={0}
theme="primary"
type="button"
Expand Down
3 changes: 2 additions & 1 deletion components/Press/CivicXBadge/CivicXBadge.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ CivicXBadge.defaultProps = {
sourceUrl: 'http://cvcx.org/veterans-solutions-lab/',
};

function CivicXBadge({ sourceUrl = 'http://cvcx.org/veterans-solutions-lab/' }) {
function CivicXBadge({ sourceUrl }) {
return (
<div>
<OutboundLink
hasIcon={false}
href={sourceUrl}
analyticsEventLabel={`[CivicX Accelerator Badge] ${sourceUrl}`}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exports[`CivicXBadge it should render properly no props 1`] = `
<OutboundLink
analyticsEventLabel="[CivicX Accelerator Badge] http://cvcx.org/veterans-solutions-lab/"
className=""
hasIcon={true}
hasIcon={false}
href="http://cvcx.org/veterans-solutions-lab/"
>
<img
Expand Down
15 changes: 15 additions & 0 deletions components/Press/PressLinks/ArticleGroup/ArticleGroup.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.articlesGroup > h2 {
text-align: center;
}

.articlesGroup {
max-width: 375px;
padding-top: 15px;
}

.articlesGroup .areAllLinksVisibleButton {
min-width: 100px;
line-height: 0.5;
font-size: 0.9rem;
margin: auto;
}
64 changes: 64 additions & 0 deletions components/Press/PressLinks/ArticleGroup/ArticleGroup.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import OutboundLink from 'components/_common_/OutboundLink/OutboundLink';
import Button from 'components/_common_/Button/Button';
import styles from './ArticleGroup.css';

class ArticleGroup extends Component {
static propTypes = {
articles: PropTypes.arrayOf(
PropTypes.shape({
title: PropTypes.string.isRequired,
url: PropTypes.string.isRequired,
}),
).isRequired,
numberOfInitiallyVisibleLinks: PropTypes.number.isRequired,
region: PropTypes.string.isRequired,
};

state = {
areAllLinksVisible: false,
};

clickHandler = () => {
this.setState(prevState => ({ areAllLinksVisible: !prevState.areAllLinksVisible }));
};

render() {
const { areAllLinksVisible } = this.state;
const { articles, region, numberOfInitiallyVisibleLinks } = this.props;
return (
<div className={styles.articlesGroup}>
<h2>{region}</h2>
<ul>
{articles.map((link, index) => {
const isArticleVisible = areAllLinksVisible || index < numberOfInitiallyVisibleLinks;

return isArticleVisible ? (
<li key={`GroupLink_${link.url}`}>
<OutboundLink
href={link.url}
analyticsEventLabel="Press Article"
>
{link.title}
</OutboundLink>
</li>
) : null;
})}
</ul>
{articles.length > numberOfInitiallyVisibleLinks && (
<Button
aria-pressed={areAllLinksVisible}
className={styles.areAllLinksVisibleButton}
theme={areAllLinksVisible ? 'slate' : 'primary'}
onClick={this.clickHandler}
>
{areAllLinksVisible ? 'Show Less' : 'Show All'}
</Button>
)}
</div>
);
}
}

export default ArticleGroup;
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
import React from 'react';
import createShallowSnapshotTest from 'test-utils/createShallowSnapshotTest';
import { mount, shallow } from 'enzyme';

import ArticleGroup from '../ArticleGroup';

describe('ArticleGroup', () => {
test('should render properly with required props', () =>
createShallowSnapshotTest(
<ArticleGroup
region="test"
articles={[{ title: 'Example', url: 'https://example.com' }]}
numberOfInitiallyVisibleLinks={1}
/>,
));

test('should render properly with required props and 3 links and a button', () =>
createShallowSnapshotTest(
<ArticleGroup
region="test"
articles={[
{ title: 'Example', url: 'https://example.com' },
{ title: 'Example', url: 'https://example.com' },
{ title: 'Example', url: 'https://example.com' },
]}
numberOfInitiallyVisibleLinks={1}
/>,
));

test('should setState when clicking Show All button', () => {
const ArticleGroupShallowInstance = shallow(
<ArticleGroup
region="test"
articles={[
{ title: 'Example', url: 'https://example.com' },
{ title: 'Example', url: 'https://example.com' },
{ title: 'Example', url: 'https://example.com' },
]}
numberOfInitiallyVisibleLinks={1}
/>,
);

ArticleGroupShallowInstance.instance().clickHandler();

expect(ArticleGroupShallowInstance.state().areAllLinksVisible).toEqual(true);
});

test('should not create a button if not enough links', () => {
const wrap = mount(
<ArticleGroup
region="test"
articles={[{ title: 'Example', url: 'https://example.com' }]}
numberOfInitiallyVisibleLinks={5}
/>,
);

expect(wrap.find('button').exists()).toEqual(false);
});

test('should create a button if enough links are available', () => {
const wrap = mount(
<ArticleGroup
region="test"
articles={[
{ title: 'Example', url: 'https://example.com' },
{ title: 'Example', url: 'https://example.com' },
{ title: 'Example', url: 'https://example.com' },
]}
numberOfInitiallyVisibleLinks={1}
/>,
);

expect(wrap.find('button').exists()).toEqual(true);
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`ArticleGroup should render properly with required props 1`] = `
<div
className="articlesGroup"
>
<h2>
test
</h2>
<ul>
<li>
<OutboundLink
analyticsEventLabel="Press Article"
className=""
hasIcon={true}
href="https://example.com"
>
Example
</OutboundLink>
</li>
</ul>
</div>
`;

exports[`ArticleGroup should render properly with required props and 3 links and a button 1`] = `
<div
className="articlesGroup"
>
<h2>
test
</h2>
<ul>
<li>
<OutboundLink
analyticsEventLabel="Press Article"
className=""
hasIcon={true}
href="https://example.com"
>
Example
</OutboundLink>
</li>
</ul>
<Button
analyticsObject={
Object {
"action": "Button Selected",
"category": "Interactions",
}
}
aria-pressed={false}
className="areAllLinksVisibleButton"
datum=""
disabled={false}
fullWidth={false}
onClick={[Function]}
tabIndex={0}
theme="primary"
type="button"
>
Show All
</Button>
</div>
`;
Loading