Skip to content

conpagoaus/react-native-week-view

 
 

Repository files navigation

tests linter codeql

react-native-week-view

The week view component for react-native.

  • Supported in Android and iOS
  • Many user interactions supported: drag and drop events, edit events, swipe through pages, event press, grid press, etc
  • Customizable styles
  • Multiple locale support

weekView

Table of Contents

Installation

npm install --save react-native-week-view

or

yarn add react-native-week-view

Requirements: install peer dependencies react-native-gesture-handler v2 and react-native-reanimated v2, which we use to provide smoother interactions and animations (e.g. drag and drop). Required by react-native-week-view since versions 0.17.0 and higher.

Compatibility:

react-native-week-view react-native
>= 0.7.0 >= 0.59
>= 0.17.0 >= 0.60.0

Basic usage

import WeekView from 'react-native-week-view';

const myEvents = [
  {
    id: 1,
    description: 'Event',
    startDate: new Date(2021, 3, 15, 12, 0),
    endDate: new Date(2021, 3, 15, 12, 30),
    color: 'blue',
    // ... more properties if needed,
  },
  // More events...
];

const MyComponent = () => (
  <WeekView
    events={myEvents}
    selectedDate={new Date(2021, 3, 15)}
    numberOfDays={7}
  />
);

Example use cases

See dedicated docs with common usages and example code.

Changelog

API is still unstable, minor updates before v1.0.0 can include breaking changes, adhering to Semantic Versioning. See CHANGELOG.md for details.

Full API

Props

