Coder Social home page Coder Social logo

Using Mongoose Plugins ? about typegoose HOT 8 CLOSED

szokodiakos avatar szokodiakos commented on July 20, 2024 2
Using Mongoose Plugins ?

from typegoose.

Comments (8)

lohiaad avatar lohiaad commented on July 20, 2024 5

@szokodiakos any solution to this problem

from typegoose.

szokodiakos avatar szokodiakos commented on July 20, 2024 1

Thanks for your interest in Typegoose. Plugins are currently not supported however can be easily implemented (which I will try to do in sometime in the near future) as class decorators.

I will change this to enhancement and create a pull request for this when ready.

If I am correct your other question is that is it possible to reuse properties? I haven't tested this but if you create a base class 'A' which extends Typegoose and you extend class 'B' and 'C' from class 'A' then B and C will have A's properties. Is this what you want to do?

from typegoose.

szokodiakos avatar szokodiakos commented on July 20, 2024 1

Hey @stuartkuentzel, thanks for your interest in Typegoose!

Unfortunately when applying a Mongoose plugin, TypeScript has no information about the plugins "class signature" e.g. which new properties and methods will the plugin add to the schema. This is why the additional typing infos must be provided by hand, as the Typegoose docs states:

If the plugin enhances the schema with additional properties or instance / static methods this typing information should be added manually to the Typegoose class as well.

So in your case you must add authenticate, serializeUser, and deserializeUser to the Typegoose extending User class.

import * as passportLocalMongoose from 'passport-local-mongoose';
import { prop, Typegoose, plugin } from 'typegoose';

@plugin(passportLocalMongoose)
class User extends Typegoose {

    @prop()
    email: string;

    @prop()
    username: string;

    @prop()
    password: string;

    // method return values are not represented here, you'll have to look for the plugin's docs to see what they actually return
    static authenticate();
    static serializeUser();
    static deserializeUser();

}

export const UserModel = new User().getModelForClass(User);

And basically that is it! Hope it helps.

I am going to attach this link to stackoverflow too.

from typegoose.

gkTim avatar gkTim commented on July 20, 2024

Thanks for the plugin annotation works great!

For some plugins like mongoose-pagination it would be great to initialize static as an empty object.
Currently you must add one static methods to the schema so it can initialize it correctly.

The extension of classes seems not possible at the moment.
The extended classes do not inherit the attributes from the parent class also not the pre decorators.
Don't know if they inherit the static methods.

from typegoose.

stuartwk avatar stuartwk commented on July 20, 2024

Hey, awesome work on Typegoose. I'm having issues using the plugin functionality. Tried to implement it using the docs, but can't seem to get it to work. https://stackoverflow.com/questions/45775134/using-plugins-with-typegoose.

from typegoose.

stuartwk avatar stuartwk commented on July 20, 2024

The issue I'm having is, TypeScript doesn't like if I follow with an instanceMethod. If I follow anything after, for example static authenticate(): any;, the following instance method will say "function implementation name must be authenticate". Thanks for your help!

from typegoose.

szokodiakos avatar szokodiakos commented on July 20, 2024

@stuartkuentzel okay i will try to reproduce the problem, meanwhile can you attach what TypeScript / Node / NPM versions are you using?

Thanks!

from typegoose.

stuartwk avatar stuartwk commented on July 20, 2024

@szokodiakos Sure, I'm using Node 8.2.1, TypeScript 2.4.2, and NPM 5.3.0.

from typegoose.

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.