Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4101649
FilterMenuHeaderWidget.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
6 KB
Referenced Files
None
Subscribers
None
FilterMenuHeaderWidget.js
View Options
/**
* Menu header for the RCFilters filters menu.
*
* @class mw.rcfilters.ui.FilterMenuHeaderWidget
* @ignore
* @extends OO.ui.Widget
*
* @param {mw.rcfilters.Controller} controller Controller
* @param {mw.rcfilters.dm.FiltersViewModel} model View model
* @param {Object} config Configuration object
* @param {jQuery} [config.$overlay] A jQuery object serving as overlay for popups
*/
const
FilterMenuHeaderWidget
=
function
MwRcfiltersUiFilterMenuHeaderWidget
(
controller
,
model
,
config
)
{
config
=
config
||
{};
this
.
controller
=
controller
;
this
.
model
=
model
;
this
.
$overlay
=
config
.
$overlay
||
this
.
$element
;
// Parent
FilterMenuHeaderWidget
.
super
.
call
(
this
,
config
);
OO
.
ui
.
mixin
.
LabelElement
.
call
(
this
,
Object
.
assign
(
{
label
:
mw
.
msg
(
'rcfilters-filterlist-title'
),
$label
:
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-title'
)
},
config
)
);
// "Back" to default view button
this
.
backButton
=
new
OO
.
ui
.
ButtonWidget
(
{
icon
:
'previous'
,
framed
:
false
,
title
:
mw
.
msg
(
'rcfilters-view-return-to-default-tooltip'
),
classes
:
[
'mw-rcfilters-ui-filterMenuHeaderWidget-backButton'
]
}
);
this
.
backButton
.
toggle
(
this
.
model
.
getCurrentView
()
!==
'default'
);
// Help icon for Tagged edits
this
.
helpIcon
=
new
OO
.
ui
.
ButtonWidget
(
{
icon
:
'helpNotice'
,
framed
:
false
,
title
:
mw
.
msg
(
'rcfilters-view-tags-help-icon-tooltip'
),
classes
:
[
'mw-rcfilters-ui-filterMenuHeaderWidget-helpIcon'
],
href
:
mw
.
util
.
getUrl
(
'Special:Tags'
),
target
:
'_blank'
}
);
this
.
helpIcon
.
toggle
(
this
.
model
.
getCurrentView
()
===
'tags'
);
// Highlight button
this
.
highlightButton
=
new
OO
.
ui
.
ToggleButtonWidget
(
{
icon
:
'highlight'
,
label
:
mw
.
msg
(
'rcfilters-highlightbutton-title'
),
classes
:
[
'mw-rcfilters-ui-filterMenuHeaderWidget-hightlightButton'
]
}
);
// Invert buttons
this
.
invertTagsButton
=
new
OO
.
ui
.
ToggleButtonWidget
(
{
icon
:
''
,
classes
:
[
'mw-rcfilters-ui-filterMenuHeaderWidget-invertTagsButton'
]
}
);
this
.
invertTagsButton
.
toggle
(
this
.
model
.
getCurrentView
()
===
'tags'
);
this
.
invertNamespacesButton
=
new
OO
.
ui
.
ToggleButtonWidget
(
{
icon
:
''
,
classes
:
[
'mw-rcfilters-ui-filterMenuHeaderWidget-invertNamespacesButton'
]
}
);
this
.
invertNamespacesButton
.
toggle
(
this
.
model
.
getCurrentView
()
===
'namespaces'
);
// Events
this
.
backButton
.
connect
(
this
,
{
click
:
'onBackButtonClick'
}
);
this
.
highlightButton
.
connect
(
this
,
{
click
:
'onHighlightButtonClick'
}
);
this
.
invertTagsButton
.
connect
(
this
,
{
click
:
'onInvertTagsButtonClick'
}
);
this
.
invertNamespacesButton
.
connect
(
this
,
{
click
:
'onInvertNamespacesButtonClick'
}
);
this
.
model
.
connect
(
this
,
{
highlightChange
:
'onModelHighlightChange'
,
searchChange
:
'onModelSearchChange'
,
initialize
:
'onModelInitialize'
}
);
this
.
view
=
this
.
model
.
getCurrentView
();
// Initialize
this
.
$element
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget'
)
.
append
(
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-table'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-header'
)
.
append
(
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-row'
)
.
append
(
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-cell'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-header-back'
)
.
append
(
this
.
backButton
.
$element
),
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-cell'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-header-title'
)
.
append
(
this
.
$label
,
this
.
helpIcon
.
$element
),
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-cell'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-header-invert'
)
.
append
(
this
.
invertTagsButton
.
$element
),
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-cell'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-header-invert'
)
.
append
(
this
.
invertNamespacesButton
.
$element
),
$
(
'<div>'
)
.
addClass
(
'mw-rcfilters-ui-cell'
)
.
addClass
(
'mw-rcfilters-ui-filterMenuHeaderWidget-header-highlight'
)
.
append
(
this
.
highlightButton
.
$element
)
)
)
);
};
/* Initialization */
OO
.
inheritClass
(
FilterMenuHeaderWidget
,
OO
.
ui
.
Widget
);
OO
.
mixinClass
(
FilterMenuHeaderWidget
,
OO
.
ui
.
mixin
.
LabelElement
);
/* Methods */
/**
* Respond to model initialization event
*
* Note: need to wait for initialization before getting the invertModel
* and registering its update event. Creating all the models before the UI
* would help with that.
*/
FilterMenuHeaderWidget
.
prototype
.
onModelInitialize
=
function
()
{
this
.
invertNamespacesModel
=
this
.
model
.
getNamespacesInvertModel
();
this
.
updateInvertNamespacesButton
();
this
.
invertNamespacesModel
.
connect
(
this
,
{
update
:
'updateInvertNamespacesButton'
}
);
this
.
invertTagsModel
=
this
.
model
.
getTagsInvertModel
();
this
.
updateInvertTagsButton
();
this
.
invertTagsModel
.
connect
(
this
,
{
update
:
'updateInvertTagsButton'
}
);
};
/**
* Respond to model update event
*/
FilterMenuHeaderWidget
.
prototype
.
onModelSearchChange
=
function
()
{
const
currentView
=
this
.
model
.
getCurrentView
();
if
(
this
.
view
!==
currentView
)
{
this
.
setLabel
(
this
.
model
.
getViewTitle
(
currentView
)
);
this
.
invertTagsButton
.
toggle
(
currentView
===
'tags'
);
this
.
invertNamespacesButton
.
toggle
(
currentView
===
'namespaces'
);
this
.
backButton
.
toggle
(
currentView
!==
'default'
);
this
.
helpIcon
.
toggle
(
currentView
===
'tags'
);
this
.
view
=
currentView
;
}
};
/**
* Respond to model highlight change event
*
* @param {boolean} highlightEnabled Highlight is enabled
*/
FilterMenuHeaderWidget
.
prototype
.
onModelHighlightChange
=
function
(
highlightEnabled
)
{
this
.
highlightButton
.
setActive
(
highlightEnabled
);
};
/**
* Update the state of the tags invert button
*/
FilterMenuHeaderWidget
.
prototype
.
updateInvertTagsButton
=
function
()
{
this
.
invertTagsButton
.
setActive
(
this
.
invertTagsModel
.
isSelected
()
);
this
.
invertTagsButton
.
setLabel
(
this
.
invertTagsModel
.
isSelected
()
?
mw
.
msg
(
'rcfilters-exclude-button-on'
)
:
mw
.
msg
(
'rcfilters-exclude-button-off'
)
);
};
/**
* Update the state of the namespaces invert button
*/
FilterMenuHeaderWidget
.
prototype
.
updateInvertNamespacesButton
=
function
()
{
this
.
invertNamespacesButton
.
setActive
(
this
.
invertNamespacesModel
.
isSelected
()
);
this
.
invertNamespacesButton
.
setLabel
(
this
.
invertNamespacesModel
.
isSelected
()
?
mw
.
msg
(
'rcfilters-exclude-button-on'
)
:
mw
.
msg
(
'rcfilters-exclude-button-off'
)
);
};
FilterMenuHeaderWidget
.
prototype
.
onBackButtonClick
=
function
()
{
this
.
controller
.
switchView
(
'default'
);
};
/**
* Respond to highlight button click
*/
FilterMenuHeaderWidget
.
prototype
.
onHighlightButtonClick
=
function
()
{
this
.
controller
.
toggleHighlight
();
};
/**
* Respond to invert tags button click
*/
FilterMenuHeaderWidget
.
prototype
.
onInvertTagsButtonClick
=
function
()
{
this
.
controller
.
toggleInvertedTags
();
};
/**
* Respond to invert namespaces button click
*/
FilterMenuHeaderWidget
.
prototype
.
onInvertNamespacesButtonClick
=
function
()
{
this
.
controller
.
toggleInvertedNamespaces
();
};
module
.
exports
=
FilterMenuHeaderWidget
;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Aug 18, 17:03 (3 w, 4 d ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
c1/a6/0340d47e9d792e96a65d3137a56b
Default Alt Text
FilterMenuHeaderWidget.js (6 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment