0.10.4 • Published 3 months ago

expo-sqlite-eloquent-orm v0.10.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Expo SQLite Eloquent ORM

Expo SQLite Eloquent ORM is a lightweight Object-Relational Mapping (ORM) wrapper for the expo-sqlite module, designed to provide a fluent and intuitive API for handling database operations in React Native applications. Inspired by Laravel's Eloquent, this library simplifies the process of interacting with SQLite databases by abstracting complex SQL queries into easy-to-understand JavaScript methods.

Features

  • Fluent query builder for SQLite databases
  • Easy-to-use API for defining models and performing CRUD operations
  • Automatic casting of attributes to specified data types
  • Support for relationships and eager loading
  • Migration system for database versioning and setup

Installation

To install Expo SQLite Eloquent ORM, you need to have an Expo or React Native project set up. Then run:

npm install expo-sqlite-eloquent-orm
# or
yarn add expo-sqlite-eloquent-orm

Run the Example App

Model Class API

Static Methods

MethodDescriptionReturn TypeParameters
tableSets the table name for queries.Modelname: string
selectSpecifies the fields to select in a query.Modelfields: string \| string[]
joinAdds a join clause to the query.Modeltype: 'INNER' \| 'LEFT' \| 'RIGHT', table: string, firstKey: string, secondKey: string
whereAdds a where clause to the query.Modelcolumn: string, operatorOrValue: any, value?: any
orderByAdds an order by clause to the query.Modelcolumn: string, direction: 'ASC' \| 'DESC'
limitSets a limit on the number of records returned.Modelnumber: number
withSpecifies relations to include in the query results.Modelrelation: string
findFinds a record by its ID.Promise<Model \| null>id: number \| string
insertInserts a new record into the database.Promise<SQLResult>data: Record<string, any>
seedSeeds data into the database if the table is empty.Promise<void>data: Array<Record<string, any>>
executeSqlExecutes a custom SQL query.Promise<SQLResult>sql: string, params: any[]

Instance Methods

MethodDescriptionReturn TypeParameters
insertInstance method to insert a new record.Promise<SQLResult>data: Record<string, any>
saveSaves the current instance to the database.Promise<SQLResult>-
deleteDeletes the current instance from the database.Promise<SQLResult>-
getRetrieves records based on the current query.Promise<Model[]>-
firstRetrieves the first record based on the current query.Promise<Model \| null>-
updateUpdates the current instance in the database.Promise<SQLResult>attributes: Partial<ModelAttributes>
hasOneDefines a has-one relationship.Promise<Model \| null>relatedModel: Model, foreignKey?: string, localKey: string = 'id'
hasManyDefines a has-many relationship.Promise<Model[]>relatedModel: Model, foreignKey?: string, localKey: string = 'id'
belongsToDefines a belongs-to relationship.Promise<Model \| null>relatedModel: Model, foreignKey: string, otherKey: string = 'id'
belongsToManyDefines a belongs-to-many relationship.Promise<Model[]>relatedModel: typeof Model, joinTableName?: string, foreignKey?: string, otherKey?: string

Types and Interfaces

  • Casts: Record of attribute types ('number' \| 'boolean' \| 'string' \| 'json').
  • Clauses: Object representing different clauses in a query.
  • ModelAttributes: Record of any type representing model attributes.
  • SQLResult: Interface representing the result of an SQL query.

Note: Some methods are simplified for brevity. Consult the source code for detailed implementation.

Quick Start

To get started with expo-sqlite-eloquent-orm, you'll need to setup your initial migrations and define your models.

Running Migrations

expo-sqlite-eloquent-orm provides a migration system to manage your database schema and versioning. You can define migrations to create and modify tables in a structured manner.

To run migrations, you need to create migration files and then execute them. You can use the Migration class to handle migrations. Here's an example of how to create and run migrations:

import { Migration } from 'expo-sqlite-eloquent-orm';

// Define your migration scripts
const migrations = {
  '1699486848_init': `
    CREATE TABLE IF NOT EXISTS users (
      id INTEGER PRIMARY KEY AUTOINCREMENT,
      name TEXT,
      email TEXT
    );
  `,
  '1699486885_updating_users_table': `
    ALTER TABLE users ADD COLUMN active BOOLEAN;
  `,
};

