Skip to content

aaronksaunders/ionic-react-hook-form-react-fire

Repository files navigation

ko-fi

ionic-react-hook-form-react-fire

Last Updated 8/16/2020

Releases and tags coincide with specific blog posts in the series See Blog Series

Sample project motivated by video by David East on Reactfire

Saves The Following Data Structure

I am starting to integrated typescript into my examples since I am seeing questions about types popping up in the forums. The IModalData is the structure of the data that is written to firebase

type IModalData = {
  podcastName: string;
  podcastHost: string;
  podcastURL: string;
};

export type IModalResponse = {
  hasData: boolean;
  data?: IModalData;
};

Required

you must create a file called src/env.js and add the following code

export const FIREBASE_CONFIG = {
// YOUR FIREBASE CONFIGURATION
};

// NAME OF COLLECTION IN FIREBASE TO LIST
export const FIREBASE_COLLECTION_NAME = "podcast-favs"

// THIS IS REQUIRED FOR ANDROID
// SEE - https://github.com/FirebaseExtended/reactfire/issues/228
global.globalThis = window;

Whats Next

  • Add Items Using Ionic Modal - Added on 7/31/200
  • Create Account - Added on 7/31/200
  • Delete Items using IonSlidingItem - Added on 8/16/200
  • Update Items - Added on 8/16/200
  • Reset Forms - Added on 8/16/200
  • Default Data in ReactHook Form - Added on 8/16/200

See Other Work On My YouTube Channel