-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MOB-601 : Position Card Updates #206
Merged
Merged
Changes from 3 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d750b28
add notional value to position card
mike-dydx 45cea79
remove null checks to display empty state
mike-dydx 3500ff0
cache displayed alerts to not display again
mike-dydx 1018bef
display liq/oracle price
mike-dydx cdf0254
Revert "cache displayed alerts to not display again"
mike-dydx ba3fd6c
use notional instead of value total
mike-dydx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -43,17 +43,16 @@ final class dydxTradeReceiptPresenter: dydxReceiptPresenter { | |
AbacusStateManager.shared.state.selectedSubaccountPositions, | ||
AbacusStateManager.shared.state.marketMap) | ||
.sink { [weak self] input, positions, marketMap in | ||
if let tradeSummary = input.summary, | ||
let marketId = input.marketId, | ||
let market = marketMap[marketId], | ||
let position = positions.first(where: { $0.id == marketId }) { | ||
self?.updateExpectedPrice(tradeSummary: tradeSummary, market: market) | ||
self?.updateLiquidationPrice(position: position, market: market) | ||
self?.updatePositionMargin(position: position) | ||
self?.updatePositionLeverage(position: position) | ||
self?.updateTradingFee(tradeSummary: tradeSummary) | ||
self?.updateTradingRewards(tradeSummary: tradeSummary) | ||
} | ||
let tradeSummary = input.summary | ||
let marketId = input.marketId | ||
let market = marketMap[marketId ?? ""] | ||
let position = positions.first(where: { $0.id == marketId }) | ||
self?.updateExpectedPrice(tradeSummary: tradeSummary, market: market) | ||
self?.updateLiquidationPrice(position: position, market: market) | ||
self?.updatePositionMargin(position: position) | ||
self?.updatePositionLeverage(position: position) | ||
self?.updateTradingFee(tradeSummary: tradeSummary) | ||
self?.updateTradingRewards(tradeSummary: tradeSummary) | ||
Comment on lines
+46
to
+55
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this change ensures the initial (empty) state loads despite null values, we still want to display the receipt line titles |
||
} | ||
.store(in: &subscriptions) | ||
|
||
|
@@ -85,16 +84,16 @@ final class dydxTradeReceiptPresenter: dydxReceiptPresenter { | |
} | ||
} | ||
|
||
private func updateExpectedPrice(tradeSummary: TradeInputSummary?, market: PerpetualMarket) { | ||
let value = dydxFormatter.shared.dollar(number: tradeSummary?.price?.doubleValue, digits: market.configs?.displayTickSizeDecimals?.intValue ?? 0) | ||
private func updateExpectedPrice(tradeSummary: TradeInputSummary?, market: PerpetualMarket?) { | ||
let value = dydxFormatter.shared.dollar(number: tradeSummary?.price?.doubleValue, digits: market?.configs?.displayTickSizeDecimals?.intValue ?? 2) | ||
expectedPriceViewModel.title = DataLocalizer.localize(path: "APP.TRADE.EXPECTED_PRICE") | ||
expectedPriceViewModel.value = value | ||
} | ||
|
||
private func updateLiquidationPrice(position: SubaccountPosition?, market: PerpetualMarket) { | ||
private func updateLiquidationPrice(position: SubaccountPosition?, market: PerpetualMarket?) { | ||
let title = DataLocalizer.localize(path: "APP.TRADE.LIQUIDATION_PRICE_SHORT") | ||
let unit = AmountTextModel.Unit.dollar | ||
let tickSize = market.configs?.displayTickSizeDecimals?.intValue.asNsNumber | ||
let tickSize = market?.configs?.displayTickSizeDecimals?.intValue.asNsNumber ?? 2 | ||
liquidationPriceViewModel.title = title | ||
liquidationPriceViewModel.value = createAmountChangeViewModel(title: title, tradeState: position?.liquidationPrice, tickSize: tickSize, unit: unit) | ||
} | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmmm i'm using
notionalTotal
here, what isvalueTotal
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think we want
notionalTotal
hereThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mmm good catch, i was looking for notionalTotal earlier but it wasn't autopopulating addressed in ba3fd6c