mediawiki-skins-Citizen/resources/skins.citizen.search/searchQuery.js

22 lines
439 B
JavaScript
Raw Normal View History

function searchQuery() {
return {
value: null,
valueHtml: null,
isValid: false,
setValue: function ( s ) {
this.value = s;
this.valueHtml = mw.html.escape( s );
this.isValid = this.checkValid( s );
},
checkValid: function ( s ) {
return s.length > 0;
},
removeCommand: function ( s ) {
this.setValue( this.value.replace( `/${s} `, '' ) );
}
};
}
/** @module searchQuery */
module.exports = searchQuery;