Prop name Type Default Description
events Array required Events to display, in Event Item format (see below).
selectedDate Date required Date to show the week-view in the first render. Note: changing this prop after the first render will not have any effect in the week-view; to actually move the week-view, use the goToDate() method, see below.
numberOfDays Number, one of 1, 3, 5, 7 required Number of days to show in the week-view.
Gesture
interactions
onEventPress Function: (event) => {} null Callback when an event item is pressed, receives the event-item pressed: (event) => {}.
onEventLongPress Function: (event) => {} null Callback when an event item is long pressed, same signature as onEventPress.
onSwipeNext Function: (date) => {} null Callback when week-view is swiped to next week/days, receives new date shown.
onSwipePrev Function: (date) => {} null Callback when week-view is swiped to previous week/days, same signature as onSwipeNext.
onGridClick Function: (pressEvent, startHour, date) => {} null Callback when the grid view is pressed. Arguments: pressEvent: object passed by the react-native-gesture-handler touch events (not an event item); startHour: Number, hour pressed; date Date, date object indicating day and time pressed with precision up to seconds. Note: startHour is redundant (can be extracted from date), but is kept for backward-compatibility.
onGridLongPress Function: (pressEvent, startHour, date) => {} null Callback when the grid view is long-pressed. Same signature as onGridClick
onDayPress Function: (date, formattedDate) => {} null Callback when a day from the header is pressed.
onMonthPress Function: (date, formattedDate) => {} null Callback when the month at the top left (title) is pressed.
onTimeScrolled Function: (dateWithTime) => {} null Callback when the agenda is scrolled vertically.
onDragEvent Function: (event, newStartDate, newEndDate) => update DB null Callback when an event item is dragged to another position. Arguments: event: event-item moved, and the newStartDate and newEndDate are Date objects with day and hour of the new position (precision up to minutes). With this callback you must trigger an update on the events prop (i.e. update your DB), with the updated information from the event.
onEditEvent Function: (event, newStartDate, newEndDate) => update DB null Callback when an event item is edited by dragging its borders.
editingEvent Number String null_
editEventConfig {bottom: bool, top: bool, left: bool, right: bool} null_ {bottom: true}
Week-view
customizations
startHour Number, in hours 8 (8 am) Vertical position of the week-view in the first render (vertically in the agenda).
weekStartsOn Number 1 (Monday) First day of the week, i.e. day to show at the left of the week-view (0 is Sunday, 1 is Monday, and so on). Only useful when numberOfDays === 7 or fixedHorizontally is true.
showTitle Boolean true Show or hide the selected month and year in the top-left corner (a.k.a the title).
hoursInDisplay Number, in hours 6 Amount of hours to display vertically in the agenda. Increasing this number will make the events look smaller.
beginAgendaAt Number, in minutes 0 (0h) Time of day to start the agenda at the top (grid above is left out). For example, for 8 am set beginAgendaAt={8*60}.
endAgendaAt Number, in minutes 24 * 60 (24h) Time of day to end the agenda at the bottom (grid below is left out). For example, for 10pm set engAgendaAt={22*60}.
timeStep Number, in minutes 60 Number of minutes to use as step in the time labels at the left. Increasing this number will increase the vertical space between grid lines.
formatDateHeader String "MMM D" (e.g. "Apr 3") Formatter for dates in the header. See all formatters in momentjs.
formatTimeLabel String "H:mm" (24 hours) Formatter for the time labels at the left. Other examples, AM/PM: "h:mm A" or "h:mm a" for lowercase. See all formatters in momentjs.
timesColumnWidth Number 0.18 (18% of screen-width) Customize the width of the times column at the left. If the value is in range 0..1 indicates a percentage of the screen width (e.g. 0.18 --> 18%). Otherwise is the amount of pixels (e.g. 40 pixels).
EventComponent ReactComponent Text Custom component rendered inside an event. By default, is a Text with the event.description. See sub-section below for details on the component.
TodayHeaderComponent ReactComponent null Custom component to highlight today in the header (by default, today looks the same than every day). See details in sub-section below
DayHeaderComponent ReactComponent null Custom component to show each day in the header. If provided, overrides TodayHeaderComponent. See details in sub-section below
showNowLine Boolean false If true, displays a line indicating the time right now.
nowLineColor String red (#E53935) Color used for the now-line.
fixedHorizontally Boolean false If true, the component can be used to display a single fixed week. See example in sub-section below.
isRefreshing Boolean false When true, the week-view will show an <ActivityIndicator /> in the middle of the grid.
RefreshComponent ReactComponent ActivityIndicator Custom component used when isRefreshing is true. See example below.
locale String "en" Locale for the dates (e.g. header). There's an addLocale() function to add customized locale, see below.
rightToLeft Boolean false If true, render older days to the right and more recent days to the left.
Style
props
headerStyle Object - Custom styles for header container. Example: { backgroundColor: '#4286f4', color: '#fff', borderColor: '#fff' }
headerTextStyle Object - Custom styles for text inside header. Applied to day names and month name (i.e. title)
hourTextStyle Object - Custom styles for text displaying hours at the left.
eventContainerStyle Object - Custom styles for each event item container. Note: the background color and (absolute) positioning are already set.
Grid lines
props
gridRowStyle Object width: 1, color: grey (#E9EDF0) Prop to customize width and color of horizontal lines, provide: { borderTopWidth: <width>, borderColor: <color> }
gridColumnStyle Object same as above Prop to customize width and color of vertical lines, provide: { borderLeftWidth: <width>, borderColor: <color> }
Horizontal list optimizations
(see known issues)
windowSize Number 5 Number of pages to render at the same time. One page is composed by numberOfDays days. See in optimizing FlatList docs
initialNumToRender Number 5 Initial number of pages to render. See in optimizing FlatList docs
maxToRenderPerBatch Number 2 See in optimizing FlatList docs.
updateCellsBatchingPeriod Number 50 See in optimizing FlatList docs
Other props
(patch RN bugs)
prependMostRecent Boolean false If true, the horizontal prepending is done in the most recent dates when scrolling. See known issues

Event Item

{
  // Basic fields:
  id: 1,
  description: 'Event',
  startDate: new Date(2021, 3, 15, 12, 0),
  endDate: new Date(2021, 3, 15, 12, 30),
  color: 'blue',

  // Special fields for extra features, details below. e.g.:
  style: { borderColor: 'red' },

  // ... your custom fields if needed,
}

Special fields

There are some fields in the EventItem that provide extra customizations for each event.

  • Style per event
  • Disable user interactions (e.g. drag, press)
  • Event overlap handling see more details.
Extra EventItem fields Type Default Description
style Object null Provide extra styling for the container.
disableDrag bool false Disables drag-and-drop interaction.
disablePress bool false Disables onPress interaction.
disableLongPress bool false Disables onLongPress interaction.
Event overlaps
resolveOverlap 'lane' | 'stack' | 'ignore' 'lane' Defines the method to resolve overlaps for that event.
stackKey String null Limit the events it can be stacked with. If is null, it can be stacked with any other event. Only useful if resolveMethod = 'stack'

Methods

  • goToDate(date, animated = true): navigate to a custom date.
  • goToNextPage(animated = true): navigate to the next page (to the future).
  • goToPrevPage(animated = true): navigate to the previous page (to the past).
  • scrollToTime(minutes, options = { animated = false }): scroll vertically to a time in the day, provided in minutes. For example, scroll to 13:00 hrs: ref.scrollToTime(13 * 60).

To save a reference to the component:

<WeekView
  // class components:
  ref={(ref) => { this.weekViewRef = ref; }}
  // functional components:
  ref={weekViewRef} // with `const weekViewRef = React.useRef()`
/>

Custom components

Further customize the week-view by providing your own components.

Custom Event item component

The custom component will be rendered inside a TouchableOpacity, which has the background color set to event.color, and is placed with absolute position in the grid. The component receives two props:

  • event (Event) - Event item as described before.
  • position: (Object) - object containing top, left, height and width values in pixels.

For example, to display an icon inside each event, such as a react-native-elements Icon:

const MyEventComponent = ({ event, position }) => (
  <Icon
    name={event.iconName}
    type={event.iconType}
    color={event.color}
    size={position.height}
  />
);

<WeekView
  // ... other props
  EventComponent={MyEventComponent}
/>

Custom Day header component

(Note: first you should check if the props headerStyle, headerTextStyle and/or formatDateHeader are enough for your use case).

Use these props to fully customize the days in the header.

  • TodayHeaderComponent: to highlight today in the header, by rendering it differently from the other days.
  • DayHeaderComponent: to render every day in the header. Overrides the prop TodayHeaderComponent.

Both components would receive these props:

  • date (moment Date) - moment date object containing today's date.
  • formattedDate (String) - day formatted according to formatDateHeader, e.g. "Mon 3".
  • textStyle (Object) - text style used for every day.
  • isToday (Bool) - indicate if the date is today or not.

Examples:

// Highlight today with a bold font
const MyTodayComponent = ({ formattedDate, textStyle }) => (
  <Text style={[textStyle, { fontWeight: 'bold' }]}>{formattedDate}</Text>
);

// Add text to the header
const MyDayComponent = ({ formattedDate, textStyle, isToday }) => (
  <Text style={textStyle}>Some text - {formattedDate}</Text>
);

<WeekView
  TodayHeaderComponent={MyTodayComponent}
  // or:
  DayHeaderComponent={MyDayComponent}
/>

Locales customization

There's a addLocale function to add customized locale for the component. The component depends on momentjs, you can refer to https://momentjs.com/docs/#/customization/ for more information.

Example:

export WeekView, { addLocale } from 'react-native-week-view';
// add customized localed before using locale prop.
addLocale('fr', {
  months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
  monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
  weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
  weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
});

Custom RefreshComponent

  • RefreshComponent is a ReactComponent that receives a style prop that must be used (since it sets the component position).
  • Note: the ActivityIndicator default color in some devices may be white.

Example:

const MyRefreshComponent = ({ style }) => (
  <Text style={style}>loading...</Text>
);

<WeekView
  // ... other props
  RefreshComponent={MyRefreshComponent}
/>

Known issues

We try to make all user interactions and animations as smooth as possible, but we have seen issues in some cases.

Glitch when swiping to new pages

  • When navigating to a new distant date (e.g. using weekViewRef.goToDate(someDistantDate)) there may be a delay on the animation
  • Flicker issue when swiping to one side
    • See hoangnm#39 for details
    • As a workaround, you can prioritize navigations to the past XOR to the future:
      • if prependMostRecent={false} (default) the swiping to the future will be smooth, but the swiping to the past pages may have glitches
      • if prependMostRecent={true}, the swiping to the past will be smooth, but swiping to the future may have glitches
  • There may be blank spaces when swiping right or left
    • See hoangnm#243 for details
    • You can workaround this by customizing the horizontal list optimization props listed in the API
    • See RN docs about optimizing FlatList props
    • Note: we have not fully tested these props

Contributors

Made with contrib.rocks.

About

Week View Component for react-native

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 74.9%
  • Java 12.1%
  • C++ 5.5%
  • Objective-C++ 2.9%
  • Objective-C 1.9%
  • Makefile 1.2%
  • Other 1.5%