signal-desktop/ts/components/WhatsNewModal.tsx

68 lines
1.5 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 type { LocalizerType } from '../types/Util';
export type PropsType = {
hideWhatsNewModal: () => unknown;
i18n: LocalizerType;
};
type ReleaseNotesType = {
date: Date;
version: string;
features: Array<JSX.Element>;
};
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?.(),
2023-11-08 23:39:44 +00:00
features: [
<Intl i18n={i18n} id="icu:WhatsNew__v6.39--0" />,
<Intl i18n={i18n} id="icu:WhatsNew__v6.39--1" />,
],
};
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
}