npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rcm-calendar

v0.7.0

Published

react calendar

Downloads

15

Readme

rcm-calendar

A react calendar view with day, week and month

📦 Install

npm install rcm-calendar
yarn add rcm-calendar

🔨 Usage

import Calendar from 'rcm-calendar';

const App = () => (
  <>
    <Calendar 
      date={date}
      viewType={'week'}
      isWhichHour={"24"}
      isVisibleSolar2lunar={true}
      schedules={[]}
    />
  </>
);

也可以单独引入日、周、月视图: DayCalendar、WeekCalendar、MonthCalendar,

import {WeekCalendar} from 'rcm-calendar';

const App = () => (
  <>
    <WeekCalendar 
      date={date}
      viewType={'week'}
      isWhichHour={"24"}
      isVisibleSolar2lunar={true}
      schedules={[]}
    />
  </>
);

API

日历视图的属性说明如下:

| 属性 | 说明 | 类型 | 默认值 | | --- | --- | --- | --- | | view | 视图类型,有day/week/month | string | - | | date | 视图的显示日期 | Dayjs | dayjs() | | isEnglish | 是否是英语状态 | boolean | false| | isWhichHour | 时间 日视图或周视图的时刻轴的时间类型:24/12 | string | '24' | | schedules | 日程的数据 | ISchedules[] | - | | monthVisibleWeeksCount | 月视图每天显示的日程数 | number | 2 | | isVisibleSolar2lunar | 是否显示农历 | boolean | false | | renderHeaderTemplate | 视图头部的自定义 | ReactNode | - | | alldayName | 全天的名称 | string | 全天 | | clickSchedule | 单个日程的点击事件 | (e, schedule) => void | - | | rightMouseClick | 右键日程 | (e, schedule) => void | - | | clickBlank | 点击空白处 | (e, time) => void | - | | dbclickBlank | 双击空白处 (单双击只能有一个) | (e, time) => void | - | | monthClickMore | 月视图点击还有几项按钮事件 | (e, schedules) => void | - |

ISchedules:日程字段说明

| 属性 | 说明 | 类型 | | --- | --- | --- | | id | id,可以不用传入 | string | | calendarId | calendarId,可以不用传入 | string | | recurrenceId | recurrenceId,可以不用传入 | string | | title | 日程标题 | string | | start | 日程开始时间 | number 时间戳(秒) | | end | 日程结束时间 | number 时间戳(秒) | | isAllDay | 是否是全天日程 | boolean | | location | 日程的地点 | string | | attendees | 日程参与人 | Array | | color | 日程的title颜色 | string | | bgColor | 日程的背景颜色 | string | | borderColor | 日程左边框的颜色 | string | | customStyle | 自定义css | {} | | state | 记录日程的状态 | string | | raw | 用户自定所需要的字段 | {} |