import * as React from "react"; import * as i18next from "i18next"; export class ToggleButton extends React.Component { caption() { let captions = { "0": i18next.t("no"), "false": i18next.t("no"), "off": i18next.t("no"), "1": i18next.t("yes"), "true": i18next.t("yes"), "on": i18next.t("yes"), "undefined": "---", }; let togval = String(this.props.toggleval); if (togval) { return (captions as any) [togval]; } else { "---" } } css() { let redCSS = "button-like red"; let greenCSS = "button-like green"; let yellowCSS = "button-like yellow"; let cssClasses = { "0": redCSS, "false": redCSS, "off": redCSS, "1": greenCSS, "true": greenCSS, "on": greenCSS, "undefined": yellowCSS }; return (cssClasses as any)[String(this.props.toggleval)] || yellowCSS; } render() { return ; } }