mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-24 07:43:47 +00:00
Use searchFooterText slot in typeahead search component
- Create new 'vector-searchsuggest-containing' translation for WVUI search footer text - Use 'search-footer-text' slot in WVUI typeahead search - Remove instances of old 'footerSearchText' prop Bug: T290392 Depends-on: Ic92721d5aaf6b833c882a26e9a60b42ab91546fa Change-Id: I34a184cc8f10172a7ebf67981731c3694d008446
This commit is contained in:
parent
cc8ff2170f
commit
b7728ddda5
|
@ -30,6 +30,7 @@
|
|||
"vector-jumptocontent": "Jump to content",
|
||||
"vector-more-actions": "More",
|
||||
"vector-search-loader": "Loading search suggestions",
|
||||
"vector-searchsuggest-containing": "Search for pages containing <strong class=\"wvui-typeahead-search__suggestions__footer__text__query\">$1</strong>",
|
||||
"vector-intro-page": "Help:Introduction",
|
||||
"vector-anon-user-menu-pages": "Pages for logged out editors",
|
||||
"vector-anon-user-menu-pages-learn": "learn more",
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
"vector-view-viewsource": "Tab label in the Vector skin.\n{{Identical|View source}}",
|
||||
"vector-jumptonavigation": "Accessibility link for jumping to the navigation links. Visually hidden by default.\n\nSee also\n* {{msg-mw|Navigation}}",
|
||||
"vector-jumptosearch": "Accessibility link for jumping to the site search. Visually hidden by default.\n\nSee also\n* {{msg-mw|Search}}",
|
||||
"vector-searchsuggest-containing": "Label used in the special item of the search suggestions list which gives the user an option to perform a full text search for the term. Used in the WVUI typeahead search component.",
|
||||
"vector-jumptocontent": "Accessibility link for jumping to the content and skipping the navigation. Visually hidden by default.",
|
||||
"vector-more-actions": "Label in the Vector skin's menu for the less-important or rarer actions which are not shown as tabs (like moving the page, or for sysops deleting or protecting the page), as well as (for users with a narrow viewing window in their browser) the less-important tab actions which the user's browser is unable to fit in. {{Identical|More}}",
|
||||
"vector-search-loader": "Text to display below search input while the search suggestion module is loading",
|
||||
|
|
|
@ -4,7 +4,6 @@
|
|||
ref="searchForm"
|
||||
:client="getClient"
|
||||
:domain="domain"
|
||||
:footer-search-text="$i18n( 'searchsuggest-containing' ).text()"
|
||||
:suggestions-label="$i18n( 'searchresults' ).text()"
|
||||
:accesskey="searchAccessKey"
|
||||
:title="searchTitle"
|
||||
|
@ -23,14 +22,19 @@
|
|||
@suggestion-click="instrumentation.onSuggestionClick"
|
||||
@submit="onSubmit"
|
||||
>
|
||||
<input type="hidden"
|
||||
name="title"
|
||||
:value="searchPageTitle"
|
||||
>
|
||||
<input type="hidden"
|
||||
name="wprov"
|
||||
:value="wprov"
|
||||
>
|
||||
<template #default>
|
||||
<input type="hidden"
|
||||
name="title"
|
||||
:value="searchPageTitle"
|
||||
>
|
||||
<input type="hidden"
|
||||
name="wprov"
|
||||
:value="wprov"
|
||||
>
|
||||
</template>
|
||||
<template #search-footer-text="{ searchQuery }">
|
||||
<span v-i18n-html:vector-searchsuggest-containing="[ searchQuery ]"></span>
|
||||
</template>
|
||||
</wvui-typeahead-search>
|
||||
</template>
|
||||
|
||||
|
|
Loading…
Reference in a new issue