-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added heist filter group at the market
- Loading branch information
1 parent
c9d0c80
commit 9fff770
Showing
6 changed files
with
131 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
82 changes: 82 additions & 0 deletions
82
.../component/market-item-search-filter-heist/market-item-search-filter-heist.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Wings Revealed" path="heist_filters.filters.heist_wings" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Total Wings" path="heist_filters.filters.heist_max_wings" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Escape Routes Revealed" path="heist_filters.filters.heist_escape_routes" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Total Escape Routes" path="heist_filters.filters.heist_max_escape_routes" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Reward Rooms Revealed" path="heist_filters.filters.heist_reward_rooms" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Total Reward Rooms" path="heist_filters.filters.heist_max_reward_rooms" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Area Level" path="heist_filters.filters.area_level" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Lockpicking Level" path="heist_filters.filters.heist_lockpicking" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Brute Force Level" path="heist_filters.filters.heist_brute_force" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Perception Level" path="heist_filters.filters.heist_perception" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Demolition Level" path="heist_filters.filters.heist_demolition" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Counter-Thaum. Level" path="heist_filters.filters.heist_counter_thaumaturgy" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Trap Disarmament Level" path="heist_filters.filters.heist_trap_disarmament" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Agility Level" path="heist_filters.filters.heist_agility" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
<div class="market-col"> | ||
<app-market-input-range label="Deception Level" path="heist_filters.filters.heist_deception" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> | ||
<div class="market-row"> | ||
<div class="market-col"> | ||
<app-market-input-range label="Engineering Level" path="heist_filters.filters.heist_engineering" [request]="request"> | ||
</app-market-input-range> | ||
</div> | ||
</div> |
25 changes: 25 additions & 0 deletions
25
...mponent/market-item-search-filter-heist/market-item-search-filter-heist.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { MarketItemSearchFilterHeistComponent } from './market-item-search-filter-heist.component'; | ||
|
||
describe('MarketItemSearchFilterHeistComponent', () => { | ||
let component: MarketItemSearchFilterHeistComponent; | ||
let fixture: ComponentFixture<MarketItemSearchFilterHeistComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ MarketItemSearchFilterHeistComponent ] | ||
}) | ||
.compileComponents(); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(MarketItemSearchFilterHeistComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
12 changes: 12 additions & 0 deletions
12
...et/component/market-item-search-filter-heist/market-item-search-filter-heist.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; | ||
import { TradeSearchRequest } from '@shared/module/poe/trade'; | ||
|
||
@Component({ | ||
selector: 'app-market-item-search-filter-heist', | ||
templateUrl: './market-item-search-filter-heist.component.html', | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class MarketItemSearchFilterHeistComponent { | ||
@Input() | ||
public request: TradeSearchRequest; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters