Move all the capability copy to its own class
This commit is contained in:
parent
55592d365c
commit
ddd8bdc00e
3 changed files with 413 additions and 148 deletions
|
@ -16,113 +16,19 @@ limitations under the License.
|
|||
|
||||
import React from 'react';
|
||||
import BaseDialog from "./BaseDialog";
|
||||
import { _t, _td, TranslatedString } from "../../../languageHandler";
|
||||
import { _t } from "../../../languageHandler";
|
||||
import { IDialogProps } from "./IDialogProps";
|
||||
import { Capability, EventDirection, MatrixCapabilities, Widget, WidgetEventCapability } from "matrix-widget-api";
|
||||
import {
|
||||
Capability,
|
||||
Widget,
|
||||
WidgetEventCapability,
|
||||
WidgetKind
|
||||
} from "matrix-widget-api";
|
||||
import { objectShallowClone } from "../../../utils/objects";
|
||||
import { ElementWidgetCapabilities } from "../../../stores/widgets/ElementWidgetCapabilities";
|
||||
import { EventType, MsgType } from "matrix-js-sdk/lib/@types/event";
|
||||
import StyledCheckbox from "../elements/StyledCheckbox";
|
||||
import DialogButtons from "../elements/DialogButtons";
|
||||
import LabelledToggleSwitch from "../elements/LabelledToggleSwitch";
|
||||
|
||||
// TODO: These messaging things can probably get their own store of some sort
|
||||
const SIMPLE_CAPABILITY_MESSAGES = {
|
||||
[MatrixCapabilities.AlwaysOnScreen]: _td("Remain on your screen while running"),
|
||||
[MatrixCapabilities.StickerSending]: _td("Send stickers into your active room"),
|
||||
[ElementWidgetCapabilities.CanChangeViewedRoom]: _td("Change which room you're viewing"),
|
||||
};
|
||||
const SEND_RECV_EVENT_CAPABILITY_MESSAGES = {
|
||||
[EventType.RoomTopic]: {
|
||||
// TODO: We probably want to say "this room" when we can
|
||||
[EventDirection.Send]: _td("Change the topic of your active room"),
|
||||
[EventDirection.Receive]: _td("See when the topic changes in your active room"),
|
||||
},
|
||||
[EventType.RoomName]: {
|
||||
[EventDirection.Send]: _td("Change the name of your active room"),
|
||||
[EventDirection.Receive]: _td("See when the name changes in your active room"),
|
||||
},
|
||||
[EventType.RoomAvatar]: {
|
||||
[EventDirection.Send]: _td("Change the avatar of your active room"),
|
||||
[EventDirection.Receive]: _td("See when the avatar changes in your active room"),
|
||||
},
|
||||
// TODO: Add more as needed
|
||||
};
|
||||
function textForEventCapabilitiy(cap: WidgetEventCapability): { primary: TranslatedString, byline: TranslatedString } {
|
||||
let primary: TranslatedString;
|
||||
let byline: TranslatedString;
|
||||
|
||||
if (cap.isState) {
|
||||
byline = cap.keyStr
|
||||
? _t("with state key %(stateKey)s", {stateKey: cap.keyStr})
|
||||
: _t("with an empty state key");
|
||||
}
|
||||
|
||||
const srMessages = SEND_RECV_EVENT_CAPABILITY_MESSAGES[cap.eventType];
|
||||
if (srMessages && srMessages[cap.direction]) {
|
||||
primary = _t(srMessages[cap.direction]);
|
||||
} else {
|
||||
if (cap.eventType === EventType.RoomMessage) {
|
||||
if (cap.direction === EventDirection.Receive) {
|
||||
if (!cap.keyStr) {
|
||||
primary = _t("See messages sent in your active room");
|
||||
} else {
|
||||
if (cap.keyStr === MsgType.Text) {
|
||||
primary = _t("See text messages sent in your active room");
|
||||
} else if (cap.keyStr === MsgType.Emote) {
|
||||
primary = _t("See emotes sent in your active room");
|
||||
} else if (cap.keyStr === MsgType.Image) {
|
||||
primary = _t("See images sent in your active room");
|
||||
} else if (cap.keyStr === MsgType.Video) {
|
||||
primary = _t("See videos sent in your active room");
|
||||
} else if (cap.keyStr === MsgType.File) {
|
||||
primary = _t("See general files sent in your active room");
|
||||
} else {
|
||||
primary = _t(
|
||||
"See <code>%(msgtype)s</code> messages sent in your active room",
|
||||
{msgtype: cap.keyStr}, {code: sub => <code>{sub}</code>},
|
||||
);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (!cap.keyStr) {
|
||||
primary = _t("Send messages as you in your active room");
|
||||
} else {
|
||||
if (cap.keyStr === MsgType.Text) {
|
||||
primary = _t("Send text messages as you in your active room");
|
||||
} else if (cap.keyStr === MsgType.Emote) {
|
||||
primary = _t("Send emotes as you in your active room");
|
||||
} else if (cap.keyStr === MsgType.Image) {
|
||||
primary = _t("Send images as you in your active room");
|
||||
} else if (cap.keyStr === MsgType.Video) {
|
||||
primary = _t("Send videos as you in your active room");
|
||||
} else if (cap.keyStr === MsgType.File) {
|
||||
primary = _t("Send general files as you in your active room");
|
||||
} else {
|
||||
primary = _t(
|
||||
"Send <code>%(msgtype)s</code> messages as you in your active room",
|
||||
{msgtype: cap.keyStr}, {code: sub => <code>{sub}</code>},
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (cap.direction === EventDirection.Receive) {
|
||||
primary = _t(
|
||||
"See <code>%(eventType)s</code> events sent in your active room",
|
||||
{eventType: cap.eventType}, {code: sub => <code>{sub}</code>},
|
||||
);
|
||||
} else {
|
||||
primary = _t(
|
||||
"Send <code>%(eventType)s</code> events as you in your active room",
|
||||
{eventType: cap.eventType}, {code: sub => <code>{sub}</code>},
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return {primary, byline};
|
||||
}
|
||||
import { CapabilityText } from "../../../widgets/CapabilityText";
|
||||
|
||||
export function getRememberedCapabilitiesForWidget(widget: Widget): Capability[] {
|
||||
return JSON.parse(localStorage.getItem(`widget_${widget.id}_approved_caps`) || "[]");
|
||||
|
@ -135,6 +41,7 @@ function setRememberedCapabilitiesForWidget(widget: Widget, caps: Capability[])
|
|||
interface IProps extends IDialogProps {
|
||||
requestedCapabilities: Set<Capability>;
|
||||
widget: Widget;
|
||||
widgetKind: WidgetKind; // TODO: Refactor into the Widget class
|
||||
}
|
||||
|
||||
interface IBooleanStates {
|
||||
|
@ -194,22 +101,10 @@ export default class WidgetCapabilitiesPromptDialog extends React.PureComponent<
|
|||
|
||||
public render() {
|
||||
const checkboxRows = Object.entries(this.state.booleanStates).map(([cap, isChecked], i) => {
|
||||
const evCap = this.eventPermissionsMap.get(cap);
|
||||
|
||||
let text: TranslatedString;
|
||||
let byline: TranslatedString;
|
||||
if (evCap) {
|
||||
const t = textForEventCapabilitiy(evCap);
|
||||
text = t.primary;
|
||||
byline = t.byline;
|
||||
} else if (SIMPLE_CAPABILITY_MESSAGES[cap]) {
|
||||
text = _t(SIMPLE_CAPABILITY_MESSAGES[cap]);
|
||||
} else {
|
||||
text = _t(
|
||||
"The <code>%(capability)s</code> capability",
|
||||
{capability: cap}, {code: sub => <code>{sub}</code>},
|
||||
);
|
||||
}
|
||||
const text = CapabilityText.for(cap, this.props.widgetKind);
|
||||
const byline = text.byline
|
||||
? <span className="mx_WidgetCapabilitiesPromptDialog_byline">{text.byline}</span>
|
||||
: null;
|
||||
|
||||
return (
|
||||
<div className="mx_WidgetCapabilitiesPromptDialog_cap">
|
||||
|
@ -217,8 +112,8 @@ export default class WidgetCapabilitiesPromptDialog extends React.PureComponent<
|
|||
key={cap + i}
|
||||
checked={isChecked}
|
||||
onChange={() => this.onToggle(cap)}
|
||||
>{text}</StyledCheckbox>
|
||||
{byline ? <span className="mx_WidgetCapabilitiesPromptDialog_byline">{byline}</span> : null}
|
||||
>{text.primary}</StyledCheckbox>
|
||||
{byline}
|
||||
</div>
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue