How to use the @ngneat/until-destroy.UntilDestroy function in @ngneat/until-destroy

To help you get started, we’ve selected a few @ngneat/until-destroy examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ngneat / until-destroy / integration / app / app.component.spec.ts View on Github external
it('should complete the stream on provider', () => {
    // Arrange
    @UntilDestroy()
    @Injectable()
    class MockService {
      disposed = false;

      constructor() {
        new Subject()
          .pipe(
            untilDestroyed(this),
            finalize(() => {
              this.disposed = true;
            })
          )
          .subscribe();
      }
    }
github ngneat / until-destroy / integration / app / app.component.spec.ts View on Github external
it('should unsubscribe from the component property', () => {
    // Arrange
    @UntilDestroy({ checkProperties: true })
    @Component({ template: '' })
    class MockComponent {
      disposed = false;

      subscription = new Subject()
        .pipe(
          finalize(() => {
            this.disposed = true;
          })
        )
        .subscribe();
    }

    // Act
    TestBed.configureTestingModule({
      declarations: [MockComponent]
github ngneat / until-destroy / integration / app / app.component.spec.ts View on Github external
it('should unsubscribe from the directive property', () => {
    // Arrange
    @Component({
      template: '<div></div>'
    })
    class MockComponent {}

    @UntilDestroy({ checkProperties: true })
    @Directive({ selector: '[test]' })
    class MockDirective {
      disposed = false;

      subscription = new Subject()
        .pipe(
          finalize(() =&gt; {
            this.disposed = true;
          })
        )
        .subscribe();
    }

    // Act
    TestBed.configureTestingModule({
      declarations: [MockComponent, MockDirective]
github ngneat / until-destroy / integration / app / http / http.directive.ts View on Github external
import { Directive } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { UntilDestroy } from '@ngneat/until-destroy';
import { interval, of } from 'rxjs';
import { switchMap, catchError, finalize } from 'rxjs/operators';

@UntilDestroy({ checkProperties: true })
@Directive({ selector: '[http]' })
export class HttpDirective {
  subscription = interval(2000)
    .pipe(
      switchMap(() =>
        this.http
          .get('https://jsonplaceholder.typicode.com/users')
          .pipe(catchError(() => of([])))
      ),
      finalize(() => console.log('HttpDirective stream has completed'))
    )
    .subscribe(response => {
      console.log('HttpDirective got such response via HTTP: ', response);
    });

  constructor(private http: HttpClient) {}
github ngneat / until-destroy / integration / app / interval / interval.component.ts View on Github external
import { Component, OnDestroy } from '@angular/core';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
import { fromEvent } from 'rxjs';
import { pluck, debounceTime, finalize } from 'rxjs/operators';

import { IntervalService } from './interval.service';

@UntilDestroy({ checkProperties: true })
@Component({
  selector: 'app-interval',
  templateUrl: './interval.component.html'
})
export class IntervalComponent implements OnDestroy {
  valueFromIntervalService = 0;

  subscription = fromEvent(document, 'mousemove')
    .pipe(
      debounceTime(200),
      pluck('clientX'),
      finalize(() =&gt; console.log('IntervalComponent fromEvent stream has completed'))
    )
    .subscribe(clientX =&gt; {
      console.log(`Mouse clientX position is ${clientX}`);
    });
github ngneat / until-destroy / integration / app / document-click / document-click.component.ts View on Github external
import { Component } from '@angular/core';
import { UntilDestroy } from '@ngneat/until-destroy';
import { fromEvent } from 'rxjs';
import { pluck, finalize } from 'rxjs/operators';

@UntilDestroy({ arrayName: 'subscriptions' })
@Component({
  selector: 'app-document-click',
  templateUrl: './document-click.component.html'
})
export class DocumentClickComponent {
  clientX = 0;

  subscriptions = [
    fromEvent(document, 'click')
      .pipe(
        pluck('clientX'),
        finalize(() =&gt; console.log('DocumentClick fromEvent stream has completed'))
      )
      .subscribe(clientX =&gt; {
        console.log(`You've clicked on the document and clientX is ${clientX}`);
        this.clientX = clientX;

@ngneat/until-destroy

RxJS operator that unsubscribes when Angular component is destroyed

MIT
Latest version published 1 year ago

Package Health Score

65 / 100
Full package analysis