Skip to content

Commit

Permalink
feedback allows screenshot (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia committed Mar 22, 2024
1 parent ae97604 commit 3120905
Show file tree
Hide file tree
Showing 9 changed files with 77 additions and 232 deletions.
291 changes: 68 additions & 223 deletions src/NuGetTrends.Web/Portal/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/NuGetTrends.Web/Portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"@angular/platform-browser": "^17.1.3",
"@angular/platform-browser-dynamic": "^17.1.3",
"@angular/router": "^17.1.3",
"@sentry/angular-ivy": "^8.0.0-alpha.4",
"@sentry-internal/feedback": "^8.0.0-alpha.4",
"@sentry/angular": "^8.0.0-alpha.5",
"@sentry-internal/feedback": "^8.0.0-alpha.5",
"@types/chart.js": "2.9.32",
"bulma": "^0.9.4",
"bulma-start": "^0.0.5",
Expand Down
2 changes: 1 addition & 1 deletion src/NuGetTrends.Web/Portal/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { NgModule, ErrorHandler } from '@angular/core';
import { DatePipe } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';
import { Router } from '@angular/router';
import * as Sentry from '@sentry/angular-ivy';
import * as Sentry from '@sentry/angular';
import { feedbackIntegration, feedbackModalIntegration, feedbackScreenshotIntegration } from "@sentry-internal/feedback";

import { AppComponent } from './app.component';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { firstValueFrom, Subscription } from 'rxjs';
import { ActivatedRoute, Params, Router } from '@angular/router';
import { AppAnimations } from '../shared';
import { ToastrService } from 'ngx-toastr';
import * as Sentry from "@sentry/angular-ivy";
import * as Sentry from "@sentry/angular";

import { PackagesService, PackageInteractionService } from '../core';
import { IPackageDownloadHistory, IDownloadStats } from '../shared/models/package-models';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, OnDestroy, AfterViewInit, ElementRef, ChangeDetectorRef } from '@angular/core';
import { Subscription } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
import * as Sentry from "@sentry/angular-ivy";
import * as Sentry from "@sentry/angular";

import { LoadingIndicatorService } from './loading-indicator.service';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { IPackageDownloadHistory, IPackageColor, TagColor } from '../../models/p
import { PackageInteractionService } from '../../../core';
import { environment } from '../../../../environments/environment.prod';
import { ToastrService } from 'ngx-toastr';
import * as Sentry from "@sentry/angular-ivy";
import * as Sentry from "@sentry/angular";

@Component({
selector: 'app-package-list',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { MatLegacyAutocomplete as MatAutocomplete, MatLegacyAutocompleteSelected
import { catchError, debounceTime, distinctUntilChanged, filter, map, mapTo, startWith, switchMap, tap } from 'rxjs/operators';
import { EMPTY, Observable, Subject, merge, firstValueFrom } from 'rxjs';
import { ToastrService } from 'ngx-toastr';
import * as Sentry from '@sentry/angular-ivy';
import * as Sentry from '@sentry/angular';

import { IPackageDownloadHistory, IPackageSearchResult, SearchType } from '../../models/package-models';
import { PackagesService, PackageInteractionService } from '../../../core';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, Input, ElementRef, HostListener, EventEmitter, Output, ErrorHandler } from '@angular/core';
import { ToastrService } from 'ngx-toastr';
import * as Sentry from '@sentry/angular-ivy';
import * as Sentry from '@sentry/angular';

import { SocialShareService } from 'src/app/core/services/social-share.service';

Expand Down
2 changes: 1 addition & 1 deletion src/NuGetTrends.Web/Portal/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import * as Sentry from "@sentry/angular-ivy";
import * as Sentry from "@sentry/angular";

import { AppModule } from './app/app.module';
import { environment } from './environments/environment';
Expand Down

0 comments on commit 3120905

Please sign in to comment.