1.0.6 • Published 6 years ago

react-table-list-beta v1.0.6

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

List 列表元件開發

npm

  npm i react-router-dom react-table-list-beta

git

  https://github.com/1987showsun/list-table-component-by-React-dev

Demo

Ex columns json

typeSStyle : list

  [
    {
      "title"     : "鱼种",            //column名稱
      "columnKey" : "name",           //keyname
      "total"     : "",               //該欄為統計,如:輸入文字就直接顯示文字,可空直就將該欄位相加得到總合
      "link"      : true,             //開啟該欄位連結
      "path"      : "/xxxx/zzzz/aaaa",//欄位網址
      "sort"      : true              //排序開關 //status 0:一般排序 1:遞減 2:遞增
    },
    {...},
    {
      "title"     : "鱼种",            //column名稱
      "columnKey" : "fishMoney",      //keyname
      "total"     : "",               //該欄為統計,如:輸入文字就直接顯示文字,可空直就將該欄位相加得到總合
      "link"      : true,             //開啟該欄位連結
      "path"      : "/xxxx/zzzz/aaaa" //欄位網址
    }
  ]

typeSStyle : block (固定)

  [
    {
      "title"     : "Cover",          //column名稱
      "columnKey" : "cover",          //keyname
      "link"      : true,             //開啟該欄位連結
      "path"      : "/info/teams"     //欄位網址
    },
    {
      "title"     : "Content",         //column名稱
      "columnKey" : "",                //有 children keyname 該欄位
      "children"  : ["name","name_en"],//children keyname 非固定,自取名需對應 data keyname
      "link"      : true,              //開啟該欄位連結
      "path"      : "/info/teams"      //欄位網址
    }
  ]

Ex Data json

typeSStyle : list

  [
    {
      "id"             : "1",
      "name"           : "名稱1",
      "fishMoney"      : 1000
    },
    {...},
    {
      "id"             : "1",
      "name"           : "名稱1",
      "fishMoney"      : 1000
    }
  ]

typeSStyle : block (固定)

  [
    {
      "id"             : "1",
      "cover"          : "",
      "name"           : "名稱1",
      "name_en"        : "abcd"
    },
    {...},
    {
      "id"             : "1",
      "cover"          : "",
      "name"           : "名稱1",
      "name_en"        : "abcd"
    }
  ]

Ex instructions:

  import {BrowserRouter} from 'react-router-dom';
  import List            from 'react-table-list-beta';

  <BrowserRouter>
    ...
    <List 
        match             = { this.props.match }
        total             = { total }
        limit             = { limit }
        columns           = { thead['test'] }
        data              = { data }
        currentPage       = { this.props.match['params']['current'] }
        paginationStyle   = "model1"
        paginationPath    = { `/asd` }
        paginationSearch  = { `?testSearch=zzzz` }
        returnCurrentPage = { this.returnCurrentPage.bind(this) }
        returnSort        = { this.returnSortFreeFunctionName.bind(this) }
        fixedWidth        = { this.state.fixedWidth }
        fixed             = { ["thead","tfooter"] }
    />
    ...
  </BrowserRouter>

Api

apimethoddescription
totaltotal={ totalNumber}ajax response data length
limitlimit={ limitNumber}show data length
columnscolumns={ columnsObject }columns json
datadata={ response data }response data json 需要與 columnsKey 取名一樣
currentPagecurrentPage={ current Page Number }current Page number
paginationStylepaginationStyle = {"model1"or"model2"}pagination style
paginationPathpaginationPath = { path link url string }頁碼連結
paginationSearchpaginationSearch = { loaction.search }ex: ?aaaa=111111&bbbb=222222.....
returnCurrentPagereturnCurrentPage={ this.returnCurrentPage.bind(this) }returnCurrentPage Free name
fixedfixed={"thead","tfooter"}可上下固定或其中一個固定 typeof:object status: 1.thead2.tfooter
showLengthshowLength={showLength number}columns 一次可顯示比數
typeStyletypeStyle= "block" / "list"Display method Block or Column
addClassNameaddClassName= "XXXX"Additional class name
returnSortreturnSort={this.returnSortFreeFunctionName.bind(this)}returnSortFreeFunctionName Name by yourself

Demo Image

typeStyle : list

alt text