Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1425980
LoadNotification.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
LoadNotification.js
View Options
/**
* @class mw.widgets.EditRecovery.LoadNotification
* @constructor
* @extends OO.ui.Widget
* @ignore
* @param {Object} config
* @param {boolean} config.differentRev Whether to display the 'different revision' warning.
*/
const
LoadNotification
=
function
mwWidgetsEditRecoveryLoadNotification
(
config
)
{
LoadNotification
.
super
.
call
(
this
,
{}
);
this
.
recoverButton
=
new
OO
.
ui
.
ButtonWidget
(
{
label
:
mw
.
msg
(
'edit-recovery-loaded-recover'
),
flags
:
[
'progressive'
]
}
);
this
.
discardButton
=
new
OO
.
ui
.
ButtonWidget
(
{
label
:
mw
.
msg
(
'edit-recovery-loaded-discard'
),
framed
:
false
,
flags
:
[
'destructive'
]
}
);
const
$buttons
=
$
(
'<div>'
)
.
addClass
(
'mw-EditRecovery-LoadNotification-buttons'
)
.
append
(
this
.
recoverButton
.
$element
,
this
.
discardButton
.
$element
);
let
differentRev
=
null
;
let
differentRevSave
=
null
;
if
(
config
.
differentRev
)
{
differentRev
=
mw
.
message
(
'edit-recovery-loaded-message-different-rev'
).
parse
();
differentRevSave
=
mw
.
config
.
get
(
'wgEditSubmitButtonLabelPublish'
)
?
mw
.
message
(
'edit-recovery-loaded-message-different-rev-publish'
).
parse
()
:
mw
.
message
(
'edit-recovery-loaded-message-different-rev-save'
).
parse
();
}
this
.
$element
.
append
(
mw
.
message
(
'edit-recovery-loaded-message'
).
escaped
(),
mw
.
message
(
'word-separator'
).
parse
(),
differentRev
,
mw
.
message
(
'word-separator'
).
parse
(),
differentRevSave
,
$buttons
);
};
OO
.
inheritClass
(
LoadNotification
,
OO
.
ui
.
Widget
);
/**
* @ignore
* @return {mw.Notification}
*/
LoadNotification
.
prototype
.
getNotification
=
function
()
{
return
mw
.
notification
.
notify
(
this
.
$element
,
{
title
:
mw
.
msg
(
'edit-recovery-loaded-title'
),
autoHide
:
false
}
);
};
/**
* @ignore
* @return {OO.ui.ButtonWidget}
*/
LoadNotification
.
prototype
.
getRecoverButton
=
function
()
{
return
this
.
recoverButton
;
};
/**
* @ignore
* @return {OO.ui.ButtonWidget}
*/
LoadNotification
.
prototype
.
getDiscardButton
=
function
()
{
return
this
.
discardButton
;
};
module
.
exports
=
LoadNotification
;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, May 16, 12:21 (22 h, 52 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
44/f2/d36f84d7aec025b963bc2aeb8bf1
Default Alt Text
LoadNotification.js (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment