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

react-h5-simple-calendar

v0.0.2

Published

React H5 精简版日历组件

Downloads

9

Readme

react-h5-simple-calendar

简体中文 | English

一款基于 react 的移动端,h5 精简版日历展示组件。

react 移动端日历组件

  1. 支持周视图,周日历
  2. 支持月视图,月日历
  3. 支持左右滑动切换月份
  4. 支持上下滑动切换日历视图
  5. 支持日历上打点标记
  6. 本项目基于dumi 构建和发布
  7. 基于dayjs处理日历逻辑

使用教程

yarn add react-h5-simple-calendar | npm i react-h5-simple-calendar

import dayjs from 'dayjs';
import React, { useState } from 'react';
import { Calendar } from 'react-h5-simple-calendar';

const SimpleCalendar = () => {
  const [currentDate, setCurrentDate] = useState(dayjs().format('YYYY-MM-DD'));

  return (
    <Calendar
      onChange={(dateStr, date) => setCurrentDate(dateStr)}
      showType="week"
      disableView={false}
      markDates={[
        { date: '2024-02-12', markType: 'circle' },
        { markType: 'dot', date: '2024-02-23' },
        { markType: 'circle', date: '2024-02-22' },
        { markType: 'dot', date: '2024-02-17' },
        { date: '2024-02-16' },
      ]}
      markType="dot"
      currentDate={currentDate}
      onSlideChange={(e) => console.log('onSlideChange ', e)}
      onToggleShowType={(e) => console.log('onToggleShowType ', e)}
    />
  );
};
export default SimpleCalendar;

参数设置

| 参数 | 说明 | 默认值 | | :------------------- | :----------------------------------------------------------------------- | :------------------------------------------------------------------- | | currentDate | 当前选择的日期(默认当天),搭配 onChange 使用。比如:2024-02-19 | | | showType | 展示类型支持monthweek | 'month' | | transitionDuration | 切换日期的动画过渡时间 | 0.3 | | onChange | 日期选中回调 | (dateStr: string, date: dayjs.Dayjs) => {} | | onTouchStart | 滑动开始回调 | () => {} | | onTouchMove | 滑动过程中回调 | () => {} | | onSlideChange | 滑动结束回调 | ({ range: [string, string], date: string, dateStr: string }) => {} | | onToggleShowType | 切换月、周视图回调 | ({ showType: string, startTime: string, endTime: string }) => {} | | markType | 标记类型 支持dotcircle | 'dot' | | markDates | 需要标记的日期数组 | [] | | disableView | 禁止切换月、周视图 | false | | language | 语言'zh-CN'、'en-US' | 'zh-CN' | | customHeader | 自定义日期头部(< 2024-02 >),boolean、({ dateStr, date }) => ReactNode | false |

markDates 参数说明

const markDates = [
  { color: '#459', date: '2024-01-02', markType: 'circle' },
  { color: '#a8f', markType: 'dot', date: '2023-12-31' },
  { color: '#a5f', markType: 'circle', date: '2024-02-05' },
  { date: '2024-02-06' },
];
  1. 单个日期不传markType 默认取传入的Marktype
  2. 单个日期不传color 默认是#168eef

赞助

pay.jpg