1.3.4 • Published 4 years ago

mui-event-list v1.3.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Mui Event List

A Google calendar inspired event list using Material-UI for React.

Installation

This package depends on Material-UI components, so make sure you have it installed.

npm i @material-ui/core

To install this package,

npm i mui-event-list

Usage

Out-of-the-box

Import MuiEventList into any of your components.

import MuiEventList from "mui-event-list";

Construct the component.

<MuiEventList data={data} />

data object is an array of events you want to display, in the format:

data = event[];
interface event {
  dateTime: Date | string; // required
  description?: string; // optional
  location?: string; // optional
}

MuiEventList will sort your data according to dateTime property in ascending order, and display each event by groups of dates and months.

The component is designed to be styled according to the ThemeProvider you are using in the higher order components. If none has been provided, the default theme provided by Material-UI shall be used.

sample_image

Advanced

Styling and Theming

To apply custom styling specific to MuiEventList, you may wrap ThemeProvider like so.

<ThemeProvider theme={customTheme}>
  <MuiEventList data={data} />
</ThemeProvider>

More information can be found on Material-UI's theming guide.

Custom Components

You can build your own components to be integrated into MuiEventList. For example, you can design and use a unique MonthBlock.

Adhere to the API provided, and pass your component like so:

// using class components
class MonthBlock extends React.Component {
  render() {
    return (
      <div>
        <p>this month is: {this.props.dateTime}</p>
      </div>
    )
  }
}

// or using functional components (recommended)
const MonthBlock = props => {
  const { dateTime } = props;
  return (
    <div>
      <p>this month is: {dateTime}</p>
    </div>
  )
}

<MuiEventList data={data} components={{monthBlock: MonthBlock}}

API Reference

MuiEventList

NameTypeRequiredDescription
dataarrayyesA list of events to be rendered.
components{ monthBlock, eventBlock, listIcon }noTo pass in custom components that override the ui.

MonthBlock

MonthBlock

Props

NameTypeExampleDescription
dateTimeDate2020-05-09T10:25:14.123ZdateTime value of first event part of a group of events falling under the same month.

EventBlock

EventBlock

Props

NameTypeExampleDescription
event{ date: Date, description?: string, location?: string }{ date: 2020-04-09T10:25:14.123Z, description: "Conversation engineering", "location": "291" }Event objects passed as an array in data.

ListIcon

ListIcon

Props

NameTypeExampleDescription
dateTimeDate2020-04-09T10:01:14.123ZdateTime value of first event part of a group of events falling under the same date.
1.3.4

4 years ago

1.3.3

4 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

0.1.1

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago