// Copyright 2018 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReactNode } from 'react';
import React from 'react';
import { ContactName } from './ContactName';
import { SystemMessage } from './SystemMessage';
import { I18n } from '../I18n';
import type { LocalizerType } from '../../types/Util';
import * as expirationTimer from '../../util/expirationTimer';
import type { DurationInSeconds } from '../../util/durations';
import * as log from '../../logging/log';
export type TimerNotificationType =
  | 'fromOther'
  | 'fromMe'
  | 'fromSync'
  | 'fromMember';
// We can't always use destructuring assignment because of the complexity of this props
//   type.
export type PropsData = {
  type: TimerNotificationType;
  title: string;
} & (
  | { disabled: true }
  | {
      disabled: false;
      expireTimer: DurationInSeconds;
    }
);
type PropsHousekeeping = {
  i18n: LocalizerType;
};
export type Props = PropsData & PropsHousekeeping;
export function TimerNotification(props: Props): JSX.Element {
  const { disabled, i18n, title, type } = props;
  let timespan: string;
  if (disabled) {
    timespan = ''; // Set to the empty string to satisfy types
  } else {
    timespan = expirationTimer.format(i18n, props.expireTimer);
  }
  const name = ;
  let message: ReactNode;
  switch (type) {
    case 'fromOther':
      message = disabled ? (
        
      ) : (
        
      );
      break;
    case 'fromMe':
      message = disabled
        ? i18n('icu:youDisabledDisappearingMessages')
        : i18n('icu:youChangedTheTimer', { time: timespan });
      break;
    case 'fromSync':
      message = disabled
        ? i18n('icu:disappearingMessagesDisabled')
        : i18n('icu:timerSetOnSync', { time: timespan });
      break;
    case 'fromMember':
      message = disabled
        ? i18n('icu:disappearingMessagesDisabledByMember')
        : i18n('icu:timerSetByMember', { time: timespan });
      break;
    default:
      log.warn('TimerNotification: unsupported type provided:', type);
      break;
  }
  const icon = disabled ? 'timer-disabled' : 'timer';
  return ;
}