Page MenuHomeSealhub

color.ts
No OneTemporary

color.ts

import { Context, Field } from "../../../main";
import ColorParser from "color"; //putting it here not to slow down `new Sealious.app()`
export default class Color extends Field {
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) {
if (value === null) {
return null;
}
const color = ColorParser(value);
return color.hex();
}
getTypeName = () => "color";
}

File Metadata

Mime Type
text/x-java
Expires
Thu, Jul 3, 20:28 (8 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
630934
Default Alt Text
color.ts (683 B)

Event Timeline