import clsx from 'clsx'; import React, { Component } from 'react'; import CloseIcon from '../../assets/images/CloseIcon.svg'; import { Button } from '../Button'; import LogNotification from '../LogNotification'; import styles from './styles.scss'; type NotificationSectionProps = { currentLocale: string; formatPhone: (...args: any[]) => any; logNotification?: object; onCloseNotification?: (...args: any[]) => any; onDiscardNotification?: (...args: any[]) => any; onSaveNotification?: (...args: any[]) => any; onExpandNotification?: (...args: any[]) => any; showNotiLogButton?: boolean; currentNotificationIdentify?: string; currentSession?: object; onReject: (...args: any[]) => any; onHangup: (...args: any[]) => any; disableLinks?: boolean; openEntityDetailLinkTrack?: (...args: any[]) => any; }; class NotificationSection extends Component { // @ts-expect-error TS(4114): This member must have an 'override' modifier becau... Remove this comment to see the full error message UNSAFE_componentWillUpdate(nextProps: any) { const { logNotification, onCloseNotification, currentNotificationIdentify, } = nextProps; if (currentNotificationIdentify) { const { call = {} } = logNotification; const { result } = call; if (result) { onCloseNotification(); } } } renderLogSection() { const { formatPhone, currentLocale, logNotification, showNotiLogButton, onCloseNotification, onSaveNotification, onExpandNotification, onDiscardNotification, currentNotificationIdentify, currentSession, onReject, onHangup, disableLinks, } = this.props; return (
onReject(currentNotificationIdentify)} onHangup={() => onHangup(currentNotificationIdentify)} currentSession={currentSession} disableLinks={disableLinks} />
); } // @ts-expect-error TS(4114): This member must have an 'override' modifier becau... Remove this comment to see the full error message render() { return this.renderLogSection(); } } // @ts-expect-error TS(2339): Property 'defaultProps' does not exist on type 'ty... Remove this comment to see the full error message NotificationSection.defaultProps = { // Notification logNotification: undefined, onCloseNotification: undefined, onDiscardNotification: undefined, onSaveNotification: undefined, onExpandNotification: undefined, showNotiLogButton: true, currentNotificationIdentify: '', currentSession: undefined, disableLinks: false, }; export default NotificationSection;