Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F7187777
enum.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
842 B
Referenced Files
None
Subscribers
None
enum.ts
View Options
import
{
Field
,
Context
,
App
}
from
"../../../main"
;
type
Props
<
S
>
=
S
[]
|
((
app
:
App
)
=>
S
[]);
/** Allows only a specified set of values.
*
* **Params**:
* - `allowed_values` - `Array<any>` - list of acceptable values
*/
export
default
class
Enum
<
S
>
extends
Field
{
typeName
=
"enum"
;
allowed_values
:
Props
<
S
>
;
constructor
(
allowed_values
:
Props
<
S
>
)
{
super
();
this
.
allowed_values
=
allowed_values
;
}
getAllowedValues
(
app
:
App
)
:
S
[]
{
return
this
.
allowed_values
instanceof
Function
?
this
.
allowed_values
(
app
)
:
this
.
allowed_values
;
}
async
isProperValue
(
context
:
Context
,
value
:
S
)
{
if
(
this
.
getAllowedValues
(
context
.
app
).
includes
(
value
))
{
return
Field
.
valid
();
}
else
{
return
Field
.
invalid
(
context
.
app
.
i18n
(
"invalid_enum"
,
[
this
.
getAllowedValues
(
context
.
app
).
join
(),
])
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Tue, Jul 8, 07:04 (1 h, 47 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
801310
Default Alt Text
enum.ts (842 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment