mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 15:17:53 -05:00
Merge pull request #3583 from picklesrus/footer-stuff
Add recognition text and links to the bottom of the page.
This commit is contained in:
commit
52ae6f791e
7 changed files with 117 additions and 4 deletions
36
src/components/page/www/donor-recognition.jsx
Normal file
36
src/components/page/www/donor-recognition.jsx
Normal file
|
@ -0,0 +1,36 @@
|
|||
const FormattedMessage = require('react-intl').FormattedMessage;
|
||||
const injectIntl = require('react-intl').injectIntl;
|
||||
const React = require('react');
|
||||
|
||||
require('./donor-recognition.scss');
|
||||
|
||||
const DonorRecognition = () => (
|
||||
<div id="donor-text">
|
||||
<div>
|
||||
<FormattedMessage
|
||||
id="footer.donorRecognition"
|
||||
values={{
|
||||
donorLink: (
|
||||
<a
|
||||
href="/credits#donors"
|
||||
>
|
||||
<FormattedMessage id="footer.donors" />
|
||||
</a>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<FormattedMessage
|
||||
id="footer.donorList"
|
||||
values={{
|
||||
donor1: 'Massachusetts Institue of Technology',
|
||||
donor2: 'National Science Foundation',
|
||||
donor3: 'Siegel Family Endowment'
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
module.exports = injectIntl(DonorRecognition);
|
38
src/components/page/www/donor-recognition.scss
Normal file
38
src/components/page/www/donor-recognition.scss
Normal file
|
@ -0,0 +1,38 @@
|
|||
@import "../../../colors";
|
||||
@import "../../../frameless";
|
||||
|
||||
#donor {
|
||||
color: $type-gray;
|
||||
font-size: .875rem;
|
||||
line-height: 1.5em;
|
||||
background-color: $ui-gray;
|
||||
padding-bottom: 2.5rem;
|
||||
padding-top: 1rem;
|
||||
#donor-text {
|
||||
text-align: center;
|
||||
width: $cols12;
|
||||
margin: 0 auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: $tabletPortrait) and (max-width: $desktop) {
|
||||
#donor {
|
||||
#donor-text {
|
||||
width: $cols11;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: $mobile) and (max-width: $tabletPortrait) {
|
||||
#donor {
|
||||
#donor-text {
|
||||
width: $cols6;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: $mobile) {
|
||||
#donor {
|
||||
#donor-text {
|
||||
width: $cols4;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -4,11 +4,13 @@ const React = require('react');
|
|||
|
||||
const Navigation = require('../../navigation/www/navigation.jsx');
|
||||
const Footer = require('../../footer/www/footer.jsx');
|
||||
const DonorRecognition = require('./donor-recognition.jsx');
|
||||
const ErrorBoundary = require('../../errorboundary/errorboundary.jsx');
|
||||
|
||||
const Page = ({
|
||||
children,
|
||||
className
|
||||
className,
|
||||
showDonorRecognition
|
||||
}) => (
|
||||
<ErrorBoundary componentName="Page">
|
||||
<div className={classNames('page', className)}>
|
||||
|
@ -26,13 +28,19 @@ const Page = ({
|
|||
<div id="footer">
|
||||
<Footer />
|
||||
</div>
|
||||
{showDonorRecognition &&
|
||||
<div id="donor">
|
||||
<DonorRecognition />
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
</ErrorBoundary>
|
||||
);
|
||||
|
||||
Page.propTypes = {
|
||||
children: PropTypes.node,
|
||||
className: PropTypes.string
|
||||
className: PropTypes.string,
|
||||
showDonorRecognition: PropTypes.bool
|
||||
};
|
||||
|
||||
module.exports = Page;
|
||||
|
|
|
@ -122,6 +122,9 @@
|
|||
|
||||
"footer.discuss": "Discussion Forums",
|
||||
"footer.scratchFamily": "Scratch Family",
|
||||
"footer.donorRecognition": "Scratch is available for free, thanks to generous support from our {donorLink}. We are grateful to our Founding Partners:",
|
||||
"footer.donors": "donors",
|
||||
"footer.donorList": "{donor1}, {donor2}, and {donor3}",
|
||||
|
||||
"form.validationRequired": "This field is required",
|
||||
|
||||
|
|
|
@ -54,7 +54,10 @@ const Credits = () => (
|
|||
))}
|
||||
</ul>
|
||||
</div>
|
||||
<div className="supporters">
|
||||
<div
|
||||
className="supporters"
|
||||
id="donors"
|
||||
>
|
||||
<div className="mid-header">
|
||||
<h2>
|
||||
<FormattedMessage id="credits.currentSponsors" />
|
||||
|
|
|
@ -271,7 +271,11 @@ const ConnectedSplash = connect(
|
|||
)(Splash);
|
||||
|
||||
render(
|
||||
<Page><ConnectedSplash /></Page>,
|
||||
<Page
|
||||
showDonorRecognition
|
||||
>
|
||||
<ConnectedSplash />
|
||||
</Page>,
|
||||
document.getElementById('app'),
|
||||
{splash: splashActions.splashReducer}
|
||||
);
|
||||
|
|
21
test/unit/components/page.test.jsx
Normal file
21
test/unit/components/page.test.jsx
Normal file
|
@ -0,0 +1,21 @@
|
|||
const React = require('react');
|
||||
const {shallowWithIntl} = require('../../helpers/intl-helpers.jsx');
|
||||
const Page = require('../../../src/components/page/www/page.jsx');
|
||||
|
||||
describe('Page', () => {
|
||||
test('Do not show donor recognition', () => {
|
||||
const component = shallowWithIntl(
|
||||
<Page />
|
||||
);
|
||||
expect(component.find('#donor')).toHaveLength(0);
|
||||
});
|
||||
|
||||
test('Show donor recognition', () => {
|
||||
const component = shallowWithIntl(
|
||||
<Page
|
||||
showDonorRecognition
|
||||
/>
|
||||
);
|
||||
expect(component.find('#donor')).toHaveLength(1);
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue