mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-13 17:57:06 +00:00
d1f1f32418
- Update UserLinks data to wrap link content with spans and other markup changes - Use UserLinks__login.mustache and UserLinks__logout.mustache for rendering UserLink stories - Add new SearchBox story to account for search collapse behavior in modern Vector Change-Id: Ib0abce31db60a0c5c88dea17085e2974ac5112b5
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
/**
|
|
* @external SearchData
|
|
*/
|
|
|
|
import searchBoxTemplate from '!!raw-loader!../includes/templates/SearchBox.mustache';
|
|
import { htmlUserLanguageAttributes } from './utils';
|
|
|
|
/**
|
|
* @type {SearchData}
|
|
*/
|
|
const legacySearchBoxData = {
|
|
'form-action': '/w/index.php',
|
|
class: 'vector-search-box vector-search-show-thumbnail',
|
|
'html-user-language-attributes': htmlUserLanguageAttributes,
|
|
'msg-search': 'Search',
|
|
'html-input': '<input type="search" name="search" placeholder="Search Wikipedia" title="Search Wikipedia [⌃⌥f]" accesskey="f" id="searchInput" autocomplete="off">',
|
|
'page-title': 'Special:Search',
|
|
'html-button-search-fallback': '<input type="submit" name="fulltext" value="Search" title="Search pages for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton"/>',
|
|
'html-button-search': '<input type="submit" name="go" value="Go" title="Go to a page with this exact name if it exists" id="searchButton" class="searchButton">'
|
|
};
|
|
|
|
/**
|
|
* @type {SearchData}
|
|
*/
|
|
const searchBoxData = Object.assign( {}, legacySearchBoxData, {
|
|
class: 'vector-search-box vector-search-show-thumbnail vector-search-box-collapses',
|
|
'is-collapsible': true,
|
|
'href-search': '/wiki/Special:Search'
|
|
} );
|
|
|
|
export {
|
|
searchBoxTemplate,
|
|
legacySearchBoxData,
|
|
searchBoxData
|
|
};
|