![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Register swipe events for dom elements on your mobile websites and get callbacks.
npm install swipeable --save
var swipeable = require('swipeable');
swipeable(<DOM_NODE>, callback, options);
On a valid swipe, callback params are of the form:
{
left: true,
right: false,
top: false,
bottom: false
}
/*
* The above callback indicated that the user swiped from left to right.
* For right to left: The right key is set to true.
* For Top to bottom: The top key is set to true.
* For Bottom to Top: The bottom key is set to true.
*/
Options is an object consisting of the following overrides.
{
timeThreshold: 200, // Time duration(ms) during which the swipe should occur
distanceThreshold: 200 // Minimum distance required to register a valid swipe
}
/*
* The time duration should be specified in milliseconds.
* The timeThreshold defaults to 300ms.
*
* Distance is specified equivalent to scroll distance.
* The distance threshold defaults to 100.
*/
var swipeable = require('swipeable'),
node = document.getElementById('container');
function onSwipe(params) {
console.log(params);
/*
* Prints params in the following format:
* { left: true, right: false, bottom: false, top: false }
*/
};
swipeable(node, onSwipe);
Add a ref to the element on which swipe needs to be detected and register event in component did mount.
import React from 'react';
import swipeable from 'swipeable';
const Container extends React.Component {
constructor(props) {
super(props);
this.state = {
// state
};
this.onScroll = this.onScroll.bind(this);
}
componentDidMount() {
swipeable(this.refs.node, this.onScroll);
}
onScroll(params) {
/*
* Params are in the following format:
* { left: true, right: false, bottom: false, top: false }
* The above indicates Left to right scroll.
*/
}
render() {
return (
<div ref="node">
// JSX
</div>
);
}
}
export default Container;
FAQs
Swipe event with callbacks
We found that swipeable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.