New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

reactaccelerometervalue

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reactaccelerometervalue

The most easiest way to obtain the accelerometer and orientation values of your device in React JS.

latest
Source
npmnpm
Version
0.1.8
Version published
Maintainers
1
Created
Source

NPM Package License follow on Twitter

React-Accelerometer-Value

The most easiest way to obtain the accelerometer and orientation values of your device in React JS.

View Demo · Report Bug · Request Feature

This is an improvised version of React Accelerometer and almost similar to React Native Expo Sensor . It will run efficiently in the latest versions of React. I have also made notable changes in the way the accelerometer value is calculated according to the latest Sensor API Documentation.

Installation

npm install --save reactaccelerometervalue
// or
yarn add reactaccelerometervalue

Usage

The React-Accelerometer-Value is a parent component with the value of orientation and accelerometer values are passed as children values. Therefore, to obtain the values the best way is to wrap your component that you need the value to display in as a Child component inside the ReactAccelerometerValue.

In App.js

import React from "react";
import ReactAccelorometerValue from 'reactaccelerometervalue'
import List from './List'

class App extends React.Component {
  constructor(props) {
    super(props);
  }
  render() {
    return (
      <div >
        <ReactAccelorometerValue>
          <List></List>
        </ReactAccelorometerValue>
      </div>
    );
  }
}
export default App

In List.js

import React,{Component} from 'react';

class List extends Component {
    constructor(props) {
        super(props)
    }
    render(){
        console.log(this.props)
        return(
            <div>
                <ul>
                <li>Is it landscape:{this.props.state.landscape.toString()} </li>
                <li>x:{this.props.state.x}</li>
                <li>y:{this.props.state.y}</li>
                <li>z:{this.props.state.z}</li>
                <li>rotation alpha:{this.props.state.rotation.alpha}</li>
                <li>rotation beta:{this.props.state.rotation.beta}</li>
                <li>rotation gamma:{this.props.state.rotation.gamma}</li>
                </ul>
            </div>
        )
    }
}

export default List;

(Back to top)

Test

npm test
// or
yarnpkg test

Roadmap

  • Improvise to support latest React versions
  • Resolve IOS 13+ Gyroscope Permission Request Issues
  • Build an example app

(Back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/AmazingFeature)
  • Commit your Changes (git commit -m 'Add some AmazingFeature')
  • Push to the Branch (git push origin feature/AmazingFeature)
  • Open a Pull Request

(Back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(Back to top)

Contact

Author - @raomahesh98 - raomahesh610@gmail.com

Project Link: https://github.com/maheshrao98/React-Accelerometer-Value

(Back to top)

Keywords

react

FAQs

Package last updated on 07 Oct 2021

Did you know?

Socket

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.

Install

Related posts