-
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 support page with discord and github issues - added trade filter setting (Incoming & Outgoing, Incoming) - added trade layout setting (Top To Bottom, Bottom To Top) - added trade window to be transparent if no active trades and the window is pinned - update trade action finished to be always shown even if no trade has been initalized - fixed a focus issue occuring when using the trade whisper button
- Loading branch information
1 parent
31e32ee
commit 2882754
Showing
31 changed files
with
699 additions
and
77 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export const APP_UID = 'cijcjjcjilpooaeppicpfibopeefaglkefjaeofl'; | ||
export const APP_SUB_ID = 32; |
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
2 changes: 1 addition & 1 deletion
2
src/app/modules/trade/component/trade-message/trade-message.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
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
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
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
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
39 changes: 22 additions & 17 deletions
39
src/app/modules/trade/window/trade-window/trade-window.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 |
---|---|---|
@@ -1,19 +1,24 @@ | ||
<div appResize> | ||
<ng-container *ngIf="data$ | async as data"> | ||
<app-header [name]="'PoE Overlay - Trade (' + (data.messages.length - data.removed.length) + ')'" [width]="300" | ||
[margin]="10" [closeable]="false" [pinnable]="true" [pinned]="data.settings.tradeWindowPinned" | ||
(pinnedChange)="onPinnedChange($event)" (settingsToggle)="onSettingsToggle()"> | ||
<ng-container ngProjectAs="controls"> | ||
<mat-icon (click)="toggle = !toggle" class="indicator" [class.open]="toggle">keyboard_arrow_down | ||
</mat-icon> | ||
</ng-container> | ||
<ng-container *ngIf="toggle"> | ||
<ng-container *ngFor="let message of data.messages"> | ||
<app-trade-message *ngIf="!data.removed.includes(message)" [message]="message" | ||
[settings]="data.settings" (dismiss)="onDismiss(message)"> | ||
</app-trade-message> | ||
<ng-container *ngIf="data$ | async as data"> | ||
<ng-container *ngIf="getMessages(data) as messages"> | ||
<div class="content" [class.pinned]="data.settings.tradeWindowPinned" [class.active]="messages.length"> | ||
<app-header [name]="'PoE Overlay - Trade (' + messages.length + ')'" [closeable]="false" [pinnable]="true" | ||
[frame]="false" [pinned]="data.settings.tradeWindowPinned" [reverse]="data.settings.tradeLayout === 1" | ||
(pinnedChange)="onPinnedChange($event)" (settingsToggle)="onSettingsToggle()"> | ||
<ng-container ngProjectAs="controls"> | ||
<mat-icon (click)="toggle = !toggle" class="indicator" | ||
[class.open]="data.settings.tradeLayout === 1 ? !toggle : toggle">keyboard_arrow_down | ||
</mat-icon> | ||
</ng-container> | ||
</ng-container> | ||
</app-header> | ||
<ng-container *ngIf="toggle"> | ||
<div class="messages" [class.reverse]="data.settings.tradeLayout === 1"> | ||
<div class="message" *ngFor="let message of messages; even as even"> | ||
<app-trade-message [message]="message" [even]="even" [settings]="data.settings" | ||
(dismiss)="onDismiss(message)"> | ||
</app-trade-message> | ||
</div> | ||
</div> | ||
</ng-container> | ||
</app-header> | ||
</div> | ||
</ng-container> | ||
</div> | ||
</ng-container> |
Oops, something went wrong.