Giter Club home page Giter Club logo

loopback-component-history's Introduction

loopback-component-history

checks npm latest npm next license FOSSA Status

Saving history of Create, Update, Delete of a table sometimes is a big problem in data model design level.

A good approach for saving history is about adding some columns to your tables:

  1. UID: A unique record identifier of the history
  2. BeginDate: Record creation date
  3. EndDate: Record deletion date
  4. ID: History of one data is accessable using their same ID
  • Per every Create we will create a new record in table
  • Per every Update we will invalid last history, create new record
  • Per every Delete we will invalid last history

Now, using this simple extension you can add all history features to your models and repositories.

Installation

Use the package manager npm to install loopback-component-history.

npm i --save loopback-component-history

Usage

Follow these steps to add History extension to your loopback4 application:

  • Change your model parent class from Entity to HistoryEntity

  • Remove id property from your model declaration

    // Old
    @model()
    export class User extends Entity {
        @property({
            type: "string",
            unique: true,
            id: true,
        })
        id: string;
    
        @property({
            type: "string",
            default: "",
        })
        username: string;
    
        constructor(data?: Partial<User>) {
            super(data);
        }
    }
    
    // New
    import { HistoryEntity } from "loopback-component-history";
    
    @model()
    export class User extends HistoryEntity {
        @property({
            type: "string",
            default: "",
        })
        username: string;
    
        constructor(data?: Partial<User>) {
            super(data);
        }
    }
  • Change your repository parent class from DefaultCrudRepository to HistoryRepositoryMixin()()

    // Old
    export class UserRepository extends DefaultCrudRepository<
        User,
        typeof User.prototype.id,
        UserRelations
    > {
        // ...
    }
    
    // New
    import { HistoryRepositoryMixin } from "loopback-component-history";
    
    export class UserRepository extends HistoryRepositoryMixin<
        User,
        UserRelations
    >()<Constructor<DefaultCrudRepository<User, string, UserRelations>>>(
        DefaultCrudRepository
    ) {
        // ...
    }

Tip

Don't use unique indexes in your models, instead add unique property to model definition

Convert your model from:

export class User extends Entity {
    @property({
        type: "string",
        required: true,
        index: {
            unique: true,
        },
    })
    username: string;
}

To:

export class User extends HistoryEntity {
    @property({
        type: "string",
        required: true,
        unique: true,
    })
    username: string;
}

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

This project is licensed under the MIT.
Copyright (c) KoLiBer ([email protected])

FOSSA Status

loopback-component-history's People

Contributors

ckoliber avatar semantic-release-bot avatar dependabot[bot] avatar fossabot avatar

Watchers

James Cloos avatar  avatar

Forkers

dmunozb fossabot

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.