Skip to content

scobru/pocketbase-extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

PocketBase Extension for SE-2

This module provides utility functions for interacting with PocketBase in SE-2, a backend for your next SaaS and Mobile app. It includes functions for authentication, fetching data, and managing collections and items.

Installation

  1. Create a new project with Pocketbase extension:
npx create-eth@latest -e @scobru/pocketbase-extension

Usage

Import the functions you need:

import {
  initPocketBase,
  authenticateAdmin,
  fetchCollections,
  fetchItems,
  createItem,
  updateItem,
  deleteItem,
  createCollection,
  deleteCollection,
} from "./utils/pocketbaseHelpers";

Functions

initPocketBase(url: string): PocketBase

Initializes a new PocketBase instance.

const pb = initPocketBase("https://your-pocketbase-url.com");

authenticateAdmin(pb: PocketBase, email: string, password: string): Promise<AdminAuthResponse>

Authenticates an admin user.

const authData = await authenticateAdmin(pb, "[email protected]", "password");

fetchCollections(pb: PocketBase): Promise<string[]>

Fetches all collection names.

const collections = await fetchCollections(pb);

fetchItems(pb: PocketBase, collectionName: string): Promise<RecordModel[]>

Fetches all items from a specific collection.

const items = await fetchItems(pb, "my_collection");

createItem(pb: PocketBase, collectionName: string, item: { [key: string]: any }): Promise<RecordModel>

Creates a new item in a collection.

const newItem = await createItem(pb, "my_collection", {
  name: "New Item",
  description: "Description",
});

updateItem(pb: PocketBase, collectionName: string, itemId: string, item: { [key: string]: any }): Promise<RecordModel>

Updates an existing item in a collection.

const updatedItem = await updateItem(pb, "my_collection", "item_id", {
  name: "Updated Item",
});

deleteItem(pb: PocketBase, collectionName: string, itemId: string): Promise<void>

Deletes an item from a collection.

await deleteItem(pb, "my_collection", "item_id");

createCollection(pb: PocketBase, token: string, collectionData: any): Promise<void>

Creates a new collection.

await createCollection(pb, 'admin_token', { name: 'new_collection', schema: [...] });

deleteCollection(pb: PocketBase, collectionName: string): Promise<void>

Deletes a collection.

await deleteCollection(pb, "collection_to_delete");

About

pocketbase-extension

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published