https://supabase.com/ logo
Join Discord
Powered by
# ideas-and-suggestions
  • f

    Flyken

    07/26/2021, 4:49 PM
    a text channel for those unable to speak in VC :)
  • q

    quicksnap

    07/26/2021, 5:57 PM
    If #839993398554656831 gets to be a busy place, having a #839993398554656831-2 may be nice so people don't clobber conversations (until we get Discord threads of course)
  • f

    fenix

    07/26/2021, 6:30 PM
    Discussions on discord might not be a problem anymore! https://twitter.com/discord/status/1419721721519689733
  • q

    quicksnap

    07/26/2021, 6:31 PM
    Hoooolly shhhiii
  • t

    tinjaw

    07/26/2021, 6:31 PM
    ttt
  • q

    quicksnap

    07/26/2021, 6:31 PM
    Finallyyyyy yaaaaasss
  • t

    tinjaw

    07/26/2021, 6:31 PM
    Don't you love it when other people finish your sentences?
  • q

    quicksnap

    07/26/2021, 6:31 PM
    Sandwiches
  • t

    tinjaw

    07/26/2021, 6:31 PM
    are yummy
  • t

    tinjaw

    07/26/2021, 6:32 PM
    had 2 for lunch today
  • t

    tinjaw

    07/26/2021, 6:32 PM
    panninninniii
  • s

    Scott P

    07/26/2021, 6:32 PM
    is a type of food
  • t

    tinjaw

    07/26/2021, 6:32 PM
    OK! Back to work!!
  • n

    nullexception

    07/27/2021, 2:17 AM
    divide help channel into sections like one channel for help related flutter and one for angular, and react
  • b

    burggraf

    07/27/2021, 2:19 AM
    That's a good idea, but a lot of this depends on if Discord rolls out threaded discussions to everyone tomorrow. That should make a huge difference here.
  • n

    nullexception

    07/27/2021, 2:24 AM
    i mean like this but for different frameworks this makes it easier to help bc everyone dont know every framework n makes it easier to help for specific thing
  • c

    copple

    07/27/2021, 2:30 AM
    I think that's fair. let's start with just a couple and then expand only if we need them
  • b

    burggraf

    07/27/2021, 2:30 AM
    I understand the concept but it's hard to tell how much to split things up depending on how many users there are. And some thing are the same across frameworks, or at least across all the js frameworks, for example.
  • b

    burggraf

    07/27/2021, 2:31 AM
    We'll know more in the next week, since our user base here is exploding 🙂
  • c

    carlomigueldy.eth

    07/27/2021, 2:50 AM
    OH THIS IS IT
  • d

    deepu

    07/27/2021, 2:56 AM
    Can we create a flutter channel ? To discuss flutter related improvements or bugs ?
  • c

    copple

    07/27/2021, 3:22 AM
    #843999948717555735 #869410418567831602 #869406062036529193 #869405720934744086
  • m

    Marky

    07/27/2021, 3:40 AM
    Please make sql scripts account bound rather than local browser cache
  • m

    mikeoflegend

    07/27/2021, 6:06 AM
    Idea: ReactNative support
  • c

    copple

    07/27/2021, 6:27 AM
    🙂 https://github.com/supabase/supabase/tree/master/examples/expo-todo-list
  • y

    YaminNather

    07/27/2021, 7:12 AM
    Wouldnt javascript support count as react native support
  • f

    florian-lefebvre

    07/27/2021, 11:07 AM
    Is that normal that #868053388946997348 is where new members come?
  • m

    mikeoflegend

    07/27/2021, 11:17 AM
    There are several SDK api methods that look for local storage and throws errors. Mainly the authentication. That’s fine for React but not React Native where it should be using AsyncStorage.
  • m

    mikeoflegend

    07/27/2021, 11:19 AM
    Thank you for sharing this. This doesn’t utilize auth or media which are where I’ve found the issue of the local storage dependency.
  • s

    Scott P

    07/27/2021, 11:20 AM
    Copy code
    ts
    import React, { FC } from "react";
    import AsyncStorage from "@react-native-async-storage/async-storage";
    import { SupabaseContextProvider } from "use-supabase";
    import { createClient } from "@supabase/supabase-js";
    import Constants from "expo-constants";
    
    export const supabaseClient = createClient(
      Constants.manifest.extra.supabaseEndpoint,
      Constants.manifest.extra.supabaseClientKey,
      {
        localStorage: AsyncStorage as any,
        autoRefreshToken: true,
        persistSession: true,
      }
    );
    
    export const SupabaseWrapper: FC<{}> = ({ children }) => (
      <SupabaseContextProvider client={supabaseClient}>
        {children}
      </SupabaseContextProvider>
    );
12345...32Latest