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

mkd-loadmore

v0.1.3

Published

An loadmore component for vue.js

Downloads

3

Readme

Overview

mkd-loadmore is a two-direction mobile pull-to-refresh component for vue.js.

Installation

$ npm install mkd-loadmore

Usage

Import mkd-loadmore to your project:

require('mkd-loadmore/lib/index.css');

// ES6 mudule
import Loadmore from 'mkd-loadmore';

// CommonJS
const Loadmore = require('mkd-loadmore').default;

Register component:

Vue.component('loadmore', Loadmore);

Then use it:

<loadmore :top-method="loadTop" :bottom-method="loadBottom" :bottom-all-loaded="allLoaded">
  ...
</loadmore>

Example

Visit this page using your mobile device.

<loadmore :top-method="loadTop" :bottom-method="loadBottom" :bottom-all-loaded="allLoaded">
  <ul>
    <li v-for="item in list">{{ item }}</li>
  </ul>
</loadmore>
<loadmore :top-method="loadTop2" :top-status.sync="topStatus">
  <ul>
    <li v-for="item in list2">{{ item }}</li>
  </ul>
  <div slot="top" class="mkd-loadmore-top">
    <span v-show="topStatus !== 'loading'" :class="{ 'rotate': topStatus === 'drop' }">↓</span>
    <span v-show="topStatus === 'loading'">Loading...</span>
  </div>
</loadmore>

For upward direction, pull the component topDistance pixels away from the top and then release it, the function you appointed as top-method will run:

loadTop(id) {
  ...// load more data
  this.$broadcast('onTopLoaded', id);
}

At the end of your top-method, don't forget to broadcast the onTopLoaded event so that mkd-loadmore removes topLoadingText. Note that a parameter called id is passed to loadTop and onTopLoaded. This is because after the top data is loaded, some reposition work is performed inside a mkd-loadmore instance, and id simply tells the component which instance should be repositioned. You don't need to do anything more than passing id to onTopLoaded just as shown above.

For downward direction, things are similar. To invoke bottom-method, just pull the component bottomDistance pixels away from the bottom and then release it.

loadBottom(id) {
  ...// load more data
  this.allLoaded = true;// if all data are loaded
  this.$broadcast('onBottomLoaded', id);
}

Remember to set bottom-all-loaded to true after all data are loaded. And of course broadcast onBottomLoaded with id.

You can customize the top and bottom DOM using an HTML template. For example, to customize the top DOM, you'll need to add a variable that syncs with top-status on loadmore tag, and then write your template with a slot attribute set to top and class set to mkd-loadmore-top. top-status has three possible values that indicates which status the component is at:

  • pull if the component is being pulled yet not ready to drop (top distance is within the distance threshold defined by topDistance)
  • drop if the component is ready to drop
  • loading if topMethod is running

And of course, if a top HTMl template is given, topPullText, topDropText and topLoadingText are all unnecessary.

Don't need to load data from upward direction? Simply omit the topMethod attribute. Same goes to downward.

Upon loaded, loadmore will automatically check if it is tall enough to fill its container. If not, bottom-method will run until its container is filled. Turn off auto-fill if you'd rather handle this manually.

API

| Option | Description | Value | Default | |-------------------|------------------------------------------------------------------|----------|-------------| | autoFill | if true, loadmore will check and fill its container | Boolean | true | | topPullText | top text when the component is being pulled down | String | '下拉刷新' | | topDropText | top text when the component is ready to drop | String | '释放更新' | | topLoadingText | top text while topMethod is running | String | '加载中...' | | topDistance | distance threshold that triggers topMethod | Number | 70 | | topMethod | upward load-more function | Function | | | bottomPullText | bottom text when the component is being pulled up | String | '上拉刷新' | | bottomDropText | bottom text when the component is ready to drop | String | '释放更新' | | bottomLoadingText | bottom text while bottomMethod is running | String | '加载中...' | | bottomDistance | distance threshold that triggers bottomMethod | Number | 70 | | bottomMethod | downward load-more function | Function | | | bottomAllLoaded | if true, bottomMethod can no longer be triggered | Boolean | false |

License

MIT