Skip to main content

Getting Started

Introduction

A library for managing multiple permission states with check and request methods, ensuring data persistence using @codeleap/store.

Installing the library

Install @codeleap/permissions through bun:

bun add @codeleap/permissions

Setup

To use the system, import the PermissionsManager class from the library and define your permissions:

src/app/permissionsManager.ts
import { PermissionsManager } from '@codeleap/permissions'
import { Platform } from 'react-native'
import RNPermissions from 'react-native-permissions'

const platform = Platform.OS.toUpperCase()

export const permissionsManager = new PermissionsManager(
async (permission) => {
return permission.request()
}, {
camera: {
config: {
title: 'Camera permissions',
description: `${appName} needs access to your camera to capture and share photos.`
},
check: () => RNPermissions.check(RNPermissions.PERMISSIONS[platform].CAMERA),
request: () => RNPermissions.request(RNPermissions.PERMISSIONS[platform].CAMERA),
}
}
)