Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F3010462
color.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
701 B
Referenced Files
None
Subscribers
None
color.ts
View Options
import
{
Context
,
Field
}
from
"../../../main.js"
;
import
ColorParser
from
"color"
;
//putting it here not to slow down `new Sealious.app()`
export
default
class
Color
extends
Field
<
string
>
{
typeName
=
"color"
;
async
isProperValue
(
context
:
Context
,
new_value
:
string
)
{
try
{
if
(
typeof
new_value
===
"string"
)
{
ColorParser
(
new_value
.
toLowerCase
());
}
else
{
ColorParser
(
new_value
);
}
return
Field
.
valid
();
}
catch
(
e
)
{
return
Field
.
invalid
(
context
.
app
.
i18n
(
"invalid_color"
));
}
}
async
encode
(
_
:
any
,
value
:
string
|
null
)
{
if
(
value
===
null
)
{
return
null
;
}
const
color
=
ColorParser
(
value
);
return
color
.
hex
();
}
getTypeName
=
()
=>
"color"
;
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Wed, May 7, 19:42 (1 d, 8 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
630185
Default Alt Text
color.ts (701 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment