npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-dynamic-shortcut

v1.0.0

Published

A react-native interface for Touch 3D home screen quick actions shortcut

Downloads

8

Readme

React Native Quick Actions

Support for the new 3D Touch home screen quick actions for your React Native apps!

This project currently supports iOS 9+ and Android 7+

Installing

$ yarn add react-native-dynamic-shortcut

Additional steps on iOS

Add the following lines to your AppDelegate.m file:

#import "RNDShortcutManager.h"

// @implementation AppDelegate

- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL succeeded)) completionHandler {
  [RNDShortcutManager onShortcutActionPress:shortcutItem completionHandler:completionHandler];
}

// @end

Manual Linking on Android

Add the following to app/build.gradle within the dependencies { ... } section

implementation project(':react-native-dynamic-shortcut')

Add import com.reactNativeDynamicShortcut.AppShortcutsPackage; to your MainApplication.java

Also add new AppShortcutsPackage() within the

protected List<ReactPackage> getPackages() {
   @SuppressWarnings("UnnecessaryLocalVariable")
   List<ReactPackage> packages = new PackageList(this).getPackages();
    packages.add(new AppShortcutsPackage())//liek this
   return packages;
}

//or

public List<ReactPackage> createAdditionalReactPackages() {
  return Arrays.<ReactPackage>asList(
    ...
  );
}

section of MainApplication.java

Example App

Usage

Adding static quick actions - iOS only

Add these entries into to your Info.plist file and replace the generic stuff (Action Title, .action, etc):

<key>UIApplicationShortcutItems</key>
<array>
  <dict>
    <key>UIApplicationShortcutItemIconType</key>
    <string>UIApplicationShortcutIconTypeLocation</string>
    <key>UIApplicationShortcutItemTitle</key>
    <string>Action Title</string>
    <key>UIApplicationShortcutItemType</key>
    <string>$(PRODUCT_BUNDLE_IDENTIFIER).action</string>
  </dict>
</array>

A full list of available icons can be found here:

https://developer.apple.com/documentation/uikit/uiapplicationshortcuticon/icontype

Adding dynamic quick actions

In order to add / remove dynamic actions during application lifecycle, you need to import react-native-dynamic-shortcut and call either setShortcutItems to set actions or clearShortcutItems to clear.

import DynamicShortcut from "react-native-dynamic-shortcut";

DynamicShortcut.setShortcutItems([
  {
    type: "profile", // Required
    title: "Profile", // Optional, if empty, `type` will be used instead
    subtitle: "Profile details",
    icon: "user" or "https://image/user.png", // Note URL support in android only, see Icons instructions below
    userInfo: {
      url: "app://profile" // Provide any custom data like deep linking URL
    }
  }
]);

To clear actions:

DynamicShortcut.clearShortcutItems();

Icons

iOS

On iOS you can use the default icons provided by Apple, they're listed here: https://developer.apple.com/design/human-interface-guidelines/ios/icons-and-images/system-icons/#quick-action-icons

You can also use custom icons creating new Image set inside Image.xcassets on XCode. Make sure to add B/W icons, color icons doesn't support on ios. You'll need to define the 1x, 2x and 3x sizes.

Android

On Android you'll need to create an image file (use PNG) inside android/app/src/main/res/drawable. Name the image with underscores, don't use hyphens.

You can provide an image url to set the icon, make sure its a valid Url.

Listening

First, you'll need to make sure DeviceEventEmitter is added to the list of requires for React Native.

Use DeviceEventEmitter to listen for RNDynamicShortcut messages when app in background.

import { DeviceEventEmitter } from "react-native";

DeviceEventEmitter.addListener("RNDynamicShortcut", (data) => {
  console.log(data, "background");
});

To get any actions sent when the app is cold-launched using the following code:

import DynamicShortcut from "react-native-dynamic-shortcut";

DynamicShortcut.popInitialAction()
  .then((item) => {
    if (item) {
      console.log(item, "quit mode");
    }
  })
  .catch((err) => {
    console.log(err);
  });

Please note that on Android if android:launchMode is set to default value standard in AndroidManifest.xml, the app will be re-created each time when app is being brought back from background and it won't receive RNDynamicShortcut event from DeviceEventEmitter, instead popInitialAction will be receiving the app shortcut event.

Check if 3D Touch is supported

The following function will alert you if the user's device supports 3D Touch. Please note this project currently only supports iOS 9+ which means this code will not work on iOS devices running versions < 9.0.

import DynamicShortcut from "react-native-dynamic-shortcut";

DynamicShortcut.isSupported((error, supported) => {
  if (!supported) {
    console.log("Device does not support 3D Touch or 3D Touch is disabled.");
  }
});

Example

useEffect(() => {
  DynamicShortcut.isSupported((error, supported) => {
    if (supported) {
      DynamicShortcut.setShortcutItems([
        {
          type: "Profile",
          title: "Profile",
          icon: "logo",
          userInfo: { url: "dummy" },
        },
      ]);

      DynamicShortcut.setShortcutItems([
        {
          type: "Profile",
          title: "Profile",
          icon: "https://mountains.png", //(android only) ios support B/W images
          userInfo: { url: "dummy" },
        },
      ]);
    }
  });

  DeviceEventEmitter.addListener("RNDynamicShortcut", (item) => {
    console.log(item, "app in background");
  });

  DynamicShortcut.popInitialAction()
    .then((item) => {
      console.log(item, "app quit mode");
    })
    .catch((er) => {
      console.log(console.error());
    });

  return () => {
    DeviceEventEmitter.removeAllListeners("RNDynamicShortcut");
  };
}, []);

Credit @ Jordan Byron

License

Copyright (c) 2024 athal jen (http://github.com/athaljen/)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.