Proyectos de Subversion Moodle

Rev

Rev 1 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

{{!
    This file is part of Moodle - http://moodle.org/

    Moodle is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Moodle is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
}}
{{!
    @template core/search_input_navbar

    Navbar search input template.

    Example context (json):
    {
        "action": "https://moodle.local/admin/search.php",
        "inputname": "search",
        "searchstring": "Search",
        "hiddenfields": [
            {
                "name": "cmid",
                "value": "11"
            }
        ]
    }
}}
<div id="searchinput-navbar-{{uniqid}}" class="simplesearchform">
    <div class="collapse" id="searchform-navbar">
        <form autocomplete="off" action="{{{ action }}}" method="get" accept-charset="utf-8" class="mform d-flex flex-wrap align-items-center searchform-navbar">
            {{#hiddenfields}}
                <input type="hidden" name="{{ name }}" value="{{ value }}">
            {{/hiddenfields}}
            <div class="input-group" {{#grouplabel}}role="group" aria-labelledby="searchgrouplabel-{{uniqid}}"{{/grouplabel}}>
                {{#grouplabel}}
                    <span id="searchgrouplabel-{{uniqid}}" class="visually-hidden">{{{ . }}}</span>
                {{/grouplabel}}
                <input type="text"
                    id="searchinput-{{uniqid}}"
                    class="form-control withclear"
                    placeholder="{{{ searchstring }}}"
                    aria-label="{{{ searchstring }}}"
                    name="{{{ inputname }}}"
                    data-region="input"
                    autocomplete="off"
                >
                <label for="searchinput-{{uniqid}}">
                    <span class="visually-hidden">{{{ searchstring }}}</span>
                </label>
                <a class="btn btn-close"
                    data-action="closesearch"
                    data-bs-toggle="collapse"
                    href="#searchform-navbar"
                    role="button"
                    title="{{#str}} closebuttontitle {{/str}}"
                >
                    <span class="visually-hidden">{{#str}} closebuttontitle {{/str}}</span>
                </a>
                <button type="submit" class="btn btn-submit" data-action="submit" title="{{#str}}performsearch, search{{/str}}">
                    {{#pix}} a/search, core {{/pix}}
                    <span class="visually-hidden">{{#str}}performsearch, search{{/str}}</span>
                </button>
            </div>
        </form>
    </div>
    <a
        class="rounded-0 nav-link icon-no-margin"
        data-bs-toggle="collapse"
        data-action="opensearch"
        href="#searchform-navbar"
        role="button"
        aria-expanded="false"
        aria-controls="searchform-navbar"
        title="{{#str}} togglesearch {{/str}}"
    >
        {{#pix}} a/search, core {{/pix}}
        <span class="visually-hidden">{{#str}} togglesearch {{/str}}</span>
    </a>
</div>

{{#js}}
require(
[
    'jquery',
],
function(
    $
) {
    const container = document.getElementById('searchform-navbar');
    const opensearch = container.parentElement.querySelector('[data-action="opensearch"]');
    const input = container.querySelector('[data-region="input"]');
    const submit = container.querySelector('[data-action="submit"]');

    submit.addEventListener('click', (e) => {
        if (input.valUE === '') {
            e.preventDefault();
        }
    });

    container.addEventListener('hidden.bs.collapse', () => {
        opensearch.classList.remove('d-none');
        input.value = '';
    });

    container.addEventListener('show.bs.collapse', () => {
        opensearch.classList.add('d-none');
    });

    container.addEventListener('shown.bs.collapse', () => {
        input.focus();
    });
});
{{/js}}