This tutorial demonstrates how to build a basic user management app. The app authenticates and identifies the user, stores their profile information in the database, and allows the user to log in, update their profile details, and upload a profile photo. The app uses:
Supabase Database - a Postgres database for storing your user data and Row Level Security so data is protected and users can only access their own information.
Before we start building we're going to set up our Database and API. This is as simple as starting a new Project in Supabase and then creating a "schema" inside the database.
Now we are going to set up the database schema. We can use the "User Management Starter" quickstart in the SQL Editor, or you can just copy/paste the SQL from below and run it yourself.
You can easily pull the database schema down to your local project by running the db pull command. Read the local development docs for detailed instructions.
_10
supabase link --project-ref <project-id>
_10
# You can get <project-id> from your project's dashboard URL: https://supabase.com/dashboard/project/<project-id>
Now that you've created some database tables, you are ready to insert data using the auto-generated API.
We just need to get the Project URL and anon key from the API settings.
Now that we have the API credentials in place, let's create a helper file to initialize the Supabase client. These variables will be exposed
on the browser, and that's completely fine since we have Row Level Security enabled on our Database.
src/supabaseClient.js
_10
import { createClient } from '@supabase/supabase-js'
First install two packages in order to interact with the user's camera.
_10
npm install @ionic/pwa-elements @capacitor/camera
CapacitorJS is a cross platform native runtime from Ionic that enables web apps to be deployed through the app store and provides access to native device API.
Ionic PWA elements is a companion package that will polyfill certain browser APIs that provide no user interface with custom Ionic UI.
With those packages installed we can update our index.tsx to include an additional bootstrapping call for the Ionic PWA Elements.
src/index.tsx
_18
import React from 'react'
_18
import ReactDOM from 'react-dom'
_18
import App from './App'
_18
import * as serviceWorkerRegistration from './serviceWorkerRegistration'
_18
import reportWebVitals from './reportWebVitals'
_18
_18
import { defineCustomElements } from '@ionic/pwa-elements/loader'
_18
defineCustomElements(window)
_18
_18
ReactDOM.render(
_18
<React.StrictMode>
_18
<App />
_18
</React.StrictMode>,
_18
document.getElementById('root')
_18
)
_18
_18
serviceWorkerRegistration.unregister()
_18
reportWebVitals()
Then create an AvatarComponent.
src/components/Avatar.tsx
_76
import { IonIcon } from '@ionic/react';
_76
import { person } from 'ionicons/icons';
_76
import { Camera, CameraResultType } from '@capacitor/camera';