reactaccelerometervalue

0.1.8 • Public • Published

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

  • [x] Improvise to support latest React versions
  • [x] 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!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. 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)

Package Sidebar

Install

npm i reactaccelerometervalue

Weekly Downloads

2

Version

0.1.8

License

MIT

Unpacked Size

44.3 kB

Total Files

20

Last publish

Collaborators

  • maheshrao