mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
Merge pull request #4121 from apple502j/wiki-link
Set wiki link per user's selected language
This commit is contained in:
commit
21ccd45f9b
3 changed files with 55 additions and 3 deletions
|
@ -2,12 +2,15 @@ const FormattedMessage = require('react-intl').FormattedMessage;
|
|||
const injectIntl = require('react-intl').injectIntl;
|
||||
const intlShape = require('react-intl').intlShape;
|
||||
const MediaQuery = require('react-responsive').default;
|
||||
const connect = require('react-redux').connect;
|
||||
const PropTypes = require('prop-types');
|
||||
const React = require('react');
|
||||
|
||||
const FooterBox = require('../container/footer.jsx');
|
||||
const LanguageChooser = require('../../languagechooser/languagechooser.jsx');
|
||||
|
||||
const frameless = require('../../../lib/frameless');
|
||||
const getScratchWikiLink = require('../../../lib/scratch-wiki');
|
||||
|
||||
require('./footer.scss');
|
||||
|
||||
|
@ -108,7 +111,7 @@ const Footer = props => (
|
|||
</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="https://en.scratch-wiki.info/">
|
||||
<a href={props.scratchWikiLink}>
|
||||
<FormattedMessage id="general.wiki" />
|
||||
</a>
|
||||
</dd>
|
||||
|
@ -213,7 +216,13 @@ const Footer = props => (
|
|||
);
|
||||
|
||||
Footer.propTypes = {
|
||||
intl: intlShape.isRequired
|
||||
intl: intlShape.isRequired,
|
||||
scratchWikiLink: PropTypes.string
|
||||
};
|
||||
|
||||
module.exports = injectIntl(Footer);
|
||||
const mapStateToProps = (state, ownProps) => ({
|
||||
scratchWikiLink: getScratchWikiLink(ownProps.intl.locale)
|
||||
});
|
||||
|
||||
const ConnectedFooter = connect(mapStateToProps)(Footer);
|
||||
module.exports = injectIntl(ConnectedFooter);
|
||||
|
|
24
src/lib/scratch-wiki.js
Normal file
24
src/lib/scratch-wiki.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
// This list has to be updated when a new Scratch Wiki is made.
|
||||
// Note that wikis under testwiki are not included.
|
||||
const wwwLocaleToScratchWikiLocale = {
|
||||
en: 'en',
|
||||
ja: 'ja',
|
||||
fr: 'fr',
|
||||
de: 'de',
|
||||
ru: 'ru',
|
||||
hu: 'hu',
|
||||
nl: 'nl',
|
||||
id: 'id'
|
||||
};
|
||||
|
||||
const getScratchWikiLink = locale => {
|
||||
if (!wwwLocaleToScratchWikiLocale.hasOwnProperty(locale)) {
|
||||
locale = locale.split('-')[0];
|
||||
if (!wwwLocaleToScratchWikiLocale.hasOwnProperty(locale)) {
|
||||
locale = 'en';
|
||||
}
|
||||
}
|
||||
return `https://${wwwLocaleToScratchWikiLocale[locale]}.scratch-wiki.info/`;
|
||||
};
|
||||
|
||||
module.exports = getScratchWikiLink;
|
19
test/unit/lib/scratch-wiki.test.js
Normal file
19
test/unit/lib/scratch-wiki.test.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
const getScratchWikiLink = require('../../../src/lib/scratch-wiki');
|
||||
|
||||
describe('unit test lib/scratch-wiki.js', () => {
|
||||
test('getScratchWikiLink exists', () => {
|
||||
expect(typeof getScratchWikiLink).toBe('function');
|
||||
});
|
||||
|
||||
test('it returns link to jawiki when ja is given', () => {
|
||||
expect(getScratchWikiLink('ja')).toBe('https://ja.scratch-wiki.info/');
|
||||
});
|
||||
|
||||
test('it returns link to jawiki when ja-Hira is given', () => {
|
||||
expect(getScratchWikiLink('ja-Hira')).toBe('https://ja.scratch-wiki.info/');
|
||||
});
|
||||
|
||||
test('it returns link to enwiki when invalid locale is given', () => {
|
||||
expect(getScratchWikiLink('test')).toBe('https://en.scratch-wiki.info/');
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue