| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 | // @flow
import React, { Component } from 'react'
import {
  StyleSheet,
  TouchableHighlight,
  Text,
  View,
  Alert,
  AppState,
  Platform,
} from 'react-native'
import Permissions from 'react-native-permissions'
export default class App extends Component {
  state = {
    types: [],
    status: {},
  }
  componentDidMount() {
    let types = Permissions.getTypes()
    let canOpenSettings = Permissions.canOpenSettings()
    this.setState({ types, canOpenSettings })
    this._updatePermissions(types)
    AppState.addEventListener('change', this._handleAppStateChange)
  }
  componentWillUnmount() {
    AppState.removeEventListener('change', this._handleAppStateChange)
  }
  //update permissions when app comes back from settings
  _handleAppStateChange = appState => {
    if (appState == 'active') {
      this._updatePermissions(this.state.types)
    }
  }
  _openSettings = () =>
    Permissions.openSettings().then(() => alert('back to app!!'))
  _updatePermissions = types => {
    Permissions.checkMultiple(types)
      .then(status => {
        if (this.state.isAlways) {
          return Permissions.check('location', 'always').then(location => ({
            ...status,
            location,
          }))
        }
        return status
      })
      .then(status => this.setState({ status }))
  }
  _requestPermission = permission => {
    var options
    if (permission == 'location') {
      options = this.state.isAlways ? 'always' : 'whenInUse'
    }
    Permissions.request(permission, options)
      .then(res => {
        this.setState({
          status: { ...this.state.status, [permission]: res },
        })
        if (res != 'authorized') {
          var buttons = [{ text: 'Cancel', style: 'cancel' }]
          if (this.state.canOpenSettings)
            buttons.push({
              text: 'Open Settings',
              onPress: this._openSettings,
            })
          Alert.alert(
            'Whoops!',
            'There was a problem getting your permission. Please enable it from settings.',
            buttons,
          )
        }
      })
      .catch(e => console.warn(e))
  }
  _onLocationSwitchChange = () => {
    this.setState({ isAlways: !this.state.isAlways })
    this._updatePermissions(this.state.types)
  }
  render() {
    return (
      <View style={styles.container}>
        {this.state.types.map(p => (
          <TouchableHighlight
            style={[styles.button, styles[this.state.status[p]]]}
            key={p}
            onPress={() => this._requestPermission(p)}
          >
            <View>
              <Text style={styles.text}>
                {Platform.OS == 'ios' && p == 'location'
                  ? `location ${this.state.isAlways ? 'always' : 'whenInUse'}`
                  : p}
              </Text>
              <Text style={styles.subtext}>{this.state.status[p]}</Text>
            </View>
          </TouchableHighlight>
        ))}
        <View style={styles.footer}>
          <TouchableHighlight
            style={styles['footer_' + Platform.OS]}
            onPress={this._onLocationSwitchChange}
          >
            <Text style={styles.text}>Toggle location type</Text>
          </TouchableHighlight>
          {this.state.canOpenSettings && (
            <TouchableHighlight onPress={this._openSettings}>
              <Text style={styles.text}>Open settings</Text>
            </TouchableHighlight>
          )}
        </View>
        <Text style={styles['footer_' + Platform.OS]}>
          Note: microphone permissions may not work on iOS simulator. Also,
          toggling permissions from the settings menu may cause the app to
          crash. This is normal on iOS. Google "ios crash permission change"
        </Text>
      </View>
    )
  }
}
const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    backgroundColor: '#F5FCFF',
    padding: 10,
  },
  text: {
    textAlign: 'center',
    fontWeight: 'bold',
  },
  subtext: {
    textAlign: 'center',
  },
  button: {
    margin: 5,
    borderColor: 'black',
    borderWidth: 3,
    overflow: 'hidden',
  },
  buttonInner: {
    flexDirection: 'column',
  },
  undetermined: {
    backgroundColor: '#E0E0E0',
  },
  authorized: {
    backgroundColor: '#C5E1A5',
  },
  denied: {
    backgroundColor: '#ef9a9a',
  },
  restricted: {
    backgroundColor: '#ef9a9a',
  },
  footer: {
    padding: 10,
    flexDirection: 'row',
    justifyContent: 'space-between',
  },
  footer_android: {
    height: 0,
    width: 0,
  },
})
 |