0.4.5 ā€¢ Published 2 months ago

expo-foreground-actions v0.4.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

šŸ“– Table of Contents


šŸ“ Overview

Start actions that continue to run in the grace period after the user switches apps. This library facilitates the execution of ios's beginBackgroundTaskWithName and android's startForegroundService methods. The primary objective is to emulate the behavior of beginBackgroundTaskWithName, allowing actions to persist even when the user switches to another app. Examples include sending chat messages, creating tasks, or running synchronizations.

On iOS, the grace period typically lasts around 30 seconds, while on Android, foreground tasks can run for a longer duration, subject to device models and background policies. In general, a foreground task can safely run for about 30 seconds on both platforms. However, it's important to note that this library is not intended for background location tracking. iOS's limited 30-second window makes it impractical for such purposes. For background location tracking, alternatives like WorkManager or GTaskScheduler are more suitable.

For usage instructions, please refer to the Example provided.


šŸ“¦ Features

For IOS & Android:

  • Execute JavaScript while the app is in the background.
  • Run multiple foreground actions simultaneously.
  • Forcefully terminate all foreground actions.

For Android:

  • Display notifications with customizable titles, descriptions, and optional progress bars, along with support for deep linking.
  • Comply with the latest Android 34+ background policy, ensuring that foreground services continue to run without displaying a visible notification. Users can still access these services from the notification drawer.

For IOS:

  • Receive notifications when the background execution time is about to expire. This feature allows users to save their data and terminate tasks gracefully.

Web Support:

  • Limited support for web platforms. We recommend using the runInJS method due to potential errors when attempting to run foreground actions on web browsers.

šŸ“‚ Repository Structure

ā””ā”€ā”€ expo-foreground-actions/
    ā”œā”€ā”€ .eslintrc.js
    ā”œā”€ā”€ android/
    ā”œā”€ā”€ example/
    ā”‚   ā”œā”€ā”€ App.tsx
    ā”‚   ā”œā”€ā”€ android/
    ā”‚   ā”œā”€ā”€ app.json
    ā”‚   ā”œā”€ā”€ babel.config.js
    ā”‚   ā”œā”€ā”€ metro.config.js
    ā”‚   ā”œā”€ā”€ package-lock.json
    ā”‚   ā”œā”€ā”€ package.json
    ā”‚   ā”œā”€ā”€ plugins/
    ā”‚   ā”‚   ā””ā”€ā”€ expo-foreground-actions.js
    ā”‚   ā”œā”€ā”€ tsconfig.json
    ā”‚   ā”œā”€ā”€ webpack.config.js
    ā”‚   ā””ā”€ā”€ yarn.lock
    ā”œā”€ā”€ ios/
    ā”œā”€ā”€ package-lock.json
    ā”œā”€ā”€ package.json
    ā”œā”€ā”€ plugins/
    ā”‚   ā””ā”€ā”€ expo-foreground-actions.js
    ā”œā”€ā”€ src/
    ā”‚   ā”œā”€ā”€ ExpoForegroundActions.types.ts
    ā”‚   ā”œā”€ā”€ ExpoForegroundActionsModule.ts
    ā”‚   ā””ā”€ā”€ index.ts
    ā”œā”€ā”€ tsconfig.json
    ā””ā”€ā”€ yarn.lock

šŸš€ Getting Started

Dependencies

Please ensure you have the following dependencies installed on your system:

- ā„¹ļø Expo v49+

- ā„¹ļø Bare/Manage workflow, we do not support Expo GO

šŸ”§ Installation

  1. Clone the expo-foreground-actions repository:

    NPM

    npm install expo-foreground-actions

    Yarn

    yarn add expo-foreground-actions
  2. Install the plugin, for now download the repo and copy the plugins folder to your project root.

  3. Then update your app.json to include the plugin and a scheme if u wanna use the plugin with a deeplink. https://docs.expo.dev/guides/linking/

    "expo": {
      "scheme": "myapp",
      "plugins": [
        [
          "./plugins/expo-foreground-actions"
        ]
      ],
    }
  4. Make sure the plugin is loaded in your app.json, you can do this by running prebuild on managed or by running * *pod install/gradle build** on bare.

šŸ¤– How to use?

For the time being, dedicated documentation is not available. However, you can explore the usage of current methods in the provided example app. Refer to the Example folder to understand how to utilize this package effectively.

Example

šŸ¤– Functions

runForegroundedAction

