Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rustygreen/ng-supabase

Angular Supabase components
https://github.com/rustygreen/ng-supabase

angular angular-material bootstrap material-design primeng supabase supabase-auth supabase-js

Last synced: 29 days ago
JSON representation

Angular Supabase components

Awesome Lists containing this project

README

        



Logo


ng-supabase



An Angular component library for your Supabase project!

[![npm version](https://badge.fury.io/js/@ng-supabase%2Fcore.svg)](https://badge.fury.io/js/@ng-supabase%2Fcore)
![NPM Downloads](https://img.shields.io/npm/dt/%40ng-supabase%2Fcore)
[![Build Status](https://github.com/rustygreen/ng-supabase/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/rustygreen/ng-supabase/actions/workflows/ci.yaml/badge.svg?branch=main)
[![Netlify Status](https://api.netlify.com/api/v1/badges/d6d66504-cf8d-4eed-93d7-8dcbd03ec91d/deploy-status)](https://app.netlify.com/sites/ng-supabase/deploys)

---

## Features

- 🔥 Pre-designed Supabase components for popular UI libraries (PrimeNG, Material, Bootstrap)
- ✨ Eliminate boilerplate code and get right to consuming Supabase services
- 📝 Extendable and highly-configurable components
- 😍 Full Supabase authentication goodness, ready to go!
- 💪 Built on top of [Angular 17](https://blog.angular.io/introducing-angular-v17-4d7033312e4b) with [Signals](https://angular.io/guide/signals) and [SSR](https://angular.io/guide/ssr) support

## Docs

- [Example Site](https://ng-supabase.netlify.app/)
- Full docs coming soon...
> In the meantime, please checkout the [demo code](https://github.com/rustygreen/ng-supabase/tree/main/apps/demo) for a fully working example.

## Getting Started

1. Choose the desired UI library

| UI Library | Package |
| ---------------- | ------------------------ |
| PrimeNG | `@ng-supabase/primeng` |
| Angular Material | `@ng-supabase/material` |
| Bootstrap | `@ng-supabase/bootstrap` |

2. Install the desired package.

Example `npm install @ng-supabase/primeng`

3. Add package specific styling/dependencies

For the [PrimeNG package](https://www.npmjs.com/package/@ng-supabase/primeng) you need to include the [PrimeFlex CSS](https://primeflex.org/).

Add to `styles.css`

```css
/* Add whatever PrimeNG theme you desire. */
@import 'primeng/resources/themes/lara-light-blue/theme.css';
@import 'primeng/resources/primeng.css';
@import 'primeicons/primeicons.css';
@import 'primeflex/primeflex.css';
```

4. Create the desired routes in your application for each of the authentication steps:

Example:

- Sign In (ex: `/sign-in`)
- Register (ex: `/register`)
- Set Password (ex: `/set-password`)
- Reset Password (ex: `/reset-password`)

5. Use each of the `ng-supabase` components in your route components.

Example:

Your app: `sign-in.component.ts`

```ts
// Angular.
import { CommonModule } from '@angular/common';
import { ChangeDetectionStrategy, Component } from '@angular/core';

// ng-supabase.
import { SignInComponent as PrimeNgSignInComponent } from '@ng-supabase/primeng';

@Component({
selector: 'ng-supabase-primeng-sign-in',
standalone: true,
imports: [CommonModule, PrimeNgSignInComponent],
templateUrl: './sign-in.component.html',
styleUrl: './sign-in.component.scss',
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SignInComponent {}
```

Your app: `sign-in.component.html`

```html

```

6. Configure the `ng-supabase` library.

Your app: `app.config.ts`

```ts
export const appConfig: ApplicationConfig = {
providers: [
provideRouter(appRoutes),
provideAnimations(),
provideSupabase({
// You can optionally provide "project: 123455" and omit apiUrl.
apiUrl: 'https://YOUR_SUPABASE_URL.supabase.co',
apiKey: 'YOUR_SUPABASE_ANONYMOUS_ACCESS_KEY',
signIn: {
socials: [SocialSignIn.Apple, SocialSignIn.Google],
},
}),
],
};
```

7. Run your application and let [ng-supabase](https://github.com/rustygreen/ng-supabase) do all the work ✨.

## Components

| Component | Default Route |
| -------------- | ----------------- |
| Sign In | `/sign-in` |
| Register | `/register` |
| Set Password | `/set-password` |
| Reset Password | `/reset-password` |

### PrimeNG

### Sign In Component

Sign In:

---

![Sign In Component](/assets/primeng-sign-in.png)

Sign In with One-Time-Password:

---

![Sign In Message](/assets/primeng-sign-in-message.png)

### Register Component

Register/Sign Up:

---

![Register Component](/assets/primeng-register.png)

### Reset Password Component

Reset Password:

---

![Reset Password Component](/assets/primeng-reset-password.png)

Reset Password Message:

---

![Reset Password Message](/assets/primeng-reset-password-message.png)

### Set Password Component

Set Password:

---

![Set Password Component](/assets/primeng-set-password.png)

Set Password Feedback:

---

![Set Password Feedback](/assets/primeng-set-password-feedback.png)

Set Password Validation:

---

![Set Password Validation](/assets/primeng-set-password-validation.png)

### Bootstrap

⏳ Coming soon...

### Material

⏳ Coming soon...

## Development

### Remove Tag

```bash
git tag --delete
git push --delete origin
```

### Create New Release

To generate a new release, use the following steps:

1. Run `npm run nx -- release --skip-publish` locally. This will create a commit and tag
2. Push the changes (including the new tag) to the remote repository with `git push && git push --tags`.
3. The publish workflow will automatically trigger and publish the packages to the npm registry.

_see more on these steps [here](https://nx.dev/recipes/nx-release/publish-in-ci-cd)_

## TODOs

- [x] Add SignedIn route guard
- [x] Add avatar component
- [x] Upgrade to NGPrime 18
- [x] Remove use of PrimeFlex
- [ ] Add Roles route guard
- [ ] Full coverage unit tests
- [ ] Documentation site
- [ ] Implement Bootstrap components
- [ ] Implement Material components
- [ ] Fully support Angular SSR