Skip to content

how can I dynamically change locale via i18n #377

Description

@onethps

How can I dynamically change locale via i18n?
The locale only changes when i restart application

import moment from 'moment';
import 'moment/locale/cs';
import 'moment/locale/de';
import 'moment/locale/es';
import 'moment/locale/pt';
import 'moment/locale/uk';
import React, { useEffect } from 'react';
import { useTranslation } from 'react-i18next';
import CalendarStrip from 'react-native-calendar-strip';


import { COLORS } from '@app/theme/constants/COLORS';

import { styles } from './styles';

export function LinearCalendar(props) {
  const {
    markedDates,
    onDateSelected,
    selectedDate,
    datesBlacklist,
    showMarketDates,
    hideArrows,
    ...rest
  } = props;

  const { t, i18n } = useTranslation();
  moment.locale(i18n.language);

  const markedDatesArray = showMarketDates ? getMarkedByOrderDates(markedDates) : null;

  return (
    <CalendarStrip
      selectedDate={selectedDate ?? {}}
      // minDate={moment(new Date()).subtract(3, 'days')}
      maxDate={moment(new Date()).add(1, 'y')}
      disabledDateOpacity={1}
      onDateSelected={onDateSelected}
      customDatesStyles={customDatesStyles}
      datesBlacklist={datesBlacklist}
      scrollable
      markedDates={markedDatesArray}
      dateNameStyle={styles.dateNameStyle}
      dateNumberStyle={styles.dateNumberStyle}
      highlightDateNameStyle={styles.highlightDateNameStyle}
      highlightDateNumberStyle={styles.highlightDateNumberStyle}
      highlightDateContainerStyle={styles.highlightDateContainerStyle}
      disabledDateNameStyle={styles.disabledDateNameStyle}
      iconStyle={styles.iconStyle}
      disabledDateNumberStyle={styles.disabledDateNumberStyle}
      iconContainer={styles.iconContainer}
      calendarHeaderStyle={styles.calendarHeaderStyle}
      style={styles.style}
      calendarColor="transparent"
      dayComponentHeight={100}
      maxDayComponentSize={200}
      // default names
      {...rest}
    />
  );
}

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions