devlato/vectorizer

View on GitHub
src/imagetracer.ts

Summary

Maintainability
D
1 day
Test Coverage

Showing 9 of 9 total issues

OptionsBuilder has 32 functions (exceeds 20 allowed). Consider refactoring.
Open

export class OptionsBuilder {
private options: Options;
 
static create() {
return new OptionsBuilder();
Severity: Minor
Found in src/imagetracer.ts - About 4 hrs to fix

    File imagetracer.ts has 318 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /* eslint-disable @typescript-eslint/camelcase */
    import ImageTracer, {
    BlurRadius,
    ColorComponentValue,
    ColorSampling,
    Severity: Minor
    Found in src/imagetracer.ts - About 3 hrs to fix

      Function fromHumanReadableOptions has 64 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      static fromHumanReadableOptions(options: HumanReadableInputOptions): OptionsBuilder {
      const optionsBuilder = OptionsBuilder.create();
      const { tracing, colorQuantization, layering, svgRendering, blurPreprocessing, debug, palette } = options;
       
      if (tracing != null) {
      Severity: Major
      Found in src/imagetracer.ts - About 2 hrs to fix

        Function buildHumanReadable has 45 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        buildHumanReadable(): HumanReadableOptions {
        return {
        tracing: {
        enableCORS: this.options.corsenabled,
        straightLinesThreshold: this.options.ltres,
        Severity: Minor
        Found in src/imagetracer.ts - About 1 hr to fix

          Function fromHumanReadableOptions has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

          static fromHumanReadableOptions(options: HumanReadableInputOptions): OptionsBuilder {
          const optionsBuilder = OptionsBuilder.create();
          const { tracing, colorQuantization, layering, svgRendering, blurPreprocessing, debug, palette } = options;
           
          if (tracing != null) {
          Severity: Minor
          Found in src/imagetracer.ts - About 35 mins to fix

          Function buildHumanReadable has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          buildHumanReadable(): HumanReadableOptions {
          return {
          tracing: {
          enableCORS: this.options.corsenabled,
          straightLinesThreshold: this.options.ltres,
          Severity: Minor
          Found in src/imagetracer.ts - About 25 mins to fix

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

          debugStraghtLineControlPointRadius(straightLineControlPointRadius: PointRadius): this {
          this.options.lcpr = straightLineControlPointRadius === 'disabled' ? 0 : straightLineControlPointRadius;
           
          return this;
          }
          Severity: Major
          Found in src/imagetracer.ts and 2 other locations - About 50 mins to fix
          src/imagetracer.ts on lines 370..374
          src/imagetracer.ts on lines 416..420

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

          debugQuadraticSplineControlPointerRadius(quadraticSplineControlPointerRadius: PointRadius): this {
          this.options.qcpr = quadraticSplineControlPointerRadius === 'disabled' ? 0 : quadraticSplineControlPointerRadius;
           
          return this;
          }
          Severity: Major
          Found in src/imagetracer.ts and 2 other locations - About 50 mins to fix
          src/imagetracer.ts on lines 370..374
          src/imagetracer.ts on lines 404..408

          Similar blocks of code found in 3 locations. Consider refactoring.
          Open

          blurPreprocessingBlurRadius(blurRadius: BlurRadius): this {
          this.options.blurradius = blurRadius === 'disabled' ? 0 : blurRadius;
           
          return this;
          }
          Severity: Major
          Found in src/imagetracer.ts and 2 other locations - About 50 mins to fix
          src/imagetracer.ts on lines 404..408
          src/imagetracer.ts on lines 416..420
          Category
          Status