// Run migrations
try { 
  await Migration.runMigrations(migrations);
} catch(error) {
  console.error('Error running migrations:', error);
}

Defining Models

Create models by extending the Model class. Specify your table name and any casts for attributes:

import { Model } from 'expo-sqlite-eloquent-orm';

class User extends Model {
  static tableName = 'users';
  static casts = {
    id: 'number',
    active: 'boolean',
    // other attributes...
  };
  // Define relationships, custom methods, etc.
}

Querying

Utilize model methods to perform queries:

// Retrieve a user by ID
const user = await User.find(1);

// Get all users with a specific attribute
const activeUsers = await User.where('active', '=', true).get();

// Chain query methods for more complex queries
const specificUsers = await User.select(['id', 'name'])
                                .where('active', '=', true)
                                .orderBy('name', 'DESC')
                                .limit(10)
                                .get();

Inserting Records

To insert new records into the database, create a new instance of your model with the desired attributes, and then call the save method:

// Create a new user instance
const newUser = new User({
  name: 'John Doe',
  email: 'john@example.com',
  active: true
});

// Insert the new user into the database
await newUser.save();

Updating Records

To update an existing record, retrieve the model instance, set the new attribute values, and then call the save method:

// Retrieve a user by ID
const user = await User.find(1);

// Update attributes
user.name = 'Jane Doe';
user.email = 'jane.doe@example.com';

// Save the changes to the database
await user.save();

Deleting Records

To delete a record from the database, retrieve the model instance and then call the delete method:

// Retrieve a user by ID
const user = await User.find(1);

// Delete the user from the database
await user.delete();

// Delete all inactive users
await User.where('active', '=', false).delete();

Relationships

expo-sqlite-eloquent-orm supports defining and using relationships between models, making it easy to work with related data.

One-to-One Relationship

To define a one-to-one relationship between two models, you can use the hasOne method on the model that declares the relationship. For example, if you have a User model and a Profile model where each user has one profile:

class User extends Model {
  // ...
  
  async profile() {
    return this.hasOne(Profile, 'userId');
  }
}

class Profile extends Model {
  // ...
}

const user = await User.find(1);

// Automatically loaded
const userProfile = user.profile;

One-to-Many Relationship

To define a one-to-many relationship, use the hasMany method. For instance, if each User can have multiple Post records:

class User extends Model {
  // ...
  
  async posts() {
    return this.hasMany(Post, 'userId');
  }
}

class Post extends Model {
  // ...
}

const user = await User.find(1);

// Automatically loaded
const userPosts = user.posts;

Many-to-One Relationship

To define a many-to-one relationship, use the belongsTo method. For example, if each Post belongs to a single User:

class Post extends Model {
  // ...
  
  async user() {
    return this.belongsTo(User, 'userId');
  }
}

class User extends Model {
  // ...
}

const post = await Post.find(1);

// Automatically loaded
const postUser = await post.user;

To Do

[] Fix where('column', null) to accept actual null and just string 'null' [] Fix Typescript errors when defining models, ie "Class static side 'typeof Person' incorrectly extends base class static side 'typeof Model'." [] Many to many attach/detach methods [] Update .with() to accept an array of relationships [] Add .from() that proxies to .table()? [] Update .table() to accept an array of relationships (for joins) [] Add .query() for raw query with params [] Add .create() that returns the created model (https://laravel.com/docs/10.x/eloquent#inserts) [] whereRaw [] Bulk eager loading, currently eager loading is n+1 [] Reactivity? Caching with automatic invalidation?

0.10.3

3 months ago

0.10.4

3 months ago

0.10.2

3 months ago

0.10.1

3 months ago

0.10.0

3 months ago

0.9.21

5 months ago

0.9.20

5 months ago

0.9.19

5 months ago

0.9.18

5 months ago

0.9.17

5 months ago

0.9.16

5 months ago

0.9.15

5 months ago

0.9.14

5 months ago

0.9.13

5 months ago

0.9.12

5 months ago

0.9.11

5 months ago

0.9.10

5 months ago

0.9.9

5 months ago

0.9.8

5 months ago

0.9.7

5 months ago

0.9.6

6 months ago

0.9.5

6 months ago

0.9.4

6 months ago

0.9.3

6 months ago

0.9.2

6 months ago

0.9.1

6 months ago

0.9.0

6 months ago