GithubHelp home page GithubHelp logo

taro-router-hook's Introduction

Taro Router Hook

router hook for TaroJS

THIS HOOK IS PRE-PRODUCTION STAGE. USE AT YOUR OWN RISK

CAUTION 1

由于 Taro 的组件初始化和路由机制,首次渲染会返回默认值,请注意做好安全取值方案

routeState 的默认值为 {route: null, name: null, from: null, query: null, depth: 0}

see also issue-1

Install

yarn add taro-router-hook

Usage

import useRouter from 'taro-router-hook'

const Component = () => {
  const [routeState, router] = useRouter()

  return <View>// jsx here</View>
}

routeState

  • route 原生路由名称 /page/{pageName}/index 默认值 null

  • name 简短的 pageName 默认值 null

  • from 上一个页面的 pageName 默认值 null

  • query 传入的路由参数对象 默认值 null

  • depth 当前路由栈深度 默认值 0

router

路由方法集合

  • push(pageName: string, query?: Object): Promise<any>

  • redirect(pageName: string, query?: Object): Promise<any>

  • pop(data?: Object, delta?: number = 1): Promise<any>

  • popToRoot(): Promise<any>

Example

In PageA (src/pages/pageA/index.jsx)

import useRouter from 'taro-router-hook'

const PageA = () => {
  const [routeState, router] = useRouter()

  // 状态对象
  // routeState = {
  //   route: 'pages/pageA/index',
  //   name: 'pageA',
  //   query: {},
  //   from: null,
  //   depth: 1
  // }

  return (
    <View>
      <Button onClick={() => {
        const resp = await router.push('pageA', {hello: 'world'})
        // when PageB call pop, resp will be assigned with {foo: 'bar'}
        console.log(resp.foo) // => 'bar'
      }}>To PageB</Button>
    </View>
  )
}

In PageB (src/pages/pageB/index.jsx)

import useRouter from 'taro-router-hook'

const PageB = () => {
  const [routeState, router] = useRouter()

  // 状态对象
  // routeState = {
  //   route: 'pages/pageB/index',
  //   name: 'pageB',
  //   query: {hello: 'world'},
  //   from: pageA,
  //   depth: 2
  // }

  return (
    <View>
      <Button
        onClick={() => {
          router.pop({ foo: 'bar' })
        }}
      >
        Back
      </Button>
    </View>
  )
}

TODO

  • Unit Test

taro-router-hook's People

Contributors

dependabot[bot] avatar zephyrpersonal avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

taro-router-hook's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.