Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1430776
mw.widgets.SizeFilterWidget.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
mw.widgets.SizeFilterWidget.js
View Options
/*!
* MediaWiki Widgets - SizeFilterWidget class.
*
* @copyright 2011-2018 MediaWiki Widgets Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
(
function
()
{
/**
* @classdesc Size filter widget.
*
* @example
* mw.loader.using( 'mediawiki.widgets.SizeFilterWidget', function () {
* let sf = new mw.widgets.SizeFilterWidget();
* $( document.body ).append( sf.$element );
* } );
*
* @class mw.widgets.SizeFilterWidget
* @extends OO.ui.Widget
* @uses OO.ui.RadioSelectInputWidget
* @uses OO.ui.TextInputWidget
*
* @constructor
* @description Use a RadioSelectInputWidget and a TextInputWidget to set minimum or maximum byte size.
* @param {Object} [config] Configuration options
* @param {Object} [config.radioselectinput] Config for the radio select input
* @param {Object} [config.textinput] Config for the text input
* @param {boolean} [config.selectMin=true] Whether to select 'min', false would select 'max'
*/
mw
.
widgets
.
SizeFilterWidget
=
function
MwWidgetsSizeFilterWidget
(
config
)
{
// Config initialization
config
=
Object
.
assign
(
{
selectMin
:
true
},
config
);
config
.
textinput
=
Object
.
assign
(
{
type
:
'number'
},
config
.
textinput
);
config
.
radioselectinput
=
Object
.
assign
(
{
options
:
[
{
data
:
'min'
,
label
:
mw
.
msg
(
'minimum-size'
)
},
{
data
:
'max'
,
label
:
mw
.
msg
(
'maximum-size'
)
}
]
},
config
.
radioselectinput
);
// Properties
this
.
radioselectinput
=
new
OO
.
ui
.
RadioSelectInputWidget
(
config
.
radioselectinput
);
this
.
textinput
=
new
OO
.
ui
.
TextInputWidget
(
config
.
textinput
);
this
.
label
=
new
OO
.
ui
.
LabelWidget
(
{
label
:
mw
.
msg
(
'pagesize'
)
}
);
// Parent constructor
mw
.
widgets
.
SizeFilterWidget
.
super
.
call
(
this
,
config
);
// Initialization
this
.
radioselectinput
.
setValue
(
config
.
selectMin
?
'min'
:
'max'
);
this
.
$element
.
addClass
(
'mw-widget-sizeFilterWidget'
)
.
append
(
this
.
radioselectinput
.
$element
,
this
.
textinput
.
$element
,
this
.
label
.
$element
);
};
/* Setup */
OO
.
inheritClass
(
mw
.
widgets
.
SizeFilterWidget
,
OO
.
ui
.
Widget
);
/* Static Methods */
/**
* @inheritdoc
*/
mw
.
widgets
.
SizeFilterWidget
.
static
.
reusePreInfuseDOM
=
function
(
node
,
config
)
{
config
=
mw
.
widgets
.
SizeFilterWidget
.
super
.
static
.
reusePreInfuseDOM
(
node
,
config
);
config
.
radioselectinput
=
OO
.
ui
.
RadioSelectInputWidget
.
static
.
reusePreInfuseDOM
(
$
(
node
).
find
(
'.oo-ui-radioSelectInputWidget'
),
config
.
radioselectinput
);
config
.
textinput
=
OO
.
ui
.
TextInputWidget
.
static
.
reusePreInfuseDOM
(
$
(
node
).
find
(
'.oo-ui-textInputWidget'
),
config
.
textinput
);
return
config
;
};
/**
* @inheritdoc
*/
mw
.
widgets
.
SizeFilterWidget
.
static
.
gatherPreInfuseState
=
function
(
node
,
config
)
{
const
state
=
mw
.
widgets
.
SizeFilterWidget
.
super
.
static
.
gatherPreInfuseState
(
node
,
config
);
state
.
radioselectinput
=
OO
.
ui
.
RadioSelectInputWidget
.
static
.
gatherPreInfuseState
(
$
(
node
).
find
(
'.oo-ui-radioSelectInputWidget'
),
config
.
radioselectinput
);
state
.
textinput
=
OO
.
ui
.
TextInputWidget
.
static
.
gatherPreInfuseState
(
$
(
node
).
find
(
'.oo-ui-textInputWidget'
),
config
.
textinput
);
return
state
;
};
/* Methods */
/**
* @inheritdoc
*/
mw
.
widgets
.
SizeFilterWidget
.
prototype
.
restorePreInfuseState
=
function
(
state
)
{
mw
.
widgets
.
SizeFilterWidget
.
super
.
prototype
.
restorePreInfuseState
.
call
(
this
,
state
);
this
.
radioselectinput
.
restorePreInfuseState
(
state
.
radioselectinput
);
this
.
textinput
.
restorePreInfuseState
(
state
.
textinput
);
};
}()
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, May 16, 19:32 (4 h, 6 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9a/ca/2ce53c62d6f3babed5c9b580498c
Default Alt Text
mw.widgets.SizeFilterWidget.js (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment