Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1427222
EditCheckFactory.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
EditCheckFactory.js
View Options
mw
.
editcheck
.
EditCheckFactory
=
function
MWEditEditCheckFactory
()
{
// Parent constructor
mw
.
editcheck
.
EditCheckFactory
.
super
.
call
(
this
,
this
.
arguments
);
this
.
checksByListener
=
{
onDocumentChange
:
[],
onBeforeSave
:
[]
};
};
/* Inheritance */
OO
.
inheritClass
(
mw
.
editcheck
.
EditCheckFactory
,
OO
.
Factory
);
/* Methods */
mw
.
editcheck
.
EditCheckFactory
.
prototype
.
register
=
function
(
constructor
,
name
)
{
name
=
name
||
(
constructor
.
static
&&
constructor
.
static
.
name
);
if
(
typeof
name
!==
'string'
||
name
===
''
)
{
throw
new
Error
(
'Check names must be strings and must not be empty'
);
}
if
(
!
(
constructor
.
prototype
instanceof
mw
.
editcheck
.
BaseEditCheck
)
)
{
throw
new
Error
(
'Checks must be subclasses of mw.editcheck.BaseEditCheck'
);
}
if
(
this
.
lookup
(
name
)
===
constructor
)
{
// Don't allow double registration as it would create duplicate
// entries in various caches.
return
;
}
// Parent method
mw
.
editcheck
.
EditCheckFactory
.
super
.
prototype
.
register
.
call
(
this
,
constructor
,
name
);
if
(
constructor
.
prototype
.
onDocumentChange
)
{
this
.
checksByListener
.
onDocumentChange
.
push
(
name
);
}
if
(
constructor
.
prototype
.
onBeforeSave
)
{
this
.
checksByListener
.
onBeforeSave
.
push
(
name
);
}
};
/**
* Get a list of registered command names.
*
* @param {string} listener Listener name, 'onDocumentChange', 'onBeforeSave'
* @return {string[]}
*/
mw
.
editcheck
.
EditCheckFactory
.
prototype
.
getNamesByListener
=
function
(
listener
)
{
if
(
!
this
.
checksByListener
[
listener
]
)
{
throw
new
Error
(
`Unknown listener '
${
listener
}
'`
);
}
return
this
.
checksByListener
[
listener
];
};
mw
.
editcheck
.
EditCheckFactory
.
prototype
.
createAllByListener
=
function
(
listener
,
surfaceModel
)
{
const
newChecks
=
[];
this
.
getNamesByListener
(
listener
).
forEach
(
(
checkName
)
=>
{
const
check
=
this
.
create
(
checkName
,
mw
.
editcheck
.
config
[
checkName
]
);
if
(
!
check
.
canBeShown
()
)
{
return
;
}
const
actions
=
check
[
listener
](
surfaceModel
);
if
(
actions
.
length
>
0
)
{
ve
.
batchPush
(
newChecks
,
actions
);
}
}
);
newChecks
.
sort
(
(
a
,
b
)
=>
a
.
highlight
.
getSelection
().
getCoveringRange
().
start
-
b
.
highlight
.
getSelection
().
getCoveringRange
().
start
);
return
newChecks
;
};
mw
.
editcheck
.
editCheckFactory
=
new
mw
.
editcheck
.
EditCheckFactory
();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, May 16, 14:22 (1 d, 10 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9a/82/cfea742f818312cc0f4ea6cd4577
Default Alt Text
EditCheckFactory.js (2 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment