React-navigation導(dǎo)航系統(tǒng)(5)-Router


title: 翻譯|React-navigation導(dǎo)航系統(tǒng)(5)-Router
date: 2017-03-30 09:57:00
categories: 翻譯
tags: React-Native


Routers

Router定義一個(gè)組件的navigation state,允許開(kāi)發(fā)者定義路徑和可以操作的actions.

內(nèi)建的Routers

  • StackRouter
  • TabRouter

使用Routers

為了手動(dòng)定制一個(gè)navigator,在組件里可以放一個(gè)靜態(tài)的router.(使用內(nèi)建的組件快速的定制一個(gè)navigator,使用Navigator Factory更容易實(shí)現(xiàn)).

 class MyNavigator extends React.Component {
    static router = StackRouter(routes, config);
    ...
}

現(xiàn)在你可以把這個(gè)組件作為另一個(gè)navigator的screen對(duì)待,MyNavigator的導(dǎo)航邏輯在StackRouter中定義.

定制化Router

看看[定制Router API 部分](https://reactnavigation.org/docs/routers/api)學(xué)習(xí)StackRouterTabRouter的API.
只要你愿意也可以重寫(xiě)router的函數(shù).

定制Navigation的Actions

為了重寫(xiě)navigation的行為,你可以在getStateForAction中重寫(xiě)navigation state的邏輯,從而手動(dòng)處理routesindex.

 const MyApp = StackNavigator({
  Home: { screen: HomeScreen },
  Profile: { screen: ProfileScreen },
}, {
  initialRouteName: 'Home',
})
MyApp.router = {
  ...MyApp.router,
  getStateForAction(action, state) {
    if (state && action.type === 'PushTwoProfiles') {
      const routes = [
        ...state.routes,
        {key: 'A', routeName: 'Profile', params: { name: action.name1 }},
        {key: 'B', routeName: 'Profile', params: { name: action.name2 }},
      ];
      return {
        ...state,
        routes,
        index: routes.length - 1,
      };
    }
    return MyApp.router.getStateForAction(action, state);
  },
};

阻止某些Navigation的Actions

有時(shí)候根據(jù)你的route,需要阻止某些navigation的活動(dòng)

 const MyStackRouter = StackRouter({
  Home: { screen: HomeScreen },
  Profile: { screen: ProfileScreen },
}, {
  initialRouteName: 'Home',
})
const MyAppRouter = {
  ...MyStackRouter,
  getStateForAction(action, state) {
    if (
      state &&
      action.type === NavigationActions.BACK &&
      state.routes[state.index].params.isEditing
    ) {
      // Returning null from getStateForAction means that the action
      // has been handled/blocked, but there is not a new state
      return null;
    }
    return MyStackRouter.getStateForAction(action, state);
  },
};

操作定制URIs

或許你的app有一個(gè)獨(dú)特的URI,內(nèi)建的routers處理不了.你可以通過(guò)getActionForPathAndParams來(lái)擴(kuò)展router.

 import { NavigationActions } from 'react-navigation'

const MyApp = StackNavigator({
  Home: { screen: HomeScreen },
  Profile: { screen: ProfileScreen },
}, {
  initialRouteName: 'Home',
})
const previousGetActionForPathAndParams = MyApp.router.getActionForPathAndParams
Object.assign(MyApp.router, {
  getActionForPathAndParams(path, params) {
    if (
      path === 'my/custom/path' &&
      params.magic === 'yes'
    ) {
      // returns a profile navigate action for /my/custom/path?magic=yes
      return NavigationActions.navigate({
        routeName: 'Profile',
        action: NavigationActions.navigate({
          // This child action will get passed to the child router
          // ProfileScreen.router.getStateForAction to get the child
          // navigation state.
          routeName: 'Friends',
        }),
      });
    }
    return previousGetActionForPathAndParams(path, params);
  },
};

定制Router API

你可以童工下面的函數(shù)來(lái)構(gòu)建自己的router對(duì)象,

 const MyRouter = {
  getStateForAction: (action, state) => ({}),
  getActionForPathAndParams: (path, params) => null,
  getPathAndParamsForState: (state) => null,
  getComponentForState: (state) => MyScreen,
  getComponentForRouteName: (routeName) => MyScreen,
};

// Now, you can make a navigator by putting the router on it:
class MyNavigator extends React.Component {
  static router = MyRouter;
  render() {
    ...
  }
}
getStateForAction(action,state)

根據(jù)給定的action來(lái)定義返回的navigation sate.當(dāng)一個(gè)action通過(guò)props.navigation.dispatch()傳遞,或者任何其他的助手函數(shù)被調(diào)用,例如navigation.navitate()的時(shí)候,這個(gè)函數(shù)將會(huì)運(yùn)行.

通常這個(gè)函數(shù)將會(huì)以下面的形式返回navitaion state.

 {
  index: 1, // identifies which route in the routes array is active
  routes: [
    {
      // Each route needs a name to identify the type.
      routeName: 'MyRouteName',

      // A unique identifier for this route in the routes array:
      key: 'myroute-123',
      // (used to specify the re-ordering of routes)

      // Routes can have any data, as long as key and routeName are correct
      ...randomRouteData,
    },
    ...moreRoutes,
  ]
}
  

如果router已經(jīng)在外部處理了acion,或者想不改變?nèi)魏蔚膎avigation state就消化它,這個(gè)函數(shù)就返回null.

getComponentForRouterName(routeName)

為給定的route name返回子組件或者navigator.
像這樣聲明一個(gè)routergetStateForAction輸出的state.

 {
  index: 1,
  routes: [
    { key: 'A', routeName: 'Foo' },
    { key: 'B', routeName: 'Bar' },
  ],
}

基于state中的額routeName,router將會(huì)調(diào)用router.getComponentForRouteName('Foo')router.getComponentForRouteName('Bar')來(lái)返回對(duì)應(yīng)的有效組件.

 getComponentForState(state)

從深度嵌套navigation state返回激活的組件

 getActionForPathAndParams

返回一個(gè)可選配置的navigation action,在用戶(hù)導(dǎo)航到這個(gè)路徑并且有可選的查詢(xún)參數(shù)的時(shí)候使用這個(gè)action.

 getPathAndParamsForState

用戶(hù)在app中返回同一個(gè)URL鏈接的點(diǎn)時(shí),這個(gè)函數(shù)返回路徑和參數(shù).
從這個(gè)函數(shù)返回的路徑和參數(shù)應(yīng)該是從一個(gè)action獲得的,這個(gè)action是重傳進(jìn)入router的getActionForPathAndParams的.這個(gè)action一旦通過(guò)getStateForAction傳遞,會(huì)給你返回形似的state.

 getScreenConfig

這個(gè)函數(shù)從一個(gè)route獲取navigation的可選項(xiàng).必須要提供screen的當(dāng)前navigation prop和被返回的選項(xiàng)的名字.

  • navigation-這是screen將會(huì)使用的navigation prop,對(duì)應(yīng)在screen的route和state.Dispatch將會(huì)根據(jù)screen的上下文來(lái)觸發(fā)actions.
  • optionName-被獲取的選項(xiàng)的名字,例如’title’

在實(shí)例的視圖內(nèi),或許你需要遠(yuǎn)程獲取配置的標(biāo)題

 // First, prepare a navigation prop for your child, or re-use one if already available.
const childNavigation = addNavigationHelpers({
  // In this case we use navigation.state.index because we want the title for the active route.
  state: navigation.state.routes[navigation.state.index],
  dispatch: navigation.dispatch,
})
const screenTitle = this.props.router.getScreenConfig(childNavigation, 'title');

StackRouter

管理navigation堆棧的邏輯,包括入棧,出棧,操作路徑解析創(chuàng)建深層次的堆棧.

讓我們看看簡(jiǎn)單的stack router

 const MyApp = StackRouter({
  Home: { screen: HomeScreen },
  Profile: { screen: ProfileScreen },
}, {
  initialRouteName: 'Home',
})

RouteConfig

最簡(jiǎn)單的stack router期待的參數(shù)是一個(gè)config對(duì)象,這里是示例配置

 const MyApp = StackRouter({ // This is the RouteConfig:
  Home: {
    screen: HomeScreen,
    path: '',
  },
  Profile: {
    screen: ProfileScreen,
    path: 'profile/:name',
  },
  Settings {
    // This can be handy to lazily require a screen:
    getScreen: () => require('Settings').default,
    // Note: Child navigators cannot be configured using getScreen because
    // the router will not be accessible. Navigators must be configured
    // using `screen: MyNavigator`
    path: 'settings',
  },
});

每一個(gè)在config中的條目有如下內(nèi)容

  • path-設(shè)定條目的路徑和參數(shù)可以在stack中被解析
  • screen-設(shè)定screen組件或者子navigator
  • getScreen-為screen組件設(shè)定惰性加載的設(shè)定

StackConfig

配置的選項(xiàng)也被傳遞進(jìn)入stack router.

  • initalRouteName-stack首次加載的默認(rèn)路由的routeName
  • initialRouteParams-初始化route的默認(rèn)參數(shù)
  • paths-提供routeName到path配置的映射,將會(huì)重寫(xiě)routeConfigs里的path設(shè)置

Supported Actions

stack router可以對(duì)下面的導(dǎo)航actions作為響應(yīng).如果有可能,router將會(huì)代理到子代router的action操作.

  • Navigate-如果routeName和router的routerConfigs其中之一匹配,將會(huì)push一個(gè)新的route到堆棧.
  • Back-返回(props)
  • Reset-清除堆棧,提供一個(gè)新的actions創(chuàng)建新的navigation state
  • SetParams-screen dispatch一個(gè)action去改變當(dāng)前route的參數(shù)

TabRouter

管理應(yīng)用中的一套tabs,處理tabs之間的跳轉(zhuǎn),處理back鍵的操作返回到初始化的tab.
看看簡(jiǎn)單的tabs router

 const MyApp = TabRouter({
  Home: { screen: HomeScreen },
  Settings: { screen: SettingsScreen },
}, {
  initialRouteName: 'Home',
})

RouteConfig

tabs router有為每一個(gè)tab的routeConfig

 const MyApp = TabRouter({ // This is the RouteConfig:
  Home: {
    screen: HomeScreen,
    path: 'main',
  },
  Settings: {
    // This can be handy to lazily require a tab:
    getScreen: () => require('./SettingsScreen').default,
    // Note: Child navigators cannot be configured using getScreen because
    // the router will not be accessible. Navigators must be configured
    // using `screen: MyNavigator`
    path: 'settings',
  },
});

config中的每一個(gè)config可能有

  • config-每一個(gè)tab的path
  • screen-定制screen組件或者子代navigator
  • getScreen-為一個(gè)screen組件設(shè)定惰性加載的設(shè)置(navigator沒(méi)有這樣的配置)

Tab Router Config

被傳遞到router的可配置選項(xiàng)

  • initialRouteName-首次加載的tab的routeName
  • order-tabs的順序
  • path-提供routeName到path config的映射,映射重寫(xiě)routeConfig中的path設(shè)定
  • backBehavior-點(diǎn)擊back按鈕應(yīng)該返回到初始化的tab嗎?如果是的話(huà),設(shè)置initialRoute,否則就是none,默認(rèn)到initialRoute的行為.

Support Actions

tabs router會(huì)對(duì)下面的navigation actions做出響應(yīng).如果有可能,router將代理到子代router的action.

  • Navigate-如果和tab的routeName匹配,就會(huì)跳轉(zhuǎn)到對(duì)應(yīng)的tab
  • Back-如果不是第一個(gè)默認(rèn)的tab,就跳轉(zhuǎn)到第一個(gè)tab
  • SetParams-screen dispatch一個(gè)Action來(lái)改變當(dāng)前route的state
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末贴谎,一起剝皮案震驚了整個(gè)濱河市汞扎,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌擅这,老刑警劉巖澈魄,帶你破解...
    沈念sama閱讀 216,372評(píng)論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異仲翎,居然都是意外死亡痹扇,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,368評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門(mén)溯香,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)鲫构,“玉大人,你說(shuō)我怎么就攤上這事玫坛〗岜浚” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 162,415評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)炕吸。 經(jīng)常有香客問(wèn)我伐憾,道長(zhǎng),這世上最難降的妖魔是什么赫模? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,157評(píng)論 1 292
  • 正文 為了忘掉前任树肃,我火速辦了婚禮,結(jié)果婚禮上瀑罗,老公的妹妹穿的比我還像新娘胸嘴。我一直安慰自己,他們只是感情好廓脆,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,171評(píng)論 6 388
  • 文/花漫 我一把揭開(kāi)白布筛谚。 她就那樣靜靜地躺著,像睡著了一般停忿。 火紅的嫁衣襯著肌膚如雪驾讲。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 51,125評(píng)論 1 297
  • 那天席赂,我揣著相機(jī)與錄音吮铭,去河邊找鬼。 笑死颅停,一個(gè)胖子當(dāng)著我的面吹牛谓晌,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播癞揉,決...
    沈念sama閱讀 40,028評(píng)論 3 417
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼纸肉,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了喊熟?” 一聲冷哼從身側(cè)響起柏肪,我...
    開(kāi)封第一講書(shū)人閱讀 38,887評(píng)論 0 274
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎芥牌,沒(méi)想到半個(gè)月后烦味,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,310評(píng)論 1 310
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡壁拉,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,533評(píng)論 2 332
  • 正文 我和宋清朗相戀三年谬俄,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片弃理。...
    茶點(diǎn)故事閱讀 39,690評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡溃论,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出案铺,到底是詐尸還是另有隱情蔬芥,我是刑警寧澤梆靖,帶...
    沈念sama閱讀 35,411評(píng)論 5 343
  • 正文 年R本政府宣布,位于F島的核電站笔诵,受9級(jí)特大地震影響返吻,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜乎婿,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,004評(píng)論 3 325
  • 文/蒙蒙 一测僵、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧谢翎,春花似錦捍靠、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,659評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至褒侧,卻和暖如春闷供,著一層夾襖步出監(jiān)牢的瞬間疑俭,已是汗流浹背。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,812評(píng)論 1 268
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留姻乓,地道東北人蹋岩。 一個(gè)月前我還...
    沈念sama閱讀 47,693評(píng)論 2 368
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像乎折,于是被迫代替她去往敵國(guó)和親吓蘑。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,577評(píng)論 2 353

推薦閱讀更多精彩內(nèi)容