mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-12 09:21:11 +00:00
8d8e2d85e6
* Add mediawiki ui button styles to Vector and convert language button to a quiet button * Restore the arrow for language button with ULS * Vertically align button to first line of header * Add a storybook entry for LanguageButton Additional changes: * Fix issues revealed by storybook - menu dropdown should reset generic typography rule for `ul` tags * Allow quotes usage in storybook without disable rule Bug: T268241 Change-Id: I483350084fb46a51c50af6aab78c62db6d02df89
85 lines
3.1 KiB
JavaScript
85 lines
3.1 KiB
JavaScript
import { htmlUserLanguageAttributes } from './utils';
|
|
import footerTemplate from '!!raw-loader!../includes/templates/Footer.mustache';
|
|
import footerRowTemplate from '!!raw-loader!../includes/templates/Footer__row.mustache';
|
|
|
|
export const FOOTER_TEMPLATE_PARTIALS = {
|
|
// eslint-disable-next-line camelcase
|
|
Footer__row: footerRowTemplate
|
|
};
|
|
|
|
const
|
|
FOOTER_INFO = {
|
|
id: 'footer-info',
|
|
'array-items': [
|
|
{
|
|
id: 'footer-info-lastmod',
|
|
html: 'This page was last modified on 10 January 2020, at 21:24.'
|
|
},
|
|
{
|
|
id: 'footer-info-copyright',
|
|
html: `This text is available under the <a href="https://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-ShareAlike Licence</a>;
|
|
additional terms may apply. See <a href="https://foundation.wikimedia.org/wiki/Special:MyLanguage/Terms_of_Use">Terms of Use</a> for details.`
|
|
|
|
}
|
|
]
|
|
},
|
|
FOOTER_PLACES = {
|
|
id: 'footer-places',
|
|
'array-items': [
|
|
{
|
|
id: 'footer-places-privacy',
|
|
html: `<a href="https://foundation.wikimedia.org/wiki/Privacy_policy" class="extiw" title="wmf:Privacy policy">Privacy policy</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-about',
|
|
html: `<a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-disclaimer',
|
|
html: `<a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-contact',
|
|
html: `<a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-developers',
|
|
html: `<a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-statslink',
|
|
html: `<a href="https://stats.wikimedia.org/v2/#/en.wikipedia.org">Statistics</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-cookiestatement',
|
|
html: `<a href="https://foundation.wikimedia.org/wiki/Cookie_statement">Cookie statement</a>`
|
|
},
|
|
{
|
|
id: 'footer-places-mobileview',
|
|
html: `<a href="//en.m.wikipedia.org/w/index.php?title=Paris&useskin=vector&mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobile view</a>`
|
|
}
|
|
]
|
|
},
|
|
FOOTER_ICONS = {
|
|
id: 'footer-icons',
|
|
'array-items': [
|
|
{
|
|
id: 'footer-copyrightico',
|
|
html: `<a href="https://wikimediafoundation.org/"><img src="https://wikipedia.org/static/images/wikimedia-button.png" srcset="https://wikipedia.org/static/images/wikimedia-button-1.5x.png 1.5x, https://wikipedia.org/static/images/wikimedia-button-2x.png 2x" width="88" height="31" alt="Wikimedia Foundation"/></a>`
|
|
},
|
|
{
|
|
id: 'footer-poweredbyico',
|
|
html: `<a href="https://www.mediawiki.org/"><img src="https://wikipedia.org/static/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="https://wikipedia.org/static/images/poweredby_mediawiki_132x47.png 1.5x, https://wikipedia.org/static/images/poweredby_mediawiki_176x62.png 2x" width="88" height="31"/></a>`
|
|
}
|
|
]
|
|
};
|
|
|
|
export { footerTemplate };
|
|
|
|
export const FOOTER_TEMPLATE_DATA = {
|
|
'html-user-language-attributes': htmlUserLanguageAttributes,
|
|
'data-info': FOOTER_INFO,
|
|
'data-places': FOOTER_PLACES,
|
|
'data-icons': FOOTER_ICONS
|
|
};
|