mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-05 14:22:56 +00:00
ea2bcd44f2
- Update package.json with the new dependencies. - A script storybook.sh pulls down CSS and LESS imports from external dependencies. This copies the approach taken in Popups and MobileFrontend. - Icons from external repos are maintained within the repo in SVG-only form. Using load.php modules is also possible, but will pull down other unnecessary icons and break if any of these modules are changed. Decided that we should manually maintain these for the time being given there are only 3 icons. - Several LESS files now import the variables file. I think it's useful for stories to only import the CSS they use as this encourages us to modularise our CSS. Before these imports were not necessary as they inherit imports from index.less. This will have no impact on the bundle size as the LESS compiler silently discards duplicate imports - stories/utils.js provides a useful placeholder function for generalising our hook entry points. Bug: T242674 Change-Id: I722e84d2fb57653a2f96142dc3e5248043261746
20 lines
1 KiB
JavaScript
20 lines
1 KiB
JavaScript
import mustache from 'mustache';
|
|
import searchBox from '!!raw-loader!../includes/templates/SearchBox.mustache';
|
|
import '../resources/skins.vector.styles/search.less';
|
|
import '../.storybook/common.less';
|
|
|
|
export default {
|
|
title: 'Search'
|
|
};
|
|
|
|
export const simpleSearch = () => mustache.render( searchBox, {
|
|
searchActionURL: '/w/index.php',
|
|
searchHeaderAttrsHTML: 'dir="ltr" lang="en-GB"',
|
|
searchInputLabel: 'Search',
|
|
searchDivID: 'simpleSearch',
|
|
searchInputHTML: '<input type="search" name="search" placeholder="Search Wikipedia" title="Search Wikipedia [⌃⌥f]" accesskey="f" id="searchInput" autocomplete="off">',
|
|
titleHTML: '<input type="hidden" value="Special:Search" name="title">',
|
|
fallbackSearchButtonHTML: '<input type="submit" name="fulltext" value="Search" title="Search pages for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton"/>',
|
|
searchButtonHTML: '<input type="submit" name="go" value="Go" title="Go to a page with this exact name if it exists" id="searchButton" class="searchButton">'
|
|
} );
|