码迷,mamicode.com
首页 > 其他好文 > 详细

[React] 基于react 拖拽时间选择器

时间:2020-06-16 13:29:16      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:http   OLE   install   www   选择   更新   use   ems   开始   

上图:技术图片

基于react-selectable-fast开发的一个鼠标拖拽时间段选择器。

github地址:https://github.com/ozx174/time-period-selector.git

示例demo:
git clone https://github.com/ozx174/time-period-selector.git

yarn install or npm install
yarn start or npm start

 

使用方法:

yarn add @congbao/time-period-selector 或者 npm install @congbao/time-period-selector

import TimePeriodSelector from ‘@congbao/time-period-selector‘

import ‘@congbao/time-period-selector/lib/main.min.css‘

<TimePeriodSelector defaultSelected={[1, 2, 3, 4] onSelectionFinish={(items) => { console.log(items) }} /}

#defaultSelected

传入数组为选中格子下标,从左到右,从上到下,从0开始。

#onSelectionFinish

传入选择后回调函数。参数是选中后的格子

items => []

item => {column: 0, row:0, index: 0}

index为格子下标,从左到右,从上到下

column代表时间点,从0开始

row代表星期几,从0开始

 

这个组件是预先开发的,后台还没定义好数据格式,所以还没做时间段数据转换的优化。后面继续更新。

 

[React] 基于react 拖拽时间选择器

标签:http   OLE   install   www   选择   更新   use   ems   开始   

原文地址:https://www.cnblogs.com/cong-bao/p/13140145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!