How to use the decentraland-dapps/dist/modules/location/actions.navigateTo function in decentraland-dapps

To help you get started, we’ve selected a few decentraland-dapps examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github decentraland / builder / src / components / HomePage / HomePage.container.ts View on Github external
  onNavigateToShowcase: () => dispatch(navigateTo(locations.poolSearch()))
})
github decentraland / builder / src / components / Modals / DeployModal / DeployToLand / DeployToLand.container.ts View on Github external
  onNavigateHome: () => dispatch(navigateTo(locations.root())),
  onFetchDeployments: () => dispatch(loadDeploymentsRequest())
github decentraland / builder / src / components / HomePage / HomePage.container.ts View on Github external
onSuccess(project) {
          dispatch(navigateTo(locations.editor(project.id)))
        }
      })
github decentraland / builder / src / components / HomePage / HomePage.container.ts View on Github external
  onPageChange: options => dispatch(navigateTo(locations.root(options))),
  onNavigateToShowcase: () => dispatch(navigateTo(locations.poolSearch()))
github decentraland / agora / webapp / src / components / PollsPage / PollsPage.container.ts View on Github external
onPageChange: (activePage, expiredPage) =>
    dispatch(navigateTo(locations.polls(activePage, expiredPage)))
})
github decentraland / builder / src / components / SceneListPage / SceneListPage.container.ts View on Github external
  onNavegateToHome: () => dispatch(navigateTo(locations.root())),
  onNavegateToViewPool: (poolId: string) => dispatch(navigateTo(locations.poolView(poolId)))
github decentraland / builder / src / components / SceneListPage / SceneListPage.container.ts View on Github external
  onNavegateToViewPool: (poolId: string) => dispatch(navigateTo(locations.poolView(poolId)))
})
github decentraland / builder / src / components / SceneListPage / SceneListPage.container.ts View on Github external
  onPageChange: (filters: PoolsRequestFilters) => dispatch(navigateTo(locations.poolSearch(filters))),
  onNavegateToHome: () => dispatch(navigateTo(locations.root())),