Updated on 2026-08-14
This commit is contained in:
commit
d4b01f6065
27 changed files with 1945 additions and 4 deletions
|
|
@ -10,6 +10,7 @@ import com.tangem.feature.usedesk.api.UsedeskComponent
|
|||
import com.tangem.feature.walletsettings.component.WalletSettingsComponent
|
||||
import com.tangem.features.details.component.DetailsComponent
|
||||
import com.tangem.features.disclaimer.api.components.DisclaimerComponent
|
||||
import com.tangem.features.managetokens.component.ChooseManagedTokensComponent
|
||||
import com.tangem.features.managetokens.component.ManageTokensComponent
|
||||
import com.tangem.features.managetokens.component.ManageTokensSource
|
||||
import com.tangem.features.markets.details.MarketsTokenDetailsComponent
|
||||
|
|
@ -78,6 +79,7 @@ internal class ChildFactory @Inject constructor(
|
|||
private val nftComponentFactory: NFTComponent.Factory,
|
||||
private val nftSendComponentFactory: NFTSendComponent.Factory,
|
||||
private val usedeskComponentFactory: UsedeskComponent.Factory,
|
||||
private val chooseManagedTokensComponentFactory: ChooseManagedTokensComponent.Factory,
|
||||
private val testerRouter: TesterRouter,
|
||||
private val walletConnectFeatureToggles: WalletConnectFeatureToggles,
|
||||
) {
|
||||
|
|
@ -407,6 +409,17 @@ internal class ChildFactory @Inject constructor(
|
|||
componentFactory = usedeskComponentFactory,
|
||||
)
|
||||
}
|
||||
is AppRoute.ChooseManagedTokens -> {
|
||||
createComponentChild(
|
||||
context = context,
|
||||
params = ChooseManagedTokensComponent.Params(
|
||||
userWalletId = route.userWalletId,
|
||||
initialCurrency = route.initialCurrency,
|
||||
source = ChooseManagedTokensComponent.Source.valueOf(route.source.name),
|
||||
),
|
||||
componentFactory = chooseManagedTokensComponentFactory,
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue