react怎么实现侧边栏联动头部导航栏效果

其他教程   发布日期:2023年08月22日   浏览次数:689

本文小编为大家详细介绍“react怎么实现侧边栏联动头部导航栏效果”,内容详细,步骤清晰,细节处理妥当,希望这篇“react怎么实现侧边栏联动头部导航栏效果”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

    项目中使用react+antd design+redux+react-reouter-dom

    实现思路

    编写路由表=》循环遍历路由表=》渲染侧边栏=》单击侧边栏获取相应的标签数据=》存入redux=》遍历循环redux数据渲染头部导航栏

    路由表

    1. const RouterTree = [
    2. {
    3. key: 'num_one',
    4. title: {
    5. icon: '',
    6. text: 'text'
    7. },
    8. children: [
    9. {
    10. key: '1',
    11. text: 'options1',
    12. path: '/option1',
    13. component: '',
    14. isOutSide: true,
    15. }
    16. ]
    17. },
    18. {
    19. key: 'num_two',
    20. title: {
    21. icon: '',
    22. text: 'text'
    23. },
    24. children: [
    25. {
    26. key: '2',
    27. text: 'text',
    28. path: '/option1',
    29. component: '',
    30. isOutSide: false
    31. }
    32. ]
    33. },
    34. {
    35. key: 'num_three',
    36. title: {
    37. icon: '',
    38. text: 'text'
    39. },
    40. children: [
    41. {
    42. key: '3',
    43. text: 'text',
    44. path: '/option1',
    45. component: '',
    46. isOutSide: false
    47. }
    48. ]
    49. },
    50. ]
    51. export default RouterTree

    侧边栏渲染

    引入路由表,循环遍历渲染侧边栏

    1. import React, { Component } from 'react'
    2. import { Menu } from 'antd';
    3. import { NavLink as Link, withRouter } from 'react-router-dom'
    4. import RouterTree from '@/modules/route.js'
    5. render() {
    6. const { activityKey } = this.state || {}
    7. return (
    8. <div>
    9. <Menu
    10. onClick={this.handleClick}
    11. defaultSelectedKeys={['1']}
    12. defaultOpenKeys={['sub1']}
    13. selectedKeys={activityKey}
    14. mode="inline"
    15. inlineCollapsed={isToggle}
    16. >
    17. {RouterTree.map((item, index) => {
    18. return (
    19. <SubMenu
    20. key={item.key}
    21. title={item.title.text}
    22. index={index}
    23. >
    24. {item.children && item.children.map((menuItem, menuIndex) => {
    25. return (<Menu.Item
    26. key={menuItem.key}
    27. index={menuIndex}
    28. >
    29. {menuItem.isOutSide ? <a href="https://www.19jp.com">

    由于单独使用redux不便,项目中引用react-redux,redux-thunk。

    这里将侧边栏拆分为两个文件,一个是容器组件,一个为UI组件(以上的为UI组件)

    容器组件(侧边栏)

    容器组件为导出的组件,在容器组件中引入UI组件slide

    1. import { connect } from 'react-redux'
    2. import { business } from '@/tools/index.js'
    3. import Slide from './slide'
    4. const { processedArr } = business
    5. const mapStoreToProps = (state) => {
    6. const { dynamicJump,activityKey} = state || {}
    7. let responseRoute = processedArr(dynamicJump)
    8. return {
    9. dynamicJump: [...responseRoute],
    10. activityKey:activityKey
    11. }
    12. }
    13. const mapDispatchToProps = (dispatch) => {
    14. return {
    15. updateRouter(item) {
    16. dispatch((dispatch) => {
    17. dispatch({
    18. type: 'UPDATED_ROUTING', item: { ...item }
    19. })
    20. })
    21. },
    22. activityKeys(key){
    23. dispatch((dispatch)=>{
    24. dispatch({
    25. type:'ACTIVITY_KEY',key:key
    26. })
    27. })
    28. }
    29. }
    30. }
    31. export default connect(mapStoreToProps, mapDispatchToProps)(Slide)

    store

    在src下新建一个store文件

    1. import { createStore, applyMiddleware } from 'redux'
    2. import thunk from 'redux-thunk';
    3. import { routerMiddleware } from 'react-router-redux'
    4. let createHistory = require('history').createBrowserHistory
    5. let history = createHistory()
    6. let routerWare = routerMiddleware(history)
    7. const dynamicJump = {
    8. dynamicJump: '这里设置默认值'(一般存放在session中),
    9. activityKey: '这里设置默认值',
    10. }
    11. const reducers = function (state = dynamicJump, action) {
    12. switch (action.type) {
    13. case 'UPDATED_ROUTING':
    14. state.dynamicJump =action.item
    15. break;
    16. case 'ACTIVITY_KEY':
    17. if (action.key !== undefined) {
    18. state.activityKey = action.key
    19. }
    20. break;
    21. default:
    22. break;
    23. }
    24. return { ...state }
    25. }
    26. const store = createStore(reducers, applyMiddleware(thunk, routerWare))
    27. // 订阅事件
    28. store.subscribe(() => {
    29. let state = store.getState();
    30. sessionStorage.setItem('dynamicJump',JSON.stringify(state.dynamicJump))
    31. sessionStorage.setItem('activityKey',JSON.stringify(state.activityKey))
    32. })
    33. export default store

    在根目录下将其注入进去(注意文件的引入位置)

    1. import {Provider} from 'react-redux'
    2. import store from './store/index.js'
    3. ReactDOM.render(
    4. <Provider store={store}><App /></Provider>,
    5. document.getElementById('root')
    6. );

    头部导航栏

    容器组件

    1. import { connect } from 'react-redux'
    2. import { push } from 'react-router-redux'
    3. import { business } from '@/tools/index.js'
    4. import Header from './head.jsx'
    5. const { processedArr } = business
    6. const mapStoreToProps = (state) => {
    7. const { dynamicJump, activityKey } = state
    8. let newRouteArr = processedArr(dynamicJump)
    9. return {
    10. dynamicJump: [...newRouteArr],
    11. activityKey: activityKey
    12. }
    13. }
    14. const mapDispatchToProps = (dispatch) => {
    15. return {
    16. removeKey(itemKey) {
    17. dispatch((dispatch, getStore) => {
    18. const { dynamicJump } = getStore() || {}
    19. let removeArr = processedArr(dynamicJump)
    20. const indexes = removeArr.findIndex((item) => item.key === itemKey)
    21. // 点击头部导航条的删除(即删除保存在redux的数组元素即可)
    22. if (removeArr.length > 1) {
    23. removeArr.splice(indexes, 1)
    24. }
    25. // 删除之后跳转到删除元素的前一个元素的路由地址
    26. let path = removeArr[indexes - 1] ? removeArr[indexes - 1].path : '/option1'
    27. let keys = removeArr[indexes - 1] ? removeArr[indexes - 1].key : 0
    28. if(keys===0){
    29. keys=removeArr[0].key
    30. }
    31. dispatch({
    32. type: 'UPDATED_ROUTING', item: { ...removeArr },
    33. })
    34. dispatch({
    35. type: 'ACTIVITY_KEY', key: keys
    36. })
    37. // 这里进行跳转
    38. dispatch(push(path))
    39. })
    40. },
    41. changeActiveKey(key) {
    42. dispatch((dispatch) => {
    43. dispatch({
    44. type: 'ACTIVITY_KEY', key: key
    45. })
    46. })
    47. }
    48. }
    49. }
    50. export default connect(mapStoreToProps, mapDispatchToProps)(Header)

    这里存在着:如果删除头部组件的其中一个导航,那么需要跳转到该导航(删除的)的前一个路由地址,而这个操作在UI组件中是不方便的,这里我采取的方法是引入“history”模块(详细代码请移步到store.js),然后在容器组件中使用dispatch(push(path))跳转,也可以使用更为简单的方法,直接在容器组件中引入react-router的withRouter,包裹在最外层即:export default withRouter(connect(mapStoreToProps, mapDispatchToProps)(Header))

    UI组件

    1. render(){
    2. const { dynamicJump } = this.props || {}
    3. const { activeKey } = this.state || {}
    4. <Tabs
    5. hideAdd
    6. onChange={this.onChange}
    7. activeKey={activeKey}
    8. type="line"
    9. onEdit={this.onEdit}
    10. className='tabs'
    11. >
    12. { dynamicJump.map((item) => (
    13. <TabPane tab={<Link to={item.path}>{item.text}</Link>} key={item.key} />
    14. ))}
    15. </Tabs>
    16. }

    对于key值,可以使用react新增的钩子函数:getDerivedStateFromProps进行判断是否更行

    1. static getDerivedStateFromProps(nextProps, preState) {
    2. const { activityKey, dynamicJump } = nextProps || {}
    3. const { activeKey } = preState || {}
    4. if (activityKey !== activeKey) {
    5. return {
    6. activeKey: activityKey
    7. }
    8. }
    9. return { allRoute: dynamicJump }
    10. }
    11. remove = targetKey => {
    12. this.removeKey(targetKey)
    13. }
    14. removeKey(key) {
    15. this.props.removeKey(key)
    16. }

    以上就是react怎么实现侧边栏联动头部导航栏效果的详细内容,更多关于react怎么实现侧边栏联动头部导航栏效果的资料请关注九品源码其它相关文章!