Giter Site home page Giter Site logo

Comments (9)

cartant avatar cartant commented on June 15, 2024 3

Yeah, that sounds pretty reasonable. 4.30.0 has been published and the rule now has alias and checkDestroy options.

from rxjs-tslint-rules.

anotherpit avatar anotherpit commented on June 15, 2024 1

@cartant

I've just checked out new version, and tried to run against my repo. Experiencing some issues. Even if checkDestroy is set to false the rule does still check subject and is still opinionated about operator signature. Let me adapt code from your tests to demonstrate:

// Alias accepts component instance, not destroy subject
const someAlias = (cmp) => takeUntil(cmp.destroy);

@Component({
  selector: "component-with-alias"
})
class CorrectComponent implements OnDestroy {
  private destroy = new Subject<void>();
  someMethod() {
    a.pipe(
      switchMap(_ => b),
      someAlias(this)
    ).subscribe();
  }
  ngOnDestroy() {
    this.destroy.next();
    this.destroy.complete();
  }
}
{
  "rules": {
    "rxjs-prefer-angular-takeuntil": {
      "options": [{
        "alias": ["someAlias"],
        "checkDestroy": false
      }]
    }
  }
}

My suggestion is to disable any semantic checks and any assumptions about operator's signature when checkDestroy is set to false.

from rxjs-tslint-rules.

cartant avatar cartant commented on June 15, 2024 1

@anotherpit This should be fixed in 4.30.1 and checkDestroy should default to false if an alias is specified.

from rxjs-tslint-rules.

cartant avatar cartant commented on June 15, 2024

@anotherpit Added a test with your snippet and config - https://github.com/cartant/rxjs-tslint-rules/tree/master/test/v6/fixtures/issues/115 - and AFAICT it passes, so I'm not sure what the issue is.

from rxjs-tslint-rules.

anotherpit avatar anotherpit commented on June 15, 2024

Well, it actually passes even without any takeUntil operator at all. I'm doing further investigations.

from rxjs-tslint-rules.

anotherpit avatar anotherpit commented on June 15, 2024

@cartant The test always passed because of missing declarations of a and b

Here's a fixture replacement to make it fail:

import { Component } from "@angular/core";
import { of, Subject } from "rxjs";
import { switchMap, takeUntil } from "rxjs/operators";

const a = of("a");
const b = of("b");

const someAlias = (cmp) => takeUntil(cmp.destroy);

@Component({
  selector: "component-with-alias"
})
class CorrectComponent implements OnDestroy {
  private destroy = new Subject<void>();
  someMethod() {
    a.pipe(
      switchMap(_ => b),
      someAlias(this)
    ).subscribe();
  }
  ngOnDestroy() {
    this.destroy.next();
    this.destroy.complete();
  }
}

[prefer-takeuntil]: Subscribing without takeUntil is forbidden

Would you mind reopening this issue?

from rxjs-tslint-rules.

anotherpit avatar anotherpit commented on June 15, 2024

And here's some extreme case that I suppose should also pass when checkDestroy is false:

import { Component } from "@angular/core";
import { of } from "rxjs";
import { switchMap } from "rxjs/operators";

const a = of("a");
const b = of("b");

const someAlias = (nevermind?: string, the?: boolean, signature?: number) => {}

@Component({
  selector: "component-with-alias"
})
class CorrectComponent {
  someMethod() {
    a.pipe(
      switchMap(_ => b),
      someAlias()
    ).subscribe();
  }
}

[prefer-takeuntil]: Subscribing without takeUntil is forbidden

from rxjs-tslint-rules.

anotherpit avatar anotherpit commented on June 15, 2024

@cartant I do confirm: now it works on my repo. Thanks.

from rxjs-tslint-rules.

cartant avatar cartant commented on June 15, 2024

@anotherpit No worries.

from rxjs-tslint-rules.

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.