Files
DefinitelyTyped/types/react-native-calendars/index.d.ts
T
Ferdy BudhidharmaandJohn Reilly bc0c933415 feat(react-dependents): update to TS 2.8 (part 2 of 2) (#27744)
* feat(react-dependents): update to ts 2.8

* fix version mismatches

* remove package.json

* post merge updates

* add package.json back again
2018-08-06 06:28:42 +01:00

419 lines
10 KiB
TypeScript

// Type definitions for react-native-calendars 1.20
// Project: https://github.com/wix/react-native-calendars#readme
// Definitions by: Tyler Zhang <https://github.com/Tyler-Zhang>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from 'react';
import { ViewProps, StyleProp } from 'react-native';
export interface DateObject {
year: number;
month: number;
day: number;
timestamp: number;
dateString: string;
}
export interface CalendarTheme {
backgroundColor?: string;
calendarBackground?: string;
textSectionTitleColor?: string;
selectedDayBackgroundColor?: string;
selectedDayTextColor?: string;
todayTextColor?: string;
dayTextColor?: string;
textDisabledColor?: string;
dotColor?: string;
selectedDotColor?: string;
arrowColor?: string;
monthTextColor?: string;
textDayFontFamily?: string;
textMonthFontFamily?: string;
textDayHeaderFontFamily?: string;
textMonthFontWeight?: string;
textDayFontSize?: number;
textMonthFontSize?: number;
textDayHeaderFontSize?: number;
}
export interface DayComponentProps {
state: '' | 'selected' | 'disabled' | 'today';
theme: CalendarTheme;
onPress: () => any;
onLongPress: () => any;
date: DateObject;
marking: false | Marking[];
}
export interface CalendarBaseProps {
/**
* Styles for the view
*/
style?: StyleProp<ViewProps>;
/**
* Specify theme properties to override specific styles for calendar parts. Default = {}
*/
theme?: CalendarTheme;
/**
* Initially visible month. Default = Date()
*/
current?: Date | string;
/**
* Minimum date that can be selected, dates before minDate will be grayed out. Default = undefined
*/
minDate?: Date | string;
/**
* Maximum date that can be selected, dates after maxDate will be grayed out. Default = undefined
*/
maxDate?: Date | string;
/**
* Handler which gets executed on day press. Default = undefined
*/
onDayPress?: (day: number) => void;
/**
* Handler which gets executed on day long press. Default = undefined
*/
onDayLongPress?: (day: number) => void;
/**
* Month format in calendar title. Formatting values: http://arshaw.com/xdate/#Formatting
*/
monthFormat?: string;
/**
* Handler which gets executed when visible month changes in calendar. Default = undefined
*/
onMonthChange?: (month: number) => void;
/**
* Hide month navigation arrows. Default = false
*/
hideArrows?: boolean;
/**
* Replace default arrows with custom ones (direction can be 'left' or 'right')
*/
renderArrow?: (direction: 'left' | 'right') => React.ReactNode;
/**
* Do not show days of other months in month page. Default = false
*/
hideExtraDays?: boolean;
/**
* If hideArrows=false and hideExtraDays=false do not switch month when tapping on greyed out
* day from another month that is visible in calendar page. Default = false
*/
disableMonthChange?: boolean;
/**
* If firstDay=1 week starts from Monday. Note that dayNames and dayNamesShort should still start from Sunday.
*/
firstDay?: number;
/**
* Hide day names. Default = false
*/
hideDayNames?: boolean;
/**
* Show week numbers to the left. Default = false
*/
showWeekNumbers?: boolean;
/**
* Handler which gets executed when press arrow icon left. It receive a callback can go back month
*/
onPressArrowLeft?: (month: number) => void;
/**
* Handler which gets executed when press arrow icon left. It receive a callback can go next month
*/
onPressArrowRight?: (month: number) => void;
/**
* Custom day renderer
*/
dayComponent?: React.Component<DayComponentProps> | React.SFC<DayComponentProps>;
}
export interface DotForMultiDot {
key: string;
color: string;
selectedDotColor?: string;
}
export interface MultiDotMarking {
dots: DotForMultiDot[];
selected?: boolean;
selectedColor?: string;
disabled?: boolean;
}
export interface DotMarking {
selected?: boolean;
marked?: boolean;
selectedColor?: string;
dotColor?: string;
activeOpacity?: number;
disabled?: boolean;
disableTouchEvent?: boolean;
}
export interface PeriodMarking {
textColor?: string;
startingDay?: boolean;
color?: string;
selected?: boolean;
endingDay?: boolean;
disabled?: boolean;
}
export interface MultiPeriodMarking {
periods: Array<{
startingDay?: boolean;
endingDay?: boolean;
color?: string;
}>;
}
export interface CustomMarking {
customStyles: any;
}
export type Marking =
MultiDotMarking |
DotMarking |
PeriodMarking |
MultiPeriodMarking |
CustomMarking;
export interface MultiDotMarkingProps {
markingType: 'multi-dot';
markedDates: {
[date: string]: MultiDotMarking;
};
}
export interface DotMarkingProps {
markingType?: 'simple';
markedDates: {
[date: string]: DotMarking;
};
}
export interface PeriodMarkingProps {
markingType: 'period';
markedDates: {
[date: string]: PeriodMarking;
};
}
export interface CustomMarkingProps {
markingType: 'custom';
markedDates: {
[date: string]: CustomMarking;
};
}
/**
* This type of marking is only fully supported by <Calendar/> as it will expand the height
* of the component
*/
export interface MultiPeriodMarkingProps {
markingType: 'multi-period';
markedDates: {
[date: string]: MultiPeriodMarking
};
}
export type CalendarMarkingProps =
MultiDotMarkingProps |
DotMarkingProps |
PeriodMarkingProps |
MultiPeriodMarkingProps |
CustomMarkingProps |
{};
export class Calendar extends React.Component<CalendarMarkingProps & CalendarBaseProps> {}
export interface CalendarListBaseProps extends CalendarBaseProps {
/**
* Callback which gets executed when visible months change in scroll view. Default = undefined
*/
onVisibleMonthsChange?: (months: number) => void;
/**
* Max amount of months allowed to scroll to the past. Default = 50
*/
pastScrollRange?: number;
/**
* Max amount of months allowed to scroll to the future. Default = 50
*/
futureScrollRange?: number;
/**
* Enable or disable scrolling of calendar list
*/
scrollEnabled?: boolean;
/**
* Enable or disable vertical scroll indicator. Default = false
*/
showScrollIndicator?: boolean;
/**
* Enable horizontal scrolling, default = false
*/
horizontal?: boolean;
/**
* Enable paging on horizontal, default = false
*/
pagingEnabled?: boolean;
/**
* Set custom calendarWidth.
*/
calendarWidth?: boolean;
}
export class CalendarList extends React.Component<CalendarListBaseProps & CalendarMarkingProps> {}
export interface AgendaProps<T> {
/**
* the list of items that have to be displayed in agenda. If you want to render item as empty date
* the value of date key kas to be an empty array []. If there exists no value for date key it is
* considered that the date in question is not yet loaded
*/
items: {
[key: string]: T[];
};
/**
* callback that gets called when items for a certain month should be loaded (month became visible)
*/
loadItemsForMonth?: (date: DateObject) => void;
/**
* callback that fires when the calendar is opened or closed
*/
onCalendarToggled?: (calendarOpened: boolean) => void;
/**
* callback that gets called on day press
*/
onDayPress?: (day: number) => void;
/**
* callback that gets called when day changes while scrolling agenda list
*/
onDayChange?: (day: number) => void;
/**
* initially selected day
*/
selected?: Date | string;
/**
* Minimum date that can be selected, dates before minDate will be grayed out. Default = undefined
*/
minDate?: Date | string;
/**
* Maximum date that can be selected, dates after maxDate will be grayed out. Default = undefined
*/
maxDate?: Date | string;
/**
* Max amount of months allowed to scroll to the past. Default = 50
*/
pastScrollRange?: number;
/**
* Max amount of months allowed to scroll to the future. Default = 50
*/
futureScrollRange?: number;
/**
* specify how each item should be rendered in agenda
*/
renderItem: (item: T, firstItemInDay?: T) => React.ReactNode;
/**
* specify how each date should be rendered. day can be undefined if the item is not first in that day.
*/
renderDay?: (day: DateObject | undefined, item: T) => React.ReactNode;
/**
* specify how empty date content with no items should be rendered
*/
renderEmptyDate?: () => React.ReactNode;
/**
* specify how agenda knob should look like
*/
renderKnob?: () => React.ReactNode;
/**
* specify what should be rendered instead of ActivityIndicator
*/
renderEmptyData?: () => React.ReactNode;
/**
* specify your item comparison function for increased performance
*/
rowHasChanged?: (r1: any, r2: any) => boolean;
/**
* Hide knob button. Default = false
*/
hideKnob?: boolean;
/**
* A RefreshControl component, used to provide pull-to-refresh funtionality for the ScrollView
*/
refreshControl?: React.ReactNode;
/**
* If provided, a standard RefreshControl will be added for "Pull to Refresh" functionality.
* Make sure to also set the refreshing prop correctly.
*/
onRefresh?: () => any;
/**
* Set this true while waiting for new data from a refresh
*/
refreshing?: boolean;
/**
* Display loading indicator. Default = false
*/
displayLoadingIndicator?: boolean;
/**
* agenda theme
*/
theme?: {
agendaDayTextColor?: string;
agendaDayNumColor?: string;
agendaTodayColor?: string;
agendaKnobColor?: string;
} & CalendarTheme;
/**
* agenda container style
*/
style?: StyleProp<ViewProps>;
}
export class Agenda<T> extends React.Component<AgendaProps<T> & CalendarMarkingProps> {}