Page MenuHomeSealhub

color.ts
No OneTemporary

color.ts

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

Mime Type
text/x-java
Expires
Wed, May 7, 19:42 (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
630185
Default Alt Text
color.ts (701 B)

Event Timeline