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

@arianee/shopify-app

v0.0.10

Published

This package is a React bundle built for the Arianee's Shopify app. It supports claiming and displaying Arianee digital product passports on headless Shopify stores.

Downloads

699

Readme

Arianee : Shopify app bundle

This package is a React bundle built for the Arianee's Shopify app. It supports claiming and displaying Arianee digital product passports on headless Shopify stores.

Requirements

You need a headless Shopify store with the Arianee's Shopify app installed for that store.

Install

You can install this as a package with npm:

npm install @arianee/shopify-app

or directly inject it in your HTML file:

<html>
  <head>
    <!-- ... -->
  </head>
  <body>
    <!-- ... -->
    <script src="https://cdn.jsdelivr.net/npm//@arianee/shopify-app/dist-npm/arianee_bundle.js"></script>
  </body>
</html>

How it works

This React bundle displays modals on top of your website's UI. When an Arianee digital product passport is detected, it is displayed to the user. The user can then claim the passport directly in their store account. All the UIs and communication with the Arianee's Shopify app are handled by the bundle.

Setup

The bundle must be injected in your front either by importing it in your app or by adding the script tag in your HTML file.

import "@arianee/shopify-app";

or

<script src="https://cdn.jsdelivr.net/npm//@arianee/shopify-app/dist-npm/arianee_bundle.js"></script>

Once the script is loaded, you must call the window.arianee.init method.

window.arianee.init({
  shopify: {
    url: "<your shopify store url>",
    headless: {
      /** A method that returns the current customer access token (or null if none / not logged in) */
      getCustomerAccessToken: async () => '<customer-access-token>',
      /** A method that returns the public storefront access token of your store */
      getStorefrontAccessToken: async () => '<storefront access token>'
    };
  },
  settings: {
    appContainer: {
      id: "arianee-root", // id of the html container to use for the modals (will be created if it doesn't exist)
    },
  },
});

There are also optional parameters, for a full list of parameters, see the TypeScript declaration file (arianee_bundle.d.ts).

Customization

The modals exist in the same DOM as your front, therefore they will inherit most of your front's style (font, color etc.) by default. If you want to further customize the look and feel of the modals, use the settings parameter of the window.arianee.init method as well as custom css (all elements of the modals are easy to access with class selectors).

Translation

The app comes with a default translation in English. If you want to translate the modals in another language or if you want to modify the english translation, you can pass a translations parameter to the init method. You can see all the translation keys in the arianee_bundle.d.ts file.

The provided translations will be merged with the existing translations, so you can modify only the keys you want to change.

window.arianee.init({
  shopify: {
    url: "https://example.myshopify.com/",
  },
  settings: {
    ...,
    translations: {
      en: {
        translation: {
          app: {
            modals: {
              claimStatus: {
                messages: {
                  success: "A custom claim success message.",
                },
              },
            },
          },
        },
      },
    },
  },
});

Usage

You can test the integration by accessing this URL:

https://yourwebsite.com/?arianee=7231272,qqt4k6r7zql3,testnet

If the integration is successful, you should see a modal displaying the Arianee digital product passport (if you are logged in, otherwise you should see a modal asking you to login).

Show owned nfts

You can open a modal that displays the owned NFTs of the current user by calling the following method:

window.arianee.getInstance().showOwnedNfts();