2021-10-23 00:41:45 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { Intl } from './Intl';
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { LocalizerType } from '../types/Util';
|
2021-10-23 00:41:45 +00:00
|
|
|
|
|
|
|
export type PropsType = {
|
|
|
|
i18n: LocalizerType;
|
|
|
|
showWhatsNewModal: () => unknown;
|
|
|
|
};
|
|
|
|
|
2022-11-18 00:45:19 +00:00
|
|
|
export function WhatsNewLink(props: PropsType): JSX.Element {
|
2021-10-23 00:41:45 +00:00
|
|
|
const { i18n, showWhatsNewModal } = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Intl
|
|
|
|
i18n={i18n}
|
2023-03-30 00:03:25 +00:00
|
|
|
id="icu:whatsNew"
|
2023-03-27 23:37:39 +00:00
|
|
|
components={{
|
|
|
|
whatsNew: (
|
|
|
|
<button
|
|
|
|
className="WhatsNew"
|
|
|
|
type="button"
|
|
|
|
onClick={showWhatsNewModal}
|
|
|
|
>
|
2023-03-30 00:03:25 +00:00
|
|
|
{i18n('icu:viewReleaseNotes')}
|
2023-03-27 23:37:39 +00:00
|
|
|
</button>
|
|
|
|
),
|
|
|
|
}}
|
2021-10-23 00:41:45 +00:00
|
|
|
/>
|
|
|
|
);
|
2022-11-18 00:45:19 +00:00
|
|
|
}
|