From a54d568f2f7d463d7a7f56e145d6635d3dc58d09 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto <47038980+reinaldonetof@users.noreply.github.com> Date: Wed, 10 Nov 2021 14:43:20 -0300 Subject: [PATCH] Chore: Migrate ReadReceiptView to Typescript * Chore: Migrate ReadReceiptView to Typescript * feat: minor tweak * refactor: minor tweak Co-authored-by: AlexAlexandre --- .../ReadReceiptView/{index.js => index.tsx} | 54 ++++++++++++++----- .../ReadReceiptView/{styles.js => styles.ts} | 0 2 files changed, 40 insertions(+), 14 deletions(-) rename app/views/ReadReceiptView/{index.js => index.tsx} (76%) rename app/views/ReadReceiptView/{styles.js => styles.ts} (100%) diff --git a/app/views/ReadReceiptView/index.js b/app/views/ReadReceiptView/index.tsx similarity index 76% rename from app/views/ReadReceiptView/index.js rename to app/views/ReadReceiptView/index.tsx index f611cbc15..9f1a00675 100644 --- a/app/views/ReadReceiptView/index.js +++ b/app/views/ReadReceiptView/index.tsx @@ -1,9 +1,10 @@ import React from 'react'; -import PropTypes from 'prop-types'; import { FlatList, Text, View, RefreshControl } from 'react-native'; import { dequal } from 'dequal'; import moment from 'moment'; import { connect } from 'react-redux'; +import { StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack'; +import { RouteProp } from '@react-navigation/core'; import * as List from '../../containers/List'; import Avatar from '../../containers/Avatar'; @@ -16,9 +17,40 @@ import { themes } from '../../constants/colors'; import SafeAreaView from '../../containers/SafeAreaView'; import styles from './styles'; -class ReadReceiptView extends React.Component { - static navigationOptions = ({ navigation, isMasterDetail }) => { - const options = { +interface IReceipts { + _id: string; + roomId: string; + userId: string; + messageId: string; + ts: string; + user?: { + _id: string; + name: string; + username: string; + }; +} + +interface IReadReceiptViewState { + loading: boolean; + receipts: IReceipts[]; +} + +interface INavigationOption { + navigation: StackNavigationProp; + route: RouteProp<{ ReadReceiptView: { messageId: string } }, 'ReadReceiptView'>; + isMasterDetail: boolean; +} + +interface IReadReceiptViewProps extends INavigationOption { + Message_TimeAndDateFormat: string; + theme: string; +} + +class ReadReceiptView extends React.Component { + private messageId: string; + + static navigationOptions = ({ navigation, isMasterDetail }: INavigationOption) => { + const options: StackNavigationOptions = { title: I18n.t('Read_Receipt') }; if (isMasterDetail) { @@ -27,13 +59,7 @@ class ReadReceiptView extends React.Component { return options; }; - static propTypes = { - route: PropTypes.object, - Message_TimeAndDateFormat: PropTypes.string, - theme: PropTypes.string - }; - - constructor(props) { + constructor(props: IReadReceiptViewProps) { super(props); this.messageId = props.route.params?.messageId; this.state = { @@ -46,7 +72,7 @@ class ReadReceiptView extends React.Component { this.load(); } - shouldComponentUpdate(nextProps, nextState) { + shouldComponentUpdate(nextProps: IReadReceiptViewProps, nextState: IReadReceiptViewState) { const { loading, receipts } = this.state; const { theme } = this.props; if (nextProps.theme !== theme) { @@ -98,7 +124,7 @@ class ReadReceiptView extends React.Component { ); }; - renderItem = ({ item }) => { + renderItem = ({ item }: { item: IReceipts }) => { const { theme, Message_TimeAndDateFormat } = this.props; const time = moment(item.ts).format(Message_TimeAndDateFormat); if (!item?.user?.username) { @@ -152,7 +178,7 @@ class ReadReceiptView extends React.Component { } } -const mapStateToProps = state => ({ +const mapStateToProps = (state: any) => ({ Message_TimeAndDateFormat: state.settings.Message_TimeAndDateFormat }); diff --git a/app/views/ReadReceiptView/styles.js b/app/views/ReadReceiptView/styles.ts similarity index 100% rename from app/views/ReadReceiptView/styles.js rename to app/views/ReadReceiptView/styles.ts