// FIXME: Update this file to be type safe and remove this and next line // @ts-strict-ignore import { View } from "../../../../models/view/view"; import { DeepJsonify } from "../../../../types/deep-jsonify"; import { SendText } from "../domain/send-text"; export class SendTextView implements View { text: string = null; hidden: boolean; constructor(t?: SendText) { if (!t) { return; } this.hidden = t.hidden; } get maskedText(): string { return this.text != null ? "••••••••" : null; } static fromJSON(json: DeepJsonify) { if (json == null) { return null; } return Object.assign(new SendTextView(), json); } }