Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F7317427
enum.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
815 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
(
"Allowed values: "
+
this
.
getAllowedValues
(
context
.
app
).
join
()
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Sun, Jul 13, 04:42 (1 d, 4 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
802773
Default Alt Text
enum.ts (815 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment