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

mdrag

v1.2.0

Published

no dependancy, minimum but strong drag lib for both dom and virtual dom support

Downloads

13

Readme

mdrag

no dependancy, minimum but strong drag lib for both dom and virtual dom support

Install

  • NodeJS:
npm install -S mdrag
  • Browser:

unpkg

<script src="https://unpkg.com/mdrag"></script>

Manually

  1. download dist/mdrag.iife.js file into your folder

  2. included mdrag.iife.js in your html, no dependancy

<script type="text/javascript" src="js/mdrag.iife.js"></script>

Usage

use with DOM

// create any div, or exists...
var clip = document.createElement('div')
clip.style.cssText = "position:absolute; z-index:999; border:1px dotted red"
document.body.appendChild(clip)

var clipDrag = mdrag({});	// param can be empty or some options {...}

document.body.onmousedown = 
clipDrag(
	'clip',	// a name for the dragInstance
	function(e, data){ 	// when mouse move
		clip.style.left = data.ox + 'px'
		clip.style.top = data.oy + 'px'
		clip.style.width = -data.dx + 'px'
		clip.style.height = -data.dy + 'px'
	},
	function(e, data){	// when mouse up
		console.log('drag complete..')
	}	
)

This way you can do any thing using javascript, like boundary check, etc.

use with V-DOM(e.g. mithril)


m('div.draggable', 
	{onmousedown: 
		clipDrag(
			'clip2', 
			{ onmousedown:function(){ m.redraw.strategy('none') } }, // hook down event, prevent mithril auto-redraw system
			function(evt, data){  /*do some thing with mousemove...*/ },		// when move
			function(evt, data){  /*do some thing with mouseup...*/ }		// when up
		)
	}
)

API

mdrag([options]) => downHandler

create drag root factory, return a function that can be handler for mousedown etc.

options is js object, can be following key:

  • revertOnFail: boolean(default true), when move event return false, mdrag will stop drag then, if this option is true, will revert to previous data
  • touch: boolean(default auto detect), if false, will force using mouse event instead of touch event through the browser has touchmove event. useful in phantom etc.

{downHandler}( name, [userdata], moveFunc, upFunc )

the handler function returned from mdrag, which can be using as handler for onmousedown/touchstart or anything you want to trigger a drag

  • name: string, save internally to back reference, this will allow you to get drag status at any time, make 2 drag interact etc.
  • userdata: object, that can pass in customer key&val, can accessable using data.user in moveFunc and upFunc function
    • onmousedown: special property for userdata, which will invoked when downevent happens, can be used to hook the downevent.
  • moveFunc: function, with 3 parameters( evt, data, root )
    • evt is mousemove/touchmove event object
    • data is object, as below
    {
    	ox: number	// mouse position (pageX) when dragstart (e.g. mousedown)
    	oy: number	// mouse position (pageY) when dragstart (e.g. mousedown)
    	dx: number	// mouse position difference with ox when move occur (e.g. mousemove)
    	dy: number	// mouse position difference with oy when move occur (e.g. mousemove)
    	pageX: number	// pageX from the event
    	pageY: number	// pageY from the event
    	user: object	// user data passed with param `userdata`, see above; if omit, this will be {}
    }
  • upFunc: function, parameters same as moveFunc

{downHandler}.destroy()

destroy the drag instance, and remove all event listener

Tests

Using ptest to test with phantomjs, run pre-recorded action, make snapshot, and then compare with right snapshot image.

If the two image is same, test passed, else test failed.

ptest is another lib that still WIP, will open source at some later time.

Copyright

MIT