reactaccelerometervalue
v0.1.8
Published
The most easiest way to obtain the accelerometer and orientation values of your device in React JS.
Downloads
11
Maintainers
Readme
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;
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
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
License
Distributed under the MIT License. See LICENSE.txt for more information.
Contact
Author - @raomahesh98 - [email protected]
Project Link: https://github.com/maheshrao98/React-Accelerometer-Value