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-flexlist

v1.1.1

Published

A pull-down slider react component

Downloads

6

Readme

react-flexlist

一个通用的下拉上滑刷新组件

npm install react-flexlist --save-dev

配置如下

建议配合redux编写 每次触发refresh或者loadMore事件的时候 需要外部改变data的值 redux这方面做的不错

所有配置项写在 options 属性上,

  • toDownTmpl 自定义下拉显示的背景 样式由用户维护
  • height 默认列表外层盒子高度(一般来讲是设备高度 - 除去list盒子之外的高度) 默认500px
  • tabName 如果有多个下拉刷新列表 需要传入每次切换对应的列表name 默认'' (单个列表无需传值)
  • refresh 下拉刷新事件(返回必须是一个promise) 由用户自己维护
  • loadMore 上滑加载更多的事件(返回必须是一个promise)由用户自己维护
  • toDownDistance 向下拖动的距离(单位:Number) 默认100px
  • childrenClassName 建议最好指定组件下的children的className名称(貌似react 16版本以上可以不传值获取到classname,低于16貌似不行待验证)

小提示

refresh/loadMore 采用new Promise最好 async/await需要额外引入babel-polyfill

特别说明

  1. 如果初始列表数据/刷新数据 小于设置的外层盒子高度 默认不会触发上滑,只有下拉刷新事件

  2. 需要在项目下自行引入react、react-dom、babel等react运行环境所需的库

  3. 数据源需要用户自己维护 每次刷新/加载更多数据时候 再次传入data的值给list

示例如下:

import ReactFlexList from 'react-flexlist'

refresh () {
    let _data = this.state.data
    return Ajax('/getOrderList.json')
        .then((resolved, rejected) => {
            let a = resolved.data
            this.setState({
                data: a
            })
            return a
        })
}

loadMore () {
    let _data = this.state.data
    return Ajax('/getOrderList.json')
        .then((resolved, rejected) => {
            let a = _data.concat(resolved.data)
            this.setState({
                data: a
            })
            return a
        })
}

<ReactFlexList
    options = {{
        toDownTmpl: `<div>这是自定义下拉背景的html<div>`,
        height: '200px',
        refresh: refresh,
        loadMore: loadMore,
        toDownDistance: 300,
        childrenClassName: 'testUlName'
    }}
>
    <ul className= 'testUlName'>
        {
            data.list.map((item, index) => {
                return (
                    <li key = {index}>{item}</li>
                )
            })
        }
    </ul>
</ReactFlexList>