signal-desktop/ts/components/WhatsNewModal.tsx

84 lines
2.2 KiB
TypeScript
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReactChild } from 'react';
import React from 'react';
import moment from 'moment';
import { Modal } from './Modal';
import { Intl } from './Intl';
import { Emojify } from './conversation/Emojify';
import type { LocalizerType, RenderTextCallbackType } from '../types/Util';
export type PropsType = {
hideWhatsNewModal: () => unknown;
i18n: LocalizerType;
};
type ReleaseNotesType = {
date: Date;
version: string;
features: Array<JSX.Element>;
};
const renderText: RenderTextCallbackType = ({ key, text }) => (
<Emojify key={key} text={text} />
);
2022-11-18 00:45:19 +00:00
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
2022-11-18 00:45:19 +00:00
}: PropsType): JSX.Element {
let contentNode: ReactChild;
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
2023-05-18 00:55:01 +00:00
<Intl i18n={i18n} id="icu:WhatsNew__v6.19--0" renderText={renderText} />,
2023-05-10 19:39:54 +00:00
<Intl
i18n={i18n}
2023-05-18 00:55:01 +00:00
id="icu:WhatsNew__v6.19--1"
2023-05-10 19:39:54 +00:00
renderText={renderText}
components={{
2023-05-18 00:55:01 +00:00
sha265: (
<a href="https://github.com/sha-265">@sha-265</a>
2023-05-10 19:39:54 +00:00
),
}}
2023-05-18 00:55:01 +00:00
/>,
<Intl i18n={i18n} id="icu:WhatsNew__v6.19--2" renderText={renderText} components={{"supportLink": (<a href="https://support.signal.org/hc/en-us/articles/5109141421850-Supporting-Older-Operating-Systems">https://support.signal.org/hc/en-us/articles/5109141421850-Supporting-Older-Operating-Systems
</a>)}}/>,
],
};
if (releaseNotes.features.length === 1) {
contentNode = <p>{releaseNotes.features[0]}</p>;
} else {
contentNode = (
<ul>
{releaseNotes.features.map(element => {
return <li key={element.props.id}>{element}</li>;
})}
</ul>
);
}
return (
<Modal
2022-09-27 20:24:21 +00:00
modalName="WhatsNewModal"
hasXButton
i18n={i18n}
onClose={hideWhatsNewModal}
2023-03-30 00:03:25 +00:00
title={i18n('icu:WhatsNew__modal-title')}
>
<>
<span>
{moment(releaseNotes.date).format('LL')} &middot;{' '}
{releaseNotes.version}
</span>
{contentNode}
</>
</Modal>
);
2022-11-18 00:45:19 +00:00
}