Skip to content

Supabase Javascript client for Wechat MiniProgram

License

Notifications You must be signed in to change notification settings

supabase-wechat/supabase-js

 
 

Repository files navigation

supabase-js - Isomorphic JavaScript client for Supabase, Wechat Miniprogram compatibility fixed

Forked from supabase/supabase-js, the origional documentation can be found here.

Changes

Changes are made on top of this commit from @supabase/supabase-js, base version number v2.46.1

  • add submodule packages/node-fetch as a workspace package

    • fix(browser.js): remove wx incompatible node fetch binding

    related issues: supabase/postgrest-js#574, supabase#1303

  • add submodule packages/realtime-js as a workspace package

    • fix: add missing setupConnection() when using custom transport in RealtimeClient

    related discussion: https://github.com/orgs/supabase/discussions/30361

  • fix(src/wx/polyfills): add polyfills for AbortController, localStorage and Headers

    • polyfills are dynamically imported in src/lib/index > createClient
  • fix(src/wx/navigator-lock): add navigator lock polyfill.

    /* src/index.ts > createClient */
    new SupabaseClient(url, key, {
      ...options,
      auth: {
        ...(extraOptions.auth ?? {}),
        lock: navigatorLockNoOp,
      },
    })
  • feat(src/wx/local-storage): add wx compatible custom localStorage implementation

    /* src/index.ts > createClient */
    new SupabaseClient(url, key, {
      ...options,
      auth: {
        storage: wxLocalStorage,
        ...(extraOptions.auth ?? {}),
      },
    })
  • feat(src/wx/fetch, src/wx/fetch-cloud): add wx compatible custom fetch implementations

    /* src/index.ts > createClient */
    new SupabaseClient(url, key, {
      ...options,
      global: {
        fetch: customFetch,
        ...(extraOptions.global ?? {}),
      },
    })
  • feat(src/wx/socket-task): add wx SocketTask implementation for realtime subscription

    /* src/index.ts > createClient */
    new SupabaseClient(url, key, {
      ...options,
      realtime: {
        transport: WxRealtimeTransport,
        ...(extraOptions.realtime ?? {}),
        worker: false,
      },
    })

There may not be plan to publish package versions based on these changes. To actively align every upcoming official supabase-js versions are meaningless. You can freely update the fork base locally as needed, and apply the above changes or use them as a reference.

Usage

Add @supabase/node-fetch and @supabase/realtime-js resolutions

Background

Before the above issues and discussions are officially resolved, changes are made and resolved locally.

Prepare

cd path/to/@supabase-wechat/supabase-js
git submodule update --init [--recursive]

Add resolution

In your root/path/to/package.json, add the following resolution for yarn (The resolutions field can only be set at the root of the project, and will generate a warning if used in any other workspace.)

{
  "resolutions": {
    "@supabase/node-fetch": "portal:./path/to/@supabase-wechat/supabase-js/packages/node-fetch",
    "@supabase/realtime-js": "portal:./path/to/@supabase-wechat/supabase-js/packages/realtime-js"
  }
}

Install

cd project_rood; yarn install
cd path/to/@supabase-wechat/supabase-js/packages/node-fetch; npm run build
cd path/to/@supabase-wechat/supabase-js/packages/realtime-js; npm run build
cd path/to/@supabase-wechat/supabase-js/; npm run build

Configure supabase client

/* your-wx-app/path/to/supabase-client */

import { createClient } from '@supabase-wechat/supabase-js'

export const supabaseClient = createClient<Database>(api_url, anon_key, {
  // Choose the custom fetch from the following alternatives
  // 1. Directly send api request from wx
  // uses `src/wx/wx-fetch`
  wxFetch: { type: 'wx' },
  // OR
  // 2. A tencent cloud function serves as a proxy, This way, traffics are handled, 备案 for an independent supabase host is not required. (However, supabase realtime is not option here.)
  // uses `src/wx/wxcloud-fetch`
  wxFetch: { type: 'wxCloud', wxCloudFnName: 'supabase-proxy' },
  // OR
  // 3. Use your own implementation and override the above options
  global: {
    // ...
    fetch: YourCustomFetch,
  },

  // Optional: Add your custom `transport` to override `src/wx/socket-task`
  realtime: {
    // ...
    transport: YourCustomTransport,
  },

  // Optional: Add your custom `storage` to override `src/wx/local-storage`
  auth: {
    // ...
    storage: YourCustomLocalStorage,
  },
})

[Optional] Configure wx cloud function

If you chose the wxFetch: { type: 'wxCloud', wxCloudFnName: 'supabase-proxy' } option, an example wxcloud function is here:

/* wxcloudfunctions/supabase-proxy/index.js */

const cloud = require('wx-server-sdk')
const axios = require('axios')

cloud.init({
  env: cloud.DYNAMIC_CURRENT_ENV,
})

exports.main = async (event) => {
  const { url, method, data, headers, responseType } = event.reqeustOptions

  const response = await axios({
    url: url,
    method,
    data,
    responseType,
    headers,
  })
  return {
    headers: response.headers,
    data: response.data,
    status: response.status,
    statusText: response.statusText,
    headers: response.headers,
  }
}

About

Supabase Javascript client for Wechat MiniProgram

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.7%
  • JavaScript 1.3%