Giter Site home page Giter Site logo

Comments (2)

noam-honig avatar noam-honig commented on May 22, 2024 2

First of all, thanks :)

With regards to ViewModels, there are several available strategies that you can employ.

  • To control the hiding and exposing of properties, you can use the inclideInApi option of a field, for example:
class User{
...
@Fields.string({ includeInApi:false })
password='';
}

Or an authorization rule:

class User{
...
@Fields.string({ includeInApi:"Admin" })
password='';
}

Or even a condition that is based on the instance itself:

class User{
...
@Fields.string<User>({ includeInApi:(remult)=>/* some rule */  })
password='';
}
  • You can use the serverExpression field option, to enrich the view model with server data. Here's an example from the CRM-Demo

  • You can also use the sqlExpression if you're using Postgres to create more sophisticated sql's

  • You can use multiple entities that view the same database table and optionally use inheritance to reduce duplicity, for example:

@Entity("deliveries")
export class Deliveries {
    @Fields.uuid()
    id?: string;
    @Fields.string()
    name = '';
    @Fields.boolean()
    deleted = false;
}

@Entity<ActiveDeliveries>("activeDeliveries", {
    dbName: 'deliveries',
    backendPrefilter: {
        deleted: false
    }
})
export class ActiveDeliveries extends Deliveries {
}

If you have a specific example that you are interested in, please share it here, and we'll be happy to review it together.

from remult.

3ldar avatar 3ldar commented on May 22, 2024

Thanks for the reply. I have been mentoring a group for a while and we have been reviewing some nodejs frameworks these questions came to mind while in that brief review.

from remult.

Related Issues (20)

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.