btn-secondary of hell

Written by

in

    /** Active/tag-based color classes. */
    get colorClass() {
        return {
            active: this.action.isActive,
            "o-odooControlPanelSwitchStyle": this.props.odooControlPanelSwitchStyle,
            "o-hasBtnBg": this.hasBtnBg,
            "bg-secondary":
                this.action.isActive &&
                !this.action.tags.includes("PRIMARY") &&
                !this.action.tags.includes("DANGER") &&
                !this.action.tags.includes("SUCCESS"),
            "btn-secondary":
                !this.action.tags.includes("PRIMARY") &&
                !this.action.tags.includes("DANGER") &&
                !this.action.tags.includes("SUCCESS"),
            "btn-primary": this.action.tags.includes("PRIMARY"),
            "btn-danger": this.action.tags.includes("DANGER"),
            "btn-success": this.action.tags.includes("SUCCESS"),
        };
    }

Code language: JavaScript (javascript)