Skip to content

Instantly share code, notes, and snippets.

View mhdirkse's full-sized avatar

Martijn Dirkse mhdirkse

View GitHub Profile
@mhdirkse
mhdirkse / report-value.component.ts
Created October 9, 2025 15:49
Method order rule in .ts file does not always order methods from important to unimportant
import { CommonModule } from '@angular/common';
import { Component, inject, Input, OnDestroy, OnInit, output, ViewChild } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { MonacoEditorComponent } from '../../../monaco-editor/monaco-editor.component';
import { AngularSplitModule } from 'angular-split';
import { HttpService } from '../../../shared/services/http.service';
import { BehaviorSubject, catchError, firstValueFrom, Observable, ReplaySubject, Subscription } from 'rxjs';
import { ErrorHandling } from '../../../shared/classes/error-handling.service';
import { Transformation } from '../../../shared/interfaces/transformation';
import { Difference2ModalComponent } from '../../difference-modal/difference2-modal.component';