Giter Club home page Giter Club logo

ngx-repository's People

Contributors

dependabot[bot] avatar oscar-guerin avatar rjiraya avatar thomasnisole avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Forkers

magic-shefla

ngx-repository's Issues

Optional debug flag for NgxHttpRepositoryModule

In this example, the debug option is required. It should be optional.

 NgxHttpRepositoryModule.forRoot({
      configuration: {
        findAll: {
          pageResponseProcessor: MyHttpPageBuilder
        }
      },
      debug: false
    }),

Avoid circular dependency issue

Actually, if two ressource depending each other. There are circular dependency warning and joinColumn failed to initialize.

NgxRepositoryTestingModule : error thrown when repository used in service constructor

Several errors thrown on testing when a repository method in called in a service constructor.

MyService

    public readonly models$: Observable<Model[]>;

    @InjectRepository({ resourceType: () => Model, repository: () => HttpRepository })
    private readonly repository: HttpRepository<Model, string>;

    public constructor() {
        this.models$ = this.repository.findAll();
    }

    public create(model: Model): Observable<Model> {
        return this.repository.create(model);
    }

Tests

describe('MyService', () => {
    let service: MyService;
    let repository: MockRepository;

    beforeEach(() => {
        TestBed.configureTestingModule({
            imports: [
                NgxRepositoryTestingModule.forTest(),
                HttpClientTestingModule
            ],
            providers: [
                MyService,
            ]
        });

        service = TestBed.inject(MyService);

        repository = NgxRepositoryTestingModule.getRepository(Model, HttpRepository);
    });

    describe('#constructor()', () => {
        it('should call find all from repository', (done: DoneCallback) => {
            spyOn(repository, 'findAll').and.returnValue(of([]));

            service.models$.subscribe(() => {
                expect(repository.findAll).toHaveBeenCalled();

                done();
            });
        });
    });

    describe('#create()', () => {
        it('should call create from repository', (done: DoneCallback) => {
            spyOn(repository, 'create').and.returnValue(of('1'));

            service.create(new Model()).subscribe(() => {
                expect(repository.create).toHaveBeenCalled();

                done();
            });
        });
    });
});

Errors thrown

First test

console.error Error: Uncaught 'MockRepository method should be mocked'

Second test

TypeError: Cannot read property 'create' of undefined

Make demo project in main src

To test and demonstrate all angular libraries project, we want an application in main src of this Angular project.

The first demonstration will be the ngx-repository usage example.

1d

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.