/* * This file is part of the MediaWiki extension MultimediaViewer. * * MultimediaViewer 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 2 of the License, or * (at your option) any later version. * * MultimediaViewer 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 MultimediaViewer. If not, see . */ ( function () { /** * A helper class for reuse logic. */ class Utils { /** * Creates header from given options. * * @param {string} text * @return {jQuery} */ static createHeader( text ) { const $header = $( '
' ).addClass( 'cdx-dialog__header' ); $( '

' ) .addClass( 'cdx-dialog__header__title' ) .text( text ) .appendTo( $header ); return $header; } /** * Creates input element with copy button from given options. * * @param {string} title * @param {string} placeholder * @return {jQuery[]} [$input, $div] */ static createInputWithCopy( title, placeholder ) { const $input = $( '' ) .addClass( 'cdx-text-input__input' ) .attr( 'placeholder', placeholder ); const $copyButton = $( '