1.0.44 • Published 5 years ago

aotoo-react-router v1.0.44

Weekly downloads
7
License
MIT
Repository
github
Last release
5 years ago

aotoo-react-router

基于reactaotoo定制的前端路由插件,适用于前端SPA项目,可与MPA项目混合使用,默认没有带插件样式,后续会补充说明,到时再跟进

Install

# install
yarn add aotoo-react-router

Dependence npm package

  1. aotoo
  2. aotoo-web-widgets

USAGE

Depends on aotoo this library, Aotoo is a global variable

import aotoo from 'aotoo'
require('aotoo-web-widgets')
require('aotoo-react-router')


// page
const WrapElement = Aotoo.wrap(
  <div>这个真好吃</div>, {
    rendered: function(dom){ },
    leave: function(){ }
  }
)


// page
const forLeave = function(rter){
  console.log(rter);
  return {
    main: function(){
      return <div>来了, forLeave</div>
    },
    enter: function(){
      return this.main()
    },
    leave: function(){
      console.log('======= 3333');
    }
  }
}


// 路由配置信息
// 支持树形菜单
// title: 菜单选项
// content: 菜单对应内容,点击菜单时响应的内容
// idf: 路由配置关键key,作为节点必须配置,作为叶子可以不配置
// parent: idf的下级菜单
// attr: 参考jq的attr,会在菜单dom节点上填充 data-* 属性

const routerData = [
  {title: '我是一级', idf: 'aa1'},
  {title: '我是二级', idf: 'aa2', parent: 'aa1'},
  {title: '我是三级', idf: 'aa3', parent: 'aa2'},
  {title: '我是四级A', content: '什么3', path: 'a4', attr:{path: 'a4'}, parent: 'aa3'},
  {title: '我是四级B', content: '什sssssss么4', path: 'a5', attr:{path: 'a5'}, parent: 'aa3'},
  {title: '我是一级B', content: forLeave, path: 'a2', attr:{path: 'a2'}},
  {title: '我是一级C', content: <WrapElement />, path: 'a3', attr:{path: 'a3'}, itemClass: 'yyy'},
]

const router = Aotoo.router({
  props: {
    animate: 'fade',
    data: routerData,
    itemClass: 'nihao',
    routerClass: 'router-basic',
    itemMethod: function(dom){}
  }
})
router.start('a4')
router.rendered = function(dom){}  //必须在render之前配置,JSX mounted后运行
router.render('test')

API

getWhereInfo(path)

获取该路径的配置数据

goto(path, data)

跳转到指定页,并带一个JSON参数

back(path, data)

  1. 参数为可选
  2. 不带参数时,回退上一步,与浏览器动作一致
  3. 带参数与goto类似,但动画效果(left, right)与goto相反
  4. 支持浏览器默认回退动作
1.0.44

5 years ago

1.0.43

5 years ago

1.0.42

5 years ago

1.0.41

5 years ago

1.0.40

5 years ago

1.0.39

5 years ago

1.0.38

5 years ago

1.0.37

5 years ago

1.0.36

5 years ago

1.0.35

5 years ago

1.0.34

6 years ago

1.0.33

6 years ago

1.0.32

6 years ago

1.0.31

6 years ago

1.0.30

6 years ago

1.0.29

6 years ago

1.0.28

6 years ago

1.0.27

6 years ago

1.0.26

6 years ago

1.0.25

6 years ago

1.0.24

6 years ago

1.0.23

6 years ago

1.0.22

6 years ago

1.0.21

6 years ago

1.0.20

6 years ago

1.0.19

6 years ago

1.0.18

6 years ago

1.0.17

6 years ago

1.0.16

6 years ago

1.0.15

6 years ago

1.0.14

6 years ago

1.0.13-3

6 years ago

1.0.13-2

6 years ago

1.0.13-1

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago