Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104658927
list.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Mar 11, 07:01
Size
811 B
Mime Type
text/x-c++
Expires
Thu, Mar 13, 07:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24838504
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
list.js
View Options
'use strict'
;
const
StringPrompt
=
require
(
'../types/string'
);
class
ListPrompt
extends
StringPrompt
{
constructor
(
options
=
{})
{
super
(
options
);
this
.
sep
=
this
.
options
.
separator
||
/, */
;
this
.
initial
=
options
.
initial
||
''
;
}
split
(
input
=
this
.
value
)
{
return
input
?
String
(
input
).
split
(
this
.
sep
)
:
[];
}
format
()
{
let
style
=
this
.
state
.
submitted
?
this
.
styles
.
primary
:
val
=>
val
;
return
this
.
list
.
map
(
style
).
join
(
', '
);
}
async
submit
(
value
)
{
let
result
=
this
.
state
.
error
||
await
this
.
validate
(
this
.
list
,
this
.
state
);
if
(
result
!==
true
)
{
this
.
state
.
error
=
result
;
return
super
.
submit
();
}
this
.
value
=
this
.
list
;
return
super
.
submit
();
}
get
list
()
{
return
this
.
split
();
}
}
module
.
exports
=
ListPrompt
;
Event Timeline
Log In to Comment