Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Add way to create a user notice via config.json (#9559)
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy authored Nov 9, 2022
1 parent 985119d commit 848adfd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/IConfigOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ export interface IConfigOptions {
// length per voice chunk in seconds
chunk_length?: number;
};

user_notice?: {
title: string;
description: string;
show_once?: boolean;
};
}

export interface ISsoRedirectOptions {
Expand Down
24 changes: 24 additions & 0 deletions src/components/structures/MatrixChat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ import { isLocalRoom } from '../../utils/localRoom/isLocalRoom';
import { SdkContextClass, SDKContext } from '../../contexts/SDKContext';
import { viewUserDeviceSettings } from '../../actions/handlers/viewUserDeviceSettings';
import { VoiceBroadcastResumer } from '../../voice-broadcast';
import GenericToast from "../views/toasts/GenericToast";
import { Linkify } from "../views/elements/Linkify";

// legacy export
export { default as Views } from "../../Views";
Expand Down Expand Up @@ -1332,6 +1334,28 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
// check if it has been dismissed before, etc.
showMobileGuideToast();
}

const userNotice = SdkConfig.get("user_notice");
if (userNotice) {
const key = "user_notice_" + userNotice.title;
if (!userNotice.show_once || !localStorage.getItem(key)) {
ToastStore.sharedInstance().addOrReplaceToast({
key,
title: userNotice.title,
props: {
description: <Linkify>{ userNotice.description }</Linkify>,
acceptLabel: _t("OK"),
onAccept: () => {
ToastStore.sharedInstance().dismissToast(key);
localStorage.setItem(key, "1");
},
},
component: GenericToast,
className: "mx_AnalyticsToast",
priority: 100,
});
}
}
}

private initPosthogAnalyticsToast() {
Expand Down

0 comments on commit 848adfd

Please sign in to comment.