62 lines
2.4 KiB
TypeScript
62 lines
2.4 KiB
TypeScript
import { Component, ReactNode } from "react";
|
|
import { AttrInput } from "@Component/AttrInput/AttrInput";
|
|
import { useStatusWithEvent, IMixinStatusProps } from "@Context/Status";
|
|
import { Message } from "@Component/Message/Message";
|
|
import { ColorInput } from "@Component/ColorInput/ColorInput";
|
|
import { Label } from "@Model/Label";
|
|
import { TogglesInput } from "@Component/TogglesInput/TogglesInput";
|
|
import { ConfirmPopup } from "@Component/ConfirmPopup/ConfirmPopup";
|
|
import "./LabelDetails.scss";
|
|
|
|
@useStatusWithEvent("focusLabelChange", "labelAttrChange", "labelChange")
|
|
class LabelDetails extends Component<IMixinStatusProps> {
|
|
|
|
private renderFrom(label: Label) {
|
|
return <>
|
|
|
|
<Message i18nKey="Common.Attr.Title.Basic" isTitle first/>
|
|
|
|
<AttrInput keyI18n="Common.Attr.Key.Display.Name" maxLength={15} value={label.name} valueChange={(value) => {
|
|
if (this.props.status) {
|
|
this.props.status.changeLabelAttrib(label, "name", value);
|
|
}
|
|
}}/>
|
|
|
|
<ColorInput keyI18n="Common.Attr.Key.Color" value={label.color} valueChange={(color) => {
|
|
if (this.props.status) {
|
|
this.props.status.changeLabelAttrib(label, "color", color);
|
|
}
|
|
}}/>
|
|
|
|
<TogglesInput
|
|
keyI18n="Common.Attr.Key.Delete" onIconName="delete" red
|
|
offIconName="delete" valueChange={() => {
|
|
if (this.props.status) {
|
|
const status = this.props.status;
|
|
status.popup.showPopup(ConfirmPopup, {
|
|
infoI18n: "Popup.Delete.Objects.Confirm",
|
|
titleI18N: "Popup.Action.Objects.Confirm.Title",
|
|
yesI18n: "Popup.Action.Objects.Confirm.Delete",
|
|
red: "yes",
|
|
yes: () => {
|
|
status.model.deleteLabel(label);
|
|
status.setLabelObject();
|
|
}
|
|
})
|
|
}
|
|
}}/>
|
|
|
|
</>;
|
|
}
|
|
|
|
public render(): ReactNode {
|
|
if (this.props.status) {
|
|
if (this.props.status.focusLabel) {
|
|
return this.renderFrom(this.props.status.focusLabel);
|
|
}
|
|
}
|
|
return <Message i18nKey="Panel.Info.Label.Details.Error.Unspecified"/>;
|
|
}
|
|
}
|
|
|
|
export { LabelDetails }; |