react-mui-scheduler-ru
v3.1.0
Published
π React mui scheduler is a react component based on @mui v5 that allows you to manage data in a calendar
Downloads
2
Maintainers
Readme
React mui scheduler is a react component based on @mui v5 that allows you to manage events in a calendar.
π Installation
npm install react-mui-scheduler
π» Usage
import React, { useState } from "react";
import ReactDOM from "react-dom";
import Scheduler, { Event, Mode, StartWeek, TransitionMode } from "react-mui-scheduler";
import PlayCircleOutlineIcon from "@mui/icons-material/PlayCircleOutline";
import AutorenewIcon from "@mui/icons-material/Autorenew";
import ArchiveIcon from "@mui/icons-material/Archive";
import LocalPrintshopIcon from "@mui/icons-material/LocalPrintshop";
const App = () => {
const [state] = useState({
options: {
transitionMode: TransitionMode.ZOOM, // or TransitionMode.FADE
startWeekOn: StartWeek.MON, // or StartWeek.SUN
defaultMode: Mode.MONTH, // or Mode.WEEK | Mode.DAY | Mode.TIMELINE
minWidth: 540,
maxWidth: 540,
minHeight: 540,
maxHeight: 540,
reverseTimelineOrder: false,
},
alertProps: {
open: true,
color: "info", // info | success | warning | error
severity: "info", // info | success | warning | error
message: "π Let's start with awesome react-mui-scheduler π₯ π₯ π₯",
showActionButton: true,
showNotification: true,
delay: 1500,
},
toolbarProps: {
showSearchBar: true,
showSwitchModeButtons: {
showMonthButton: true,
showWeekButton: true,
showDayButton: true,
showTimelineButton: true,
},
showDatePicker: true,
showTodayAction: true,
showOptions: true,
optionMenus: [
{
label: "Read events",
icon: <PlayCircleOutlineIcon fontSize="small"/>,
},
{
label: "Refresh",
icon: <AutorenewIcon fontSize="small"/>,
},
{
label: "Export",
icon: <ArchiveIcon fontSize="small"/>,
},
{
label: "Print",
icon: <LocalPrintshopIcon fontSize="small"/>,
},
],
},
});
const events = [
{
id: "event-1",
label: "Medical consultation",
groupLabel: "Dr Shaun Murphy",
user: "Dr Shaun Murphy",
color: "#f28f6a",
startDate: new Date("2022-05-05 04:00"),
endDate: new Date("2022-05-05 05:00"),
createdAt: new Date(),
createdBy: "Kristina Mayer",
},
{
id: "event-2",
label: "Medical consultation",
groupLabel: "Dr Claire Brown",
user: "Dr Claire Brown",
color: "#099ce5",
startDate: new Date("2022-05-09 09:00"),
endDate: new Date("2022-05-09 10:00"),
createdAt: new Date(),
createdBy: "Kristina Mayer",
},
{
id: "event-3",
label: "Medical consultation",
groupLabel: "Dr Menlendez Hary",
user: "Dr Menlendez Hary",
color: "#263686",
startDate: new Date("2022-05-10 13:00"),
endDate: new Date("2022-05-10 14:00"),
createdAt: new Date(),
createdBy: "Kristina Mayer",
},
{
id: "event-4",
label: "Consultation prΓ©natale",
groupLabel: "Dr Shaun Murphy",
user: "Dr Shaun Murphy",
color: "#f28f6a",
startDate: new Date("2022-05-11 08:00"),
endDate: new Date("2022-05-11 09:00"),
createdAt: new Date(),
createdBy: "Kristina Mayer",
},
];
const handleCellClick = (event: React.MouseEvent<HTMLTableCellElement, MouseEvent>, row: any, day: any) => {
// Do something...
};
const handleEventClick = (event: React.MouseEvent<HTMLDivElement, MouseEvent>, task: Event) => {
// Do something...
};
const handleEventsChange = (item: Event) => {
// Do something...
};
const handleAlertCloseButtonClicked = (event: React.MouseEvent<HTMLButtonElement, MouseEvent>) => {
// Do something...
};
const handleDateChange = (day: number, date: number | Date | null) => {
// Do something...
};
return (
<Scheduler
locale="en"
events={ events }
legacyStyle={ false }
options={ state?.options }
alertProps={ state?.alertProps }
toolbarProps={ state?.toolbarProps }
onEventsChange={ handleEventsChange }
onCellClick={ handleCellClick }
onTaskClick={ handleEventClick }
onAlertCloseButtonClicked={ handleAlertCloseButtonClicked }
onDateChange={ handleDateChange }
/>
);
};
ReactDOM.render(<App/>, document.querySelector("#yourComponentRootId"));
Event structure
| Name | Type | Required | Details |
|------------|--------------------|----------|------------------------------------------------------------|
| id | number \| string
| true
| Unique id for every event |
| label | string
| true
| |
| color | string
| false
| If not set, the primary color of the theme will be applied |
| groupLabel | string
| true
| |
| startDate | Date
| true
| Starting Date object of the event |
| endDate | string
| true
| Ending Date object of the event |
For more details about date formats, see date-fns docs
Props
| Name | Type | Default | Description | Values |
|---------------------------|--------------|---------|------------------------------------------------------------------|--------------------------------------------------------|
| locale | string | enUS
| This prop is used to set the locale of the scheduler | ar
, br
, de
, enUS
, es
, fr
, ja
, ko
, zh
|
| events | Event[] | | This prop sets event events | |
| legacyStyle | boolean | false
| This prop allows to use the old display style | false
, true
|
| options | Option | | This prop is used to set scheduler properties | |
| alertProps | AlertProps | | This prop is used to set scheduler properties | |
| toolbarProps | ToolbarProps | | This prop is used to set toolbar properties | |
| onEventsChange | event | | This event is fired when the event change occurs | |
| onCellClick | event | | This event is fired when a cell is clicked | |
| onTaskClick | event | | This event is fired when a task is clicked | |
| onAlertCloseButtonClicked | event | | This event is fired when the close button of the alert component | |
| onDateChange | event | | This event is fired when a date from the DatePicker is clicked | |
Options
| Name | Type | Default | Description | Values |
|-----------------------------|----------------|-----------------------|----------------------------------------------------------------------------------------|----------------------------------------------------------------------|
| transitionMode | TransitionMode | TransitionMode.ZOOM
| This option is used to define the type of scheduler transition | TransitionMode.ZOOM
, TransitionMode.FADE
, TransitionMode.SLIDE
|
| startWeekOn | StartWeek | StartWeek.MON
| This option is used to set the start of the calendar week to Monday or Sunday | StartWeek.MON
, StartWeek.SUN
|
| defaultMode | Mode | Mode.WEEK
| This option allows you to define the type of view to display | Mode.MONTH
, Mode.WEEK
, Mode.DAY
, Mode.TIMELINE
|
| minWidth | number | 540
| This option allows you to define the minimum width of the container | number
|
| maxWidth | number | 540
| This option allows you to define the maximum width of the container | number
|
| minHeight | number | 540
| This option allows you to define the minimum height of the container | number
|
| maxHeight | number | 540
| This option allows you to define the maximum height of the container | number
|
| reverseTimelineOrder | boolean | false
| This option allows you to define the order of events displayed in Timeline view | false
, true
|
| displayTimelineByGroupLabel | boolean | false
| This option allows you to display multiple timelines to display events by group labels | false
, true
|
alertProps
| Name | Type | Default | Description | Values |
|------------------|------------|------------------------------------------------------------|---------------------------------------------------------------------------------|---------------------------------------|
| open | boolean | true
| This option opens the notification Alert component | true
, false
|
| color | AlertColor | info
| Alert notification color | info
, success
, warning
, error
|
| severity | AlertColor | info
| Alert notification severity | info
, success
, warning
, error
|
| message | string | π Let's start with awesome react-mui-scheduler π₯ π₯ π₯
| Alert notification message to display | string
|
| showActionButton | boolean | true
| This option displays or not the action button on the Alert | true
, false
|
| showNotification | boolean | true
| This option allows to display or not a notification when events change | true
, false
|
| delay | number | 1500
| This option allows you to define the display delay in milliseconds of the Alert | |
toolbarProps
| Name | Type | Default | Description | Values |
|------------------------------------------|---------|---------|--------------------------------------------|-----------------|
| showSearchBar | boolean | true
| Show or hide the search bar | true
, false
|
| showSwitchModeButtons | object | | | |
| showSwitchModeButtons.showMonthButton | boolean | true
| Show or hide the view mode button month | true
, false
|
| showSwitchModeButtons.showWeekButton | boolean | true
| Show or hide the view mode button week | true
, false
|
| showSwitchModeButtons.showDayButton | boolean | true
| Show or hide the view mode button day | true
, false
|
| showSwitchModeButtons.showTimelineButton | boolean | true
| Show or hide the view mode button timeline | true
, false
|
| showDatePicker | boolean | true
| Show or hide the date picker buttons | true
, false
|
| showTodayAction | boolean | true
| Show Today button when opening DatePicker | true
, false
|
| showOptions | boolean | true
| Show options menu | true
, false
|
| optionMenus | object | | Options to display when opening menu | |
Methods
| Method | Params | Type | Description |
|-----------------------------|---------------------------------------------------------------------------------|-------|----------------------------------------------------------------------|
| onCellClick
| event: React.MouseEvent<HTMLTableCellElement, MouseEvent>, row: any, day: any
| Event | Triggered when clicking on a cell |
| onEventsChange
| item: Event
| Event | Triggered when clicking on an event |
| onAlertCloseButtonClicked
| event: React.MouseEvent<HTMLButtonElement>
| Event | Triggers when clicking on the close button of the notification alert |
| onTaskClick
| event: React.MouseEvent<HTMLDivElement, MouseEvent>, task: Event
| Event | Triggers when clicking on a task event |
| onDateChange
| day: number, date: number \| Date \| null
| Event | Triggers when clicking on a date from the DatePicker |
π Authors
- Muller Roufaou (rouftom)
- David Sanchez (emulienfou)
π€ FAQ
Where can I find more documentation?
This library is a marriage of @mui and a React setup created with React. Either one would be a great place to start!
πββοΈ Extra
Do you like this library ? Buy me a coffee or support me with a star on Github
Btc address:
bc1qettgagenn9nc8ks7ghntjfme96yvvkfhntk774
Eth address:
0xB0413d8D0336E263e289A915c383e152155881E0
π₯ Some features to add in next releases
- β Week, day and timeline mode switch view
- π Option menu
- π Export events as PDF and CSV
- β Internationalization
- β Typescript support
- β Display style customization
License
react-mui-scheduler
MIT License
Copyright (c) 2022 rouftom Copyright (c) 2023 emulienfou
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.