export const runForegroundedAction = async (
  act: (api: ForegroundApi) => Promise<void>,
  androidSettings: AndroidSettings,
  settings: Settings = { runInJS: false }
): Promise<void>;
  • act: The foreground action function to be executed.
  • androidSettings: Android-specific settings for the foreground action.
  • settings: Additional settings for the foreground action.

startForegroundAction

export const startForegroundAction = async (
  options?: AndroidSettings
): Promise<number>;
  • options: Android-specific settings for the foreground action.

stopForegroundAction

export const stopForegroundAction = async (id: number): Promise<void>;
  • id: The unique identifier of the foreground action to stop.

updateForegroundedAction

export const updateForegroundedAction = async (
  id: number,
  options: AndroidSettings
): Promise<void>;
  • id: The unique identifier of the foreground action to update.
  • options: Updated Android-specific settings for the foreground action.

forceStopAllForegroundActions

export const forceStopAllForegroundActions = async (): Promise<void>;
  • Forcefully stops all running foreground actions.

getForegroundIdentifiers

export const getForegroundIdentifiers = async (): Promise<number>;
  • Retrieves the identifiers of all currently running foreground actions.

getRanTaskCount

export const getRanTaskCount = () => ranTaskCount;
  • Retrieves the count of tasks that have run.

getBackgroundTimeRemaining

export const getBackgroundTimeRemaining = async (): Promise<number>;
  • Retrieves the remaining background execution time on iOS.

šŸ¤– Interfaces

ExpireEventPayload

export type ExpireEventPayload = {
  remaining: number;
  identifier: number;
};
  • remaining: The remaining time in seconds before the foreground action expires.
  • identifier: The unique identifier of the foreground action.

AndroidSettings

export interface AndroidSettings {
  headlessTaskName: string;
  notificationTitle: string;
  notificationDesc: string;
  notificationColor: string;
  notificationIconName: string;
  notificationIconType: string;
  notificationProgress: number;
  notificationMaxProgress: number;
  notificationIndeterminate: boolean;
  linkingURI: string;
}
  • headlessTaskName: Name of the headless task associated with the foreground action.
  • notificationTitle: Title of the notification shown during the foreground action.
  • notificationDesc: Description of the notification.
  • notificationColor: Color of the notification.
  • notificationIconName: Name of the notification icon.
  • notificationIconType: Type of the notification icon.
  • notificationProgress: Current progress value for the notification.
  • notificationMaxProgress: Maximum progress value for the notification.
  • notificationIndeterminate: Indicates if the notification progress is indeterminate.
  • linkingURI: URI to link to when the notification is pressed.

Settings

export interface Settings {
  events?: {
    onIdentifier?: (identifier: number) => void;
  }
  runInJS?: boolean,
}
  • events: Event handlers for foreground actions.
    • onIdentifier: A callback function called when an identifier is generated.
  • runInJS: Indicates whether to run the foreground action without using a headless task or ios background task.

šŸ›£ Project Roadmap

  • ā„¹ļø Task 1: Initial launch
  • ā„¹ļø Task 2: Possiblity to run multiple foreground tasks
  • ā„¹ļø Any idea's are welcome =)

šŸ¤ Contributing

Contributions are welcome! Here are several ways you can contribute:

Contributing Guidelines

  1. Fork the Repository: Start by forking the project repository to your GitHub account.
  2. Clone Locally: Clone the forked repository to your local machine using a Git client.
    git clone <your-forked-repo-url>
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear and concise message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to GitHub: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.


šŸ“„ License

This project is protected under the MIT License. For more details, refer to the LICENSE file.


šŸ‘ Acknowledgments

Return


0.4.5

2 months ago

0.4.4

7 months ago

0.4.3

7 months ago

0.4.2

7 months ago

0.4.1

7 months ago

0.4.0

7 months ago

0.3.1

7 months ago

0.3.0

7 months ago

0.2.91

7 months ago

0.2.9

7 months ago

0.2.8

7 months ago

0.2.7

7 months ago

0.2.6

7 months ago

0.2.5

7 months ago

0.2.4

7 months ago

0.2.3

7 months ago

0.2.2

7 months ago

0.2.1

7 months ago

0.2.0

7 months ago

0.1.9

7 months ago

0.1.8

7 months ago

0.1.7

7 months ago

0.1.6

7 months ago

0.1.5

7 months ago

0.1.4

7 months ago

0.1.3

7 months ago

0.1.2

7 months ago

0.1.1

7 months ago

0.1.0

7 months ago

0.0.1

7 months ago