Skip to content

Commit

Permalink
Housekeeping (#567)
Browse files Browse the repository at this point in the history
* Remove shopping list, update perkbench, fix gap in home

* Rest of files, oops =)
  • Loading branch information
dcaslin authored Jun 22, 2024
1 parent d095600 commit 53eb277
Show file tree
Hide file tree
Showing 25 changed files with 59 additions and 1,032 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "d2-checklist",
"version": "24.0.5",
"version": "24.1.0",
"manifest": " 226232.24.06.12.1730-3-bnet.55913",
"license": "MIT",
"scripts": {
Expand Down
7 changes: 2 additions & 5 deletions src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import { GamerTagSearchComponent } from './gamer-tag-search/gamer-tag-search.com
import { GearModule } from './gear';
import { LoggedInGuard } from './guards/logged-in.guard';
import { HistoryModule } from './history';
import { BountySetsDialogComponent } from './home/bounty-sets-dialog/bounty-sets-dialog.component';
import { PartyComponent } from './party/party.component';
import { PGCRModule } from './pgcr';
import { PlayerModule } from './player';
Expand All @@ -48,8 +47,6 @@ import { StorageService } from './service/storage.service';
import { WeekService } from './service/week.service';
import { SettingsModule } from './settings';
import { ChildComponent } from './shared/child.component';
import { BountyShoppingListContainerComponent } from './shopping-list/bounty-shopping-list-container/bounty-shopping-list-container.component';
import { BountyShoppingListComponent } from './shopping-list/bounty-shopping-list/bounty-shopping-list.component';
import { TestbedComponent } from './testbed/testbed.component';
import { VendorsContainerComponent } from './vendors/vendors-container/vendors-container.component';
import { VendorsComponent } from './vendors/vendors/vendors.component';
Expand Down Expand Up @@ -108,8 +105,8 @@ import { UberRowDialogComponent } from './uber-list/uber-row-dialog/uber-row-dia
ChildComponent,
SuccessSnackbarComponent, InfoSnackbarComponent, WarnSnackbarComponent,
SelectPlatformDialogComponent, GamerTagSearchComponent, PartyComponent, PrivacyComponent, TestbedComponent, VendorsComponent, VendorsContainerComponent,
BountyShoppingListComponent, BountyShoppingListContainerComponent, BountySetsDialogComponent, HomeComponent, BurnDialogComponent,
DealsContainerComponent, DealsComponent, CollectionDealsComponent, ArmorDealsComponent,
HomeComponent, BurnDialogComponent,
DealsContainerComponent, DealsComponent, CollectionDealsComponent, ArmorDealsComponent,
ArmorCompareDialogComponent, PlayerCurrenciesComponent, RobotHomeComponent, AppStatusComponent, UberPursuitCheckComponent, WeaponDealsComponent, WeaponCompareDialogComponent, PerkbenchComponent, PerkBenchDialogComponent, UberListToggleComponent, UberListParentComponent, UberListBuilderComponent, UberListViewComponent, UberRowDialogComponent
],
providers: [
Expand Down
74 changes: 0 additions & 74 deletions src/app/home/bounty-sets-dialog/bounty-sets-dialog.component.html

This file was deleted.

92 changes: 0 additions & 92 deletions src/app/home/bounty-sets-dialog/bounty-sets-dialog.component.scss

This file was deleted.

97 changes: 0 additions & 97 deletions src/app/home/bounty-sets-dialog/bounty-sets-dialog.component.ts

This file was deleted.

33 changes: 5 additions & 28 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,35 +72,12 @@
</mat-panel-description>
</mat-expansion-panel-header>

<mat-card-content class="grid-parent bounty-shopping-list-parent">
<mat-card-content class="grid-parent deals-parent">
<d2c-deals-container></d2c-deals-container>
</mat-card-content>
</mat-expansion-panel>
</mat-card>


<mat-card *ngIf="isSignedOn$|async">
<mat-expansion-panel class="mat-elevation-z0" [expanded]='bountiesExpanded' (opened)="onToggleBounties(true)"
(closed)="onToggleBounties(false)">
<mat-expansion-panel-header>

<mat-panel-title>
<span class="mat-card-header">
<span class="mat-card-title title-hack">Bounties</span>
</span>
</mat-panel-title>

<mat-panel-description>
Grouped Bounties & Shopping List
</mat-panel-description>
</mat-expansion-panel-header>

<mat-card-content class="grid-parent bounty-shopping-list-parent">
<d2c-bounty-shopping-list-container *ngIf="bountiesExpanded"></d2c-bounty-shopping-list-container>
</mat-card-content>
</mat-expansion-panel>

</mat-card>
<div class="grid-parent" *ngIf="today && today.publicMilestones" width="100%">

<div>
Expand Down Expand Up @@ -177,7 +154,7 @@
</mat-card-content>
</mat-card>
</div>
<div>
<div *ngIf="today.publicMilestones.strikes||today.publicMilestones.crucible">
<mat-card *ngIf="today.publicMilestones.strikes as strikes">
<mat-card-header>
<mat-card-title>Strike Playlist <span *ngIf="strikes.doubled" class="warn-text pad-left">Double ranks!</span></mat-card-title>
Expand Down Expand Up @@ -309,8 +286,8 @@

<mat-autocomplete #elasticAuto="matAutocomplete" (optionSelected)="select($event)" [displayWith]="displayFn">
<mat-option *ngFor="let v of elasticSearchService.filteredAutoCompleteOptions$|async" [value]="v">

<img class="option-img" aria-hidden [src]="'https://www.bungie.net' + v.iconPath " height="36">
{{v.displayName}} <fa-icon [icon]="platformMap[v.membershipType].icon"></fa-icon> <span class="pad-left simple-caption-darker-no-margin">{{v.lastPlayed|d2cAgoHumanized}}</span>
{{v.displayName}} <fa-icon [icon]="platformMap[v.membershipType].icon"></fa-icon> <span class="pad-left simple-caption-darker-no-margin">{{v.lastPlayed|d2cAgoHumanized}}</span>
</mat-option>
</mat-autocomplete>
</mat-autocomplete>
Loading

0 comments on commit 53eb277

Please sign in to comment.