table.js 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974
  1. module.exports =
  2. /******/ (function(modules) { // webpackBootstrap
  3. /******/ // The module cache
  4. /******/ var installedModules = {};
  5. /******/
  6. /******/ // The require function
  7. /******/ function __webpack_require__(moduleId) {
  8. /******/
  9. /******/ // Check if module is in cache
  10. /******/ if(installedModules[moduleId]) {
  11. /******/ return installedModules[moduleId].exports;
  12. /******/ }
  13. /******/ // Create a new module (and put it into the cache)
  14. /******/ var module = installedModules[moduleId] = {
  15. /******/ i: moduleId,
  16. /******/ l: false,
  17. /******/ exports: {}
  18. /******/ };
  19. /******/
  20. /******/ // Execute the module function
  21. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  22. /******/
  23. /******/ // Flag the module as loaded
  24. /******/ module.l = true;
  25. /******/
  26. /******/ // Return the exports of the module
  27. /******/ return module.exports;
  28. /******/ }
  29. /******/
  30. /******/
  31. /******/ // expose the modules object (__webpack_modules__)
  32. /******/ __webpack_require__.m = modules;
  33. /******/
  34. /******/ // expose the module cache
  35. /******/ __webpack_require__.c = installedModules;
  36. /******/
  37. /******/ // define getter function for harmony exports
  38. /******/ __webpack_require__.d = function(exports, name, getter) {
  39. /******/ if(!__webpack_require__.o(exports, name)) {
  40. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  41. /******/ }
  42. /******/ };
  43. /******/
  44. /******/ // define __esModule on exports
  45. /******/ __webpack_require__.r = function(exports) {
  46. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  47. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  48. /******/ }
  49. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  50. /******/ };
  51. /******/
  52. /******/ // create a fake namespace object
  53. /******/ // mode & 1: value is a module id, require it
  54. /******/ // mode & 2: merge all properties of value into the ns
  55. /******/ // mode & 4: return value when already ns object
  56. /******/ // mode & 8|1: behave like require
  57. /******/ __webpack_require__.t = function(value, mode) {
  58. /******/ if(mode & 1) value = __webpack_require__(value);
  59. /******/ if(mode & 8) return value;
  60. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  61. /******/ var ns = Object.create(null);
  62. /******/ __webpack_require__.r(ns);
  63. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  64. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  65. /******/ return ns;
  66. /******/ };
  67. /******/
  68. /******/ // getDefaultExport function for compatibility with non-harmony modules
  69. /******/ __webpack_require__.n = function(module) {
  70. /******/ var getter = module && module.__esModule ?
  71. /******/ function getDefault() { return module['default']; } :
  72. /******/ function getModuleExports() { return module; };
  73. /******/ __webpack_require__.d(getter, 'a', getter);
  74. /******/ return getter;
  75. /******/ };
  76. /******/
  77. /******/ // Object.prototype.hasOwnProperty.call
  78. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  79. /******/
  80. /******/ // __webpack_public_path__
  81. /******/ __webpack_require__.p = "/dist/";
  82. /******/
  83. /******/
  84. /******/ // Load entry module and return exports
  85. /******/ return __webpack_require__(__webpack_require__.s = 57);
  86. /******/ })
  87. /************************************************************************/
  88. /******/ ([
  89. /* 0 */
  90. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  91. "use strict";
  92. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
  93. /* globals __VUE_SSR_CONTEXT__ */
  94. // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
  95. // This module is a runtime utility for cleaner component module output and will
  96. // be included in the final webpack user bundle.
  97. function normalizeComponent (
  98. scriptExports,
  99. render,
  100. staticRenderFns,
  101. functionalTemplate,
  102. injectStyles,
  103. scopeId,
  104. moduleIdentifier, /* server only */
  105. shadowMode /* vue-cli only */
  106. ) {
  107. // Vue.extend constructor export interop
  108. var options = typeof scriptExports === 'function'
  109. ? scriptExports.options
  110. : scriptExports
  111. // render functions
  112. if (render) {
  113. options.render = render
  114. options.staticRenderFns = staticRenderFns
  115. options._compiled = true
  116. }
  117. // functional template
  118. if (functionalTemplate) {
  119. options.functional = true
  120. }
  121. // scopedId
  122. if (scopeId) {
  123. options._scopeId = 'data-v-' + scopeId
  124. }
  125. var hook
  126. if (moduleIdentifier) { // server build
  127. hook = function (context) {
  128. // 2.3 injection
  129. context =
  130. context || // cached call
  131. (this.$vnode && this.$vnode.ssrContext) || // stateful
  132. (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
  133. // 2.2 with runInNewContext: true
  134. if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
  135. context = __VUE_SSR_CONTEXT__
  136. }
  137. // inject component styles
  138. if (injectStyles) {
  139. injectStyles.call(this, context)
  140. }
  141. // register component module identifier for async chunk inferrence
  142. if (context && context._registeredComponents) {
  143. context._registeredComponents.add(moduleIdentifier)
  144. }
  145. }
  146. // used by ssr in case component is cached and beforeCreate
  147. // never gets called
  148. options._ssrRegister = hook
  149. } else if (injectStyles) {
  150. hook = shadowMode
  151. ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
  152. : injectStyles
  153. }
  154. if (hook) {
  155. if (options.functional) {
  156. // for template-only hot-reload because in that case the render fn doesn't
  157. // go through the normalizer
  158. options._injectStyles = hook
  159. // register for functioal component in vue file
  160. var originalRender = options.render
  161. options.render = function renderWithStyleInjection (h, context) {
  162. hook.call(context)
  163. return originalRender(h, context)
  164. }
  165. } else {
  166. // inject component registration as beforeCreate hook
  167. var existing = options.beforeCreate
  168. options.beforeCreate = existing
  169. ? [].concat(existing, hook)
  170. : [hook]
  171. }
  172. }
  173. return {
  174. exports: scriptExports,
  175. options: options
  176. }
  177. }
  178. /***/ }),
  179. /* 1 */,
  180. /* 2 */
  181. /***/ (function(module, exports) {
  182. module.exports = require("element-ui/lib/utils/dom");
  183. /***/ }),
  184. /* 3 */
  185. /***/ (function(module, exports) {
  186. module.exports = require("element-ui/lib/utils/util");
  187. /***/ }),
  188. /* 4 */,
  189. /* 5 */
  190. /***/ (function(module, exports) {
  191. module.exports = require("element-ui/lib/utils/vue-popper");
  192. /***/ }),
  193. /* 6 */
  194. /***/ (function(module, exports) {
  195. module.exports = require("element-ui/lib/mixins/locale");
  196. /***/ }),
  197. /* 7 */
  198. /***/ (function(module, exports) {
  199. module.exports = require("vue");
  200. /***/ }),
  201. /* 8 */
  202. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  203. "use strict";
  204. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return getCell; });
  205. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "i", function() { return orderBy; });
  206. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return getColumnById; });
  207. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return getColumnByKey; });
  208. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return getColumnByCell; });
  209. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "g", function() { return getRowIdentity; });
  210. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return getKeysMap; });
  211. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "h", function() { return mergeOptions; });
  212. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "l", function() { return parseWidth; });
  213. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "k", function() { return parseMinWidth; });
  214. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "j", function() { return parseHeight; });
  215. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return compose; });
  216. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "m", function() { return toggleRowStatus; });
  217. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "n", function() { return walkTreeNode; });
  218. /* harmony import */ var element_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3);
  219. /* harmony import */ var element_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(element_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__);
  220. var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
  221. var getCell = function getCell(event) {
  222. var cell = event.target;
  223. while (cell && cell.tagName.toUpperCase() !== 'HTML') {
  224. if (cell.tagName.toUpperCase() === 'TD') {
  225. return cell;
  226. }
  227. cell = cell.parentNode;
  228. }
  229. return null;
  230. };
  231. var isObject = function isObject(obj) {
  232. return obj !== null && (typeof obj === 'undefined' ? 'undefined' : _typeof(obj)) === 'object';
  233. };
  234. var orderBy = function orderBy(array, sortKey, reverse, sortMethod, sortBy) {
  235. if (!sortKey && !sortMethod && (!sortBy || Array.isArray(sortBy) && !sortBy.length)) {
  236. return array;
  237. }
  238. if (typeof reverse === 'string') {
  239. reverse = reverse === 'descending' ? -1 : 1;
  240. } else {
  241. reverse = reverse && reverse < 0 ? -1 : 1;
  242. }
  243. var getKey = sortMethod ? null : function (value, index) {
  244. if (sortBy) {
  245. if (!Array.isArray(sortBy)) {
  246. sortBy = [sortBy];
  247. }
  248. return sortBy.map(function (by) {
  249. if (typeof by === 'string') {
  250. return Object(element_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__["getValueByPath"])(value, by);
  251. } else {
  252. return by(value, index, array);
  253. }
  254. });
  255. }
  256. if (sortKey !== '$key') {
  257. if (isObject(value) && '$value' in value) value = value.$value;
  258. }
  259. return [isObject(value) ? Object(element_ui_src_utils_util__WEBPACK_IMPORTED_MODULE_0__["getValueByPath"])(value, sortKey) : value];
  260. };
  261. var compare = function compare(a, b) {
  262. if (sortMethod) {
  263. return sortMethod(a.value, b.value);
  264. }
  265. for (var i = 0, len = a.key.length; i < len; i++) {
  266. if (a.key[i] < b.key[i]) {
  267. return -1;
  268. }
  269. if (a.key[i] > b.key[i]) {
  270. return 1;
  271. }
  272. }
  273. return 0;
  274. };
  275. return array.map(function (value, index) {
  276. return {
  277. value: value,
  278. index: index,
  279. key: getKey ? getKey(value, index) : null
  280. };
  281. }).sort(function (a, b) {
  282. var order = compare(a, b);
  283. if (!order) {
  284. // make stable https://en.wikipedia.org/wiki/Sorting_algorithm#Stability
  285. order = a.index - b.index;
  286. }
  287. return order * reverse;
  288. }).map(function (item) {
  289. return item.value;
  290. });
  291. };
  292. var getColumnById = function getColumnById(table, columnId) {
  293. var column = null;
  294. table.columns.forEach(function (item) {
  295. if (item.id === columnId) {
  296. column = item;
  297. }
  298. });
  299. return column;
  300. };
  301. var getColumnByKey = function getColumnByKey(table, columnKey) {
  302. var column = null;
  303. for (var i = 0; i < table.columns.length; i++) {
  304. var item = table.columns[i];
  305. if (item.columnKey === columnKey) {
  306. column = item;
  307. break;
  308. }
  309. }
  310. return column;
  311. };
  312. var getColumnByCell = function getColumnByCell(table, cell) {
  313. var matches = (cell.className || '').match(/el-table_[^\s]+/gm);
  314. if (matches) {
  315. return getColumnById(table, matches[0]);
  316. }
  317. return null;
  318. };
  319. var getRowIdentity = function getRowIdentity(row, rowKey) {
  320. if (!row) throw new Error('row is required when get row identity');
  321. if (typeof rowKey === 'string') {
  322. if (rowKey.indexOf('.') < 0) {
  323. return row[rowKey];
  324. }
  325. var key = rowKey.split('.');
  326. var current = row;
  327. for (var i = 0; i < key.length; i++) {
  328. current = current[key[i]];
  329. }
  330. return current;
  331. } else if (typeof rowKey === 'function') {
  332. return rowKey.call(null, row);
  333. }
  334. };
  335. var getKeysMap = function getKeysMap(array, rowKey) {
  336. var arrayMap = {};
  337. (array || []).forEach(function (row, index) {
  338. arrayMap[getRowIdentity(row, rowKey)] = { row: row, index: index };
  339. });
  340. return arrayMap;
  341. };
  342. function hasOwn(obj, key) {
  343. return Object.prototype.hasOwnProperty.call(obj, key);
  344. }
  345. function mergeOptions(defaults, config) {
  346. var options = {};
  347. var key = void 0;
  348. for (key in defaults) {
  349. options[key] = defaults[key];
  350. }
  351. for (key in config) {
  352. if (hasOwn(config, key)) {
  353. var value = config[key];
  354. if (typeof value !== 'undefined') {
  355. options[key] = value;
  356. }
  357. }
  358. }
  359. return options;
  360. }
  361. function parseWidth(width) {
  362. if (width !== undefined) {
  363. width = parseInt(width, 10);
  364. if (isNaN(width)) {
  365. width = null;
  366. }
  367. }
  368. return width;
  369. }
  370. function parseMinWidth(minWidth) {
  371. if (typeof minWidth !== 'undefined') {
  372. minWidth = parseWidth(minWidth);
  373. if (isNaN(minWidth)) {
  374. minWidth = 80;
  375. }
  376. }
  377. return minWidth;
  378. };
  379. function parseHeight(height) {
  380. if (typeof height === 'number') {
  381. return height;
  382. }
  383. if (typeof height === 'string') {
  384. if (/^\d+(?:px)?$/.test(height)) {
  385. return parseInt(height, 10);
  386. } else {
  387. return height;
  388. }
  389. }
  390. return null;
  391. }
  392. // https://github.com/reduxjs/redux/blob/master/src/compose.js
  393. function compose() {
  394. for (var _len = arguments.length, funcs = Array(_len), _key = 0; _key < _len; _key++) {
  395. funcs[_key] = arguments[_key];
  396. }
  397. if (funcs.length === 0) {
  398. return function (arg) {
  399. return arg;
  400. };
  401. }
  402. if (funcs.length === 1) {
  403. return funcs[0];
  404. }
  405. return funcs.reduce(function (a, b) {
  406. return function () {
  407. return a(b.apply(undefined, arguments));
  408. };
  409. });
  410. }
  411. function toggleRowStatus(statusArr, row, newVal) {
  412. var changed = false;
  413. var index = statusArr.indexOf(row);
  414. var included = index !== -1;
  415. var addRow = function addRow() {
  416. statusArr.push(row);
  417. changed = true;
  418. };
  419. var removeRow = function removeRow() {
  420. statusArr.splice(index, 1);
  421. changed = true;
  422. };
  423. if (typeof newVal === 'boolean') {
  424. if (newVal && !included) {
  425. addRow();
  426. } else if (!newVal && included) {
  427. removeRow();
  428. }
  429. } else {
  430. if (included) {
  431. removeRow();
  432. } else {
  433. addRow();
  434. }
  435. }
  436. return changed;
  437. }
  438. function walkTreeNode(root, cb) {
  439. var childrenKey = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'children';
  440. var lazyKey = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 'hasChildren';
  441. var isNil = function isNil(array) {
  442. return !(Array.isArray(array) && array.length);
  443. };
  444. function _walker(parent, children, level) {
  445. cb(parent, children, level);
  446. children.forEach(function (item) {
  447. if (item[lazyKey]) {
  448. cb(item, null, level + 1);
  449. return;
  450. }
  451. var children = item[childrenKey];
  452. if (!isNil(children)) {
  453. _walker(item, children, level + 1);
  454. }
  455. });
  456. }
  457. root.forEach(function (item) {
  458. if (item[lazyKey]) {
  459. cb(item, null, 0);
  460. return;
  461. }
  462. var children = item[childrenKey];
  463. if (!isNil(children)) {
  464. _walker(item, children, 0);
  465. }
  466. });
  467. }
  468. /***/ }),
  469. /* 9 */
  470. /***/ (function(module, exports) {
  471. module.exports = require("element-ui/lib/utils/merge");
  472. /***/ }),
  473. /* 10 */,
  474. /* 11 */
  475. /***/ (function(module, exports) {
  476. module.exports = require("element-ui/lib/mixins/migrating");
  477. /***/ }),
  478. /* 12 */
  479. /***/ (function(module, exports) {
  480. module.exports = require("element-ui/lib/utils/clickoutside");
  481. /***/ }),
  482. /* 13 */
  483. /***/ (function(module, exports) {
  484. module.exports = require("element-ui/lib/utils/popup");
  485. /***/ }),
  486. /* 14 */,
  487. /* 15 */
  488. /***/ (function(module, exports) {
  489. module.exports = require("element-ui/lib/scrollbar");
  490. /***/ }),
  491. /* 16 */
  492. /***/ (function(module, exports) {
  493. module.exports = require("element-ui/lib/utils/resize-event");
  494. /***/ }),
  495. /* 17 */,
  496. /* 18 */
  497. /***/ (function(module, exports) {
  498. module.exports = require("element-ui/lib/checkbox");
  499. /***/ }),
  500. /* 19 */
  501. /***/ (function(module, exports) {
  502. module.exports = require("throttle-debounce/debounce");
  503. /***/ }),
  504. /* 20 */,
  505. /* 21 */,
  506. /* 22 */,
  507. /* 23 */,
  508. /* 24 */,
  509. /* 25 */,
  510. /* 26 */,
  511. /* 27 */,
  512. /* 28 */,
  513. /* 29 */
  514. /***/ (function(module, exports) {
  515. module.exports = require("element-ui/lib/tooltip");
  516. /***/ }),
  517. /* 30 */,
  518. /* 31 */,
  519. /* 32 */,
  520. /* 33 */,
  521. /* 34 */,
  522. /* 35 */,
  523. /* 36 */,
  524. /* 37 */,
  525. /* 38 */
  526. /***/ (function(module, exports) {
  527. module.exports = require("element-ui/lib/utils/scrollbar-width");
  528. /***/ }),
  529. /* 39 */
  530. /***/ (function(module, exports) {
  531. module.exports = require("element-ui/lib/checkbox-group");
  532. /***/ }),
  533. /* 40 */,
  534. /* 41 */,
  535. /* 42 */,
  536. /* 43 */
  537. /***/ (function(module, exports) {
  538. module.exports = require("throttle-debounce");
  539. /***/ }),
  540. /* 44 */,
  541. /* 45 */,
  542. /* 46 */
  543. /***/ (function(module, exports) {
  544. module.exports = require("normalize-wheel");
  545. /***/ }),
  546. /* 47 */,
  547. /* 48 */,
  548. /* 49 */,
  549. /* 50 */,
  550. /* 51 */,
  551. /* 52 */,
  552. /* 53 */,
  553. /* 54 */,
  554. /* 55 */,
  555. /* 56 */,
  556. /* 57 */
  557. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  558. "use strict";
  559. __webpack_require__.r(__webpack_exports__);
  560. // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/table/src/table.vue?vue&type=template&id=493fe34e&
  561. var render = function() {
  562. var _vm = this
  563. var _h = _vm.$createElement
  564. var _c = _vm._self._c || _h
  565. return _c(
  566. "div",
  567. {
  568. staticClass: "el-table",
  569. class: [
  570. {
  571. "el-table--fit": _vm.fit,
  572. "el-table--striped": _vm.stripe,
  573. "el-table--border": _vm.border || _vm.isGroup,
  574. "el-table--hidden": _vm.isHidden,
  575. "el-table--group": _vm.isGroup,
  576. "el-table--fluid-height": _vm.maxHeight,
  577. "el-table--scrollable-x": _vm.layout.scrollX,
  578. "el-table--scrollable-y": _vm.layout.scrollY,
  579. "el-table--enable-row-hover": !_vm.store.states.isComplex,
  580. "el-table--enable-row-transition":
  581. (_vm.store.states.data || []).length !== 0 &&
  582. (_vm.store.states.data || []).length < 100
  583. },
  584. _vm.tableSize ? "el-table--" + _vm.tableSize : ""
  585. ],
  586. on: {
  587. mouseleave: function($event) {
  588. _vm.handleMouseLeave($event)
  589. }
  590. }
  591. },
  592. [
  593. _c(
  594. "div",
  595. { ref: "hiddenColumns", staticClass: "hidden-columns" },
  596. [_vm._t("default")],
  597. 2
  598. ),
  599. _vm.showHeader
  600. ? _c(
  601. "div",
  602. {
  603. directives: [
  604. {
  605. name: "mousewheel",
  606. rawName: "v-mousewheel",
  607. value: _vm.handleHeaderFooterMousewheel,
  608. expression: "handleHeaderFooterMousewheel"
  609. }
  610. ],
  611. ref: "headerWrapper",
  612. staticClass: "el-table__header-wrapper"
  613. },
  614. [
  615. _c("table-header", {
  616. ref: "tableHeader",
  617. style: {
  618. width: _vm.layout.bodyWidth ? _vm.layout.bodyWidth + "px" : ""
  619. },
  620. attrs: {
  621. store: _vm.store,
  622. border: _vm.border,
  623. "default-sort": _vm.defaultSort
  624. }
  625. })
  626. ],
  627. 1
  628. )
  629. : _vm._e(),
  630. _c(
  631. "div",
  632. {
  633. ref: "bodyWrapper",
  634. staticClass: "el-table__body-wrapper",
  635. class: [
  636. _vm.layout.scrollX
  637. ? "is-scrolling-" + _vm.scrollPosition
  638. : "is-scrolling-none"
  639. ],
  640. style: [_vm.bodyHeight]
  641. },
  642. [
  643. _c("table-body", {
  644. style: {
  645. width: _vm.bodyWidth
  646. },
  647. attrs: {
  648. context: _vm.context,
  649. store: _vm.store,
  650. stripe: _vm.stripe,
  651. "row-class-name": _vm.rowClassName,
  652. "row-style": _vm.rowStyle,
  653. highlight: _vm.highlightCurrentRow
  654. }
  655. }),
  656. !_vm.data || _vm.data.length === 0
  657. ? _c(
  658. "div",
  659. {
  660. ref: "emptyBlock",
  661. staticClass: "el-table__empty-block",
  662. style: _vm.emptyBlockStyle
  663. },
  664. [
  665. _c(
  666. "span",
  667. { staticClass: "el-table__empty-text" },
  668. [
  669. _vm._t("empty", [
  670. _vm._v(
  671. _vm._s(_vm.emptyText || _vm.t("el.table.emptyText"))
  672. )
  673. ])
  674. ],
  675. 2
  676. )
  677. ]
  678. )
  679. : _vm._e(),
  680. _vm.$slots.append
  681. ? _c(
  682. "div",
  683. {
  684. ref: "appendWrapper",
  685. staticClass: "el-table__append-wrapper"
  686. },
  687. [_vm._t("append")],
  688. 2
  689. )
  690. : _vm._e()
  691. ],
  692. 1
  693. ),
  694. _vm.showSummary
  695. ? _c(
  696. "div",
  697. {
  698. directives: [
  699. {
  700. name: "show",
  701. rawName: "v-show",
  702. value: _vm.data && _vm.data.length > 0,
  703. expression: "data && data.length > 0"
  704. },
  705. {
  706. name: "mousewheel",
  707. rawName: "v-mousewheel",
  708. value: _vm.handleHeaderFooterMousewheel,
  709. expression: "handleHeaderFooterMousewheel"
  710. }
  711. ],
  712. ref: "footerWrapper",
  713. staticClass: "el-table__footer-wrapper"
  714. },
  715. [
  716. _c("table-footer", {
  717. style: {
  718. width: _vm.layout.bodyWidth ? _vm.layout.bodyWidth + "px" : ""
  719. },
  720. attrs: {
  721. store: _vm.store,
  722. border: _vm.border,
  723. "sum-text": _vm.sumText || _vm.t("el.table.sumText"),
  724. "summary-method": _vm.summaryMethod,
  725. "default-sort": _vm.defaultSort
  726. }
  727. })
  728. ],
  729. 1
  730. )
  731. : _vm._e(),
  732. _vm.fixedColumns.length > 0
  733. ? _c(
  734. "div",
  735. {
  736. directives: [
  737. {
  738. name: "mousewheel",
  739. rawName: "v-mousewheel",
  740. value: _vm.handleFixedMousewheel,
  741. expression: "handleFixedMousewheel"
  742. }
  743. ],
  744. ref: "fixedWrapper",
  745. staticClass: "el-table__fixed",
  746. style: [
  747. {
  748. width: _vm.layout.fixedWidth
  749. ? _vm.layout.fixedWidth + "px"
  750. : ""
  751. },
  752. _vm.fixedHeight
  753. ]
  754. },
  755. [
  756. _vm.showHeader
  757. ? _c(
  758. "div",
  759. {
  760. ref: "fixedHeaderWrapper",
  761. staticClass: "el-table__fixed-header-wrapper"
  762. },
  763. [
  764. _c("table-header", {
  765. ref: "fixedTableHeader",
  766. style: {
  767. width: _vm.bodyWidth
  768. },
  769. attrs: {
  770. fixed: "left",
  771. border: _vm.border,
  772. store: _vm.store
  773. }
  774. })
  775. ],
  776. 1
  777. )
  778. : _vm._e(),
  779. _c(
  780. "div",
  781. {
  782. ref: "fixedBodyWrapper",
  783. staticClass: "el-table__fixed-body-wrapper",
  784. style: [
  785. {
  786. top: _vm.layout.headerHeight + "px"
  787. },
  788. _vm.fixedBodyHeight
  789. ]
  790. },
  791. [
  792. _c("table-body", {
  793. style: {
  794. width: _vm.bodyWidth
  795. },
  796. attrs: {
  797. fixed: "left",
  798. store: _vm.store,
  799. stripe: _vm.stripe,
  800. highlight: _vm.highlightCurrentRow,
  801. "row-class-name": _vm.rowClassName,
  802. "row-style": _vm.rowStyle
  803. }
  804. }),
  805. _vm.$slots.append
  806. ? _c("div", {
  807. staticClass: "el-table__append-gutter",
  808. style: { height: _vm.layout.appendHeight + "px" }
  809. })
  810. : _vm._e()
  811. ],
  812. 1
  813. ),
  814. _vm.showSummary
  815. ? _c(
  816. "div",
  817. {
  818. directives: [
  819. {
  820. name: "show",
  821. rawName: "v-show",
  822. value: _vm.data && _vm.data.length > 0,
  823. expression: "data && data.length > 0"
  824. }
  825. ],
  826. ref: "fixedFooterWrapper",
  827. staticClass: "el-table__fixed-footer-wrapper"
  828. },
  829. [
  830. _c("table-footer", {
  831. style: {
  832. width: _vm.bodyWidth
  833. },
  834. attrs: {
  835. fixed: "left",
  836. border: _vm.border,
  837. "sum-text": _vm.sumText || _vm.t("el.table.sumText"),
  838. "summary-method": _vm.summaryMethod,
  839. store: _vm.store
  840. }
  841. })
  842. ],
  843. 1
  844. )
  845. : _vm._e()
  846. ]
  847. )
  848. : _vm._e(),
  849. _vm.rightFixedColumns.length > 0
  850. ? _c(
  851. "div",
  852. {
  853. directives: [
  854. {
  855. name: "mousewheel",
  856. rawName: "v-mousewheel",
  857. value: _vm.handleFixedMousewheel,
  858. expression: "handleFixedMousewheel"
  859. }
  860. ],
  861. ref: "rightFixedWrapper",
  862. staticClass: "el-table__fixed-right",
  863. style: [
  864. {
  865. width: _vm.layout.rightFixedWidth
  866. ? _vm.layout.rightFixedWidth + "px"
  867. : "",
  868. right: _vm.layout.scrollY
  869. ? (_vm.border
  870. ? _vm.layout.gutterWidth
  871. : _vm.layout.gutterWidth || 0) + "px"
  872. : ""
  873. },
  874. _vm.fixedHeight
  875. ]
  876. },
  877. [
  878. _vm.showHeader
  879. ? _c(
  880. "div",
  881. {
  882. ref: "rightFixedHeaderWrapper",
  883. staticClass: "el-table__fixed-header-wrapper"
  884. },
  885. [
  886. _c("table-header", {
  887. ref: "rightFixedTableHeader",
  888. style: {
  889. width: _vm.bodyWidth
  890. },
  891. attrs: {
  892. fixed: "right",
  893. border: _vm.border,
  894. store: _vm.store
  895. }
  896. })
  897. ],
  898. 1
  899. )
  900. : _vm._e(),
  901. _c(
  902. "div",
  903. {
  904. ref: "rightFixedBodyWrapper",
  905. staticClass: "el-table__fixed-body-wrapper",
  906. style: [
  907. {
  908. top: _vm.layout.headerHeight + "px"
  909. },
  910. _vm.fixedBodyHeight
  911. ]
  912. },
  913. [
  914. _c("table-body", {
  915. style: {
  916. width: _vm.bodyWidth
  917. },
  918. attrs: {
  919. fixed: "right",
  920. store: _vm.store,
  921. stripe: _vm.stripe,
  922. "row-class-name": _vm.rowClassName,
  923. "row-style": _vm.rowStyle,
  924. highlight: _vm.highlightCurrentRow
  925. }
  926. }),
  927. _vm.$slots.append
  928. ? _c("div", {
  929. staticClass: "el-table__append-gutter",
  930. style: { height: _vm.layout.appendHeight + "px" }
  931. })
  932. : _vm._e()
  933. ],
  934. 1
  935. ),
  936. _vm.showSummary
  937. ? _c(
  938. "div",
  939. {
  940. directives: [
  941. {
  942. name: "show",
  943. rawName: "v-show",
  944. value: _vm.data && _vm.data.length > 0,
  945. expression: "data && data.length > 0"
  946. }
  947. ],
  948. ref: "rightFixedFooterWrapper",
  949. staticClass: "el-table__fixed-footer-wrapper"
  950. },
  951. [
  952. _c("table-footer", {
  953. style: {
  954. width: _vm.bodyWidth
  955. },
  956. attrs: {
  957. fixed: "right",
  958. border: _vm.border,
  959. "sum-text": _vm.sumText || _vm.t("el.table.sumText"),
  960. "summary-method": _vm.summaryMethod,
  961. store: _vm.store
  962. }
  963. })
  964. ],
  965. 1
  966. )
  967. : _vm._e()
  968. ]
  969. )
  970. : _vm._e(),
  971. _vm.rightFixedColumns.length > 0
  972. ? _c("div", {
  973. ref: "rightFixedPatch",
  974. staticClass: "el-table__fixed-right-patch",
  975. style: {
  976. width: _vm.layout.scrollY ? _vm.layout.gutterWidth + "px" : "0",
  977. height: _vm.layout.headerHeight + "px"
  978. }
  979. })
  980. : _vm._e(),
  981. _c("div", {
  982. directives: [
  983. {
  984. name: "show",
  985. rawName: "v-show",
  986. value: _vm.resizeProxyVisible,
  987. expression: "resizeProxyVisible"
  988. }
  989. ],
  990. ref: "resizeProxy",
  991. staticClass: "el-table__column-resize-proxy"
  992. })
  993. ]
  994. )
  995. }
  996. var staticRenderFns = []
  997. render._withStripped = true
  998. // CONCATENATED MODULE: ./packages/table/src/table.vue?vue&type=template&id=493fe34e&
  999. // EXTERNAL MODULE: external "element-ui/lib/checkbox"
  1000. var checkbox_ = __webpack_require__(18);
  1001. var checkbox_default = /*#__PURE__*/__webpack_require__.n(checkbox_);
  1002. // EXTERNAL MODULE: external "throttle-debounce"
  1003. var external_throttle_debounce_ = __webpack_require__(43);
  1004. // EXTERNAL MODULE: external "element-ui/lib/utils/resize-event"
  1005. var resize_event_ = __webpack_require__(16);
  1006. // EXTERNAL MODULE: external "normalize-wheel"
  1007. var external_normalize_wheel_ = __webpack_require__(46);
  1008. var external_normalize_wheel_default = /*#__PURE__*/__webpack_require__.n(external_normalize_wheel_);
  1009. // CONCATENATED MODULE: ./src/directives/mousewheel.js
  1010. var isFirefox = typeof navigator !== 'undefined' && navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
  1011. var mousewheel_mousewheel = function mousewheel(element, callback) {
  1012. if (element && element.addEventListener) {
  1013. element.addEventListener(isFirefox ? 'DOMMouseScroll' : 'mousewheel', function (event) {
  1014. var normalized = external_normalize_wheel_default()(event);
  1015. callback && callback.apply(this, [event, normalized]);
  1016. });
  1017. }
  1018. };
  1019. /* harmony default export */ var directives_mousewheel = ({
  1020. bind: function bind(el, binding) {
  1021. mousewheel_mousewheel(el, binding.value);
  1022. }
  1023. });
  1024. // EXTERNAL MODULE: external "element-ui/lib/mixins/locale"
  1025. var locale_ = __webpack_require__(6);
  1026. var locale_default = /*#__PURE__*/__webpack_require__.n(locale_);
  1027. // EXTERNAL MODULE: external "element-ui/lib/mixins/migrating"
  1028. var migrating_ = __webpack_require__(11);
  1029. var migrating_default = /*#__PURE__*/__webpack_require__.n(migrating_);
  1030. // EXTERNAL MODULE: external "vue"
  1031. var external_vue_ = __webpack_require__(7);
  1032. var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
  1033. // EXTERNAL MODULE: external "element-ui/lib/utils/merge"
  1034. var merge_ = __webpack_require__(9);
  1035. var merge_default = /*#__PURE__*/__webpack_require__.n(merge_);
  1036. // EXTERNAL MODULE: ./packages/table/src/util.js
  1037. var util = __webpack_require__(8);
  1038. // CONCATENATED MODULE: ./packages/table/src/store/expand.js
  1039. /* harmony default export */ var expand = ({
  1040. data: function data() {
  1041. return {
  1042. states: {
  1043. defaultExpandAll: false,
  1044. expandRows: []
  1045. }
  1046. };
  1047. },
  1048. methods: {
  1049. updateExpandRows: function updateExpandRows() {
  1050. var _states = this.states,
  1051. _states$data = _states.data,
  1052. data = _states$data === undefined ? [] : _states$data,
  1053. rowKey = _states.rowKey,
  1054. defaultExpandAll = _states.defaultExpandAll,
  1055. expandRows = _states.expandRows;
  1056. if (defaultExpandAll) {
  1057. this.states.expandRows = data.slice();
  1058. } else if (rowKey) {
  1059. // TODO:这里的代码可以优化
  1060. var expandRowsMap = Object(util["f" /* getKeysMap */])(expandRows, rowKey);
  1061. this.states.expandRows = data.reduce(function (prev, row) {
  1062. var rowId = Object(util["g" /* getRowIdentity */])(row, rowKey);
  1063. var rowInfo = expandRowsMap[rowId];
  1064. if (rowInfo) {
  1065. prev.push(row);
  1066. }
  1067. return prev;
  1068. }, []);
  1069. } else {
  1070. this.states.expandRows = [];
  1071. }
  1072. },
  1073. toggleRowExpansion: function toggleRowExpansion(row, expanded) {
  1074. var changed = Object(util["m" /* toggleRowStatus */])(this.states.expandRows, row, expanded);
  1075. if (changed) {
  1076. this.table.$emit('expand-change', row, this.states.expandRows.slice());
  1077. this.scheduleLayout();
  1078. }
  1079. },
  1080. setExpandRowKeys: function setExpandRowKeys(rowKeys) {
  1081. this.assertRowKey();
  1082. // TODO:这里的代码可以优化
  1083. var _states2 = this.states,
  1084. data = _states2.data,
  1085. rowKey = _states2.rowKey;
  1086. var keysMap = Object(util["f" /* getKeysMap */])(data, rowKey);
  1087. this.states.expandRows = rowKeys.reduce(function (prev, cur) {
  1088. var info = keysMap[cur];
  1089. if (info) {
  1090. prev.push(info.row);
  1091. }
  1092. return prev;
  1093. }, []);
  1094. },
  1095. isRowExpanded: function isRowExpanded(row) {
  1096. var _states3 = this.states,
  1097. _states3$expandRows = _states3.expandRows,
  1098. expandRows = _states3$expandRows === undefined ? [] : _states3$expandRows,
  1099. rowKey = _states3.rowKey;
  1100. if (rowKey) {
  1101. var expandMap = Object(util["f" /* getKeysMap */])(expandRows, rowKey);
  1102. return !!expandMap[Object(util["g" /* getRowIdentity */])(row, rowKey)];
  1103. }
  1104. return expandRows.indexOf(row) !== -1;
  1105. }
  1106. }
  1107. });
  1108. // EXTERNAL MODULE: external "element-ui/lib/utils/util"
  1109. var util_ = __webpack_require__(3);
  1110. // CONCATENATED MODULE: ./packages/table/src/store/current.js
  1111. /* harmony default export */ var current = ({
  1112. data: function data() {
  1113. return {
  1114. states: {
  1115. // 不可响应的,设置 currentRowKey 时,data 不一定存在,也许无法算出正确的 currentRow
  1116. // 把该值缓存一下,当用户点击修改 currentRow 时,把该值重置为 null
  1117. _currentRowKey: null,
  1118. currentRow: null
  1119. }
  1120. };
  1121. },
  1122. methods: {
  1123. setCurrentRowKey: function setCurrentRowKey(key) {
  1124. this.assertRowKey();
  1125. this.states._currentRowKey = key;
  1126. this.setCurrentRowByKey(key);
  1127. },
  1128. restoreCurrentRowKey: function restoreCurrentRowKey() {
  1129. this.states._currentRowKey = null;
  1130. },
  1131. setCurrentRowByKey: function setCurrentRowByKey(key) {
  1132. var states = this.states;
  1133. var _states$data = states.data,
  1134. data = _states$data === undefined ? [] : _states$data,
  1135. rowKey = states.rowKey;
  1136. var currentRow = null;
  1137. if (rowKey) {
  1138. currentRow = Object(util_["arrayFind"])(data, function (item) {
  1139. return Object(util["g" /* getRowIdentity */])(item, rowKey) === key;
  1140. });
  1141. }
  1142. states.currentRow = currentRow;
  1143. },
  1144. updateCurrentRow: function updateCurrentRow(currentRow) {
  1145. var states = this.states,
  1146. table = this.table;
  1147. var oldCurrentRow = states.currentRow;
  1148. if (currentRow && currentRow !== oldCurrentRow) {
  1149. states.currentRow = currentRow;
  1150. table.$emit('current-change', currentRow, oldCurrentRow);
  1151. return;
  1152. }
  1153. if (!currentRow && oldCurrentRow) {
  1154. states.currentRow = null;
  1155. table.$emit('current-change', null, oldCurrentRow);
  1156. }
  1157. },
  1158. updateCurrentRowData: function updateCurrentRowData() {
  1159. var states = this.states,
  1160. table = this.table;
  1161. var rowKey = states.rowKey,
  1162. _currentRowKey = states._currentRowKey;
  1163. // data 为 null 时,解构时的默认值会被忽略
  1164. var data = states.data || [];
  1165. var oldCurrentRow = states.currentRow;
  1166. // 当 currentRow 不在 data 中时尝试更新数据
  1167. if (data.indexOf(oldCurrentRow) === -1 && oldCurrentRow) {
  1168. if (rowKey) {
  1169. var currentRowKey = Object(util["g" /* getRowIdentity */])(oldCurrentRow, rowKey);
  1170. this.setCurrentRowByKey(currentRowKey);
  1171. } else {
  1172. states.currentRow = null;
  1173. }
  1174. if (states.currentRow === null) {
  1175. table.$emit('current-change', null, oldCurrentRow);
  1176. }
  1177. } else if (_currentRowKey) {
  1178. // 把初始时下设置的 rowKey 转化成 rowData
  1179. this.setCurrentRowByKey(_currentRowKey);
  1180. this.restoreCurrentRowKey();
  1181. }
  1182. }
  1183. }
  1184. });
  1185. // CONCATENATED MODULE: ./packages/table/src/store/tree.js
  1186. var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  1187. /* harmony default export */ var tree = ({
  1188. data: function data() {
  1189. return {
  1190. states: {
  1191. // defaultExpandAll 存在于 expand.js 中,这里不重复添加
  1192. // 在展开行中,expandRowKeys 会被转化成 expandRows,expandRowKeys 这个属性只是记录了 TreeTable 行的展开
  1193. // TODO: 拆分为独立的 TreeTable,统一用法
  1194. expandRowKeys: [],
  1195. treeData: {},
  1196. indent: 16,
  1197. lazy: false,
  1198. lazyTreeNodeMap: {},
  1199. lazyColumnIdentifier: 'hasChildren',
  1200. childrenColumnName: 'children'
  1201. }
  1202. };
  1203. },
  1204. computed: {
  1205. // 嵌入型的数据,watch 无法是检测到变化 https://github.com/ElemeFE/element/issues/14998
  1206. // TODO: 使用 computed 解决该问题,是否会造成性能问题?
  1207. // @return { id: { level, children } }
  1208. normalizedData: function normalizedData() {
  1209. if (!this.states.rowKey) return {};
  1210. var data = this.states.data || [];
  1211. return this.normalize(data);
  1212. },
  1213. // @return { id: { children } }
  1214. // 针对懒加载的情形,不处理嵌套数据
  1215. normalizedLazyNode: function normalizedLazyNode() {
  1216. var _states = this.states,
  1217. rowKey = _states.rowKey,
  1218. lazyTreeNodeMap = _states.lazyTreeNodeMap,
  1219. lazyColumnIdentifier = _states.lazyColumnIdentifier;
  1220. var keys = Object.keys(lazyTreeNodeMap);
  1221. var res = {};
  1222. if (!keys.length) return res;
  1223. keys.forEach(function (key) {
  1224. if (lazyTreeNodeMap[key].length) {
  1225. var item = { children: [] };
  1226. lazyTreeNodeMap[key].forEach(function (row) {
  1227. var currentRowKey = Object(util["g" /* getRowIdentity */])(row, rowKey);
  1228. item.children.push(currentRowKey);
  1229. if (row[lazyColumnIdentifier] && !res[currentRowKey]) {
  1230. res[currentRowKey] = { children: [] };
  1231. }
  1232. });
  1233. res[key] = item;
  1234. }
  1235. });
  1236. return res;
  1237. }
  1238. },
  1239. watch: {
  1240. normalizedData: 'updateTreeData',
  1241. normalizedLazyNode: 'updateTreeData'
  1242. },
  1243. methods: {
  1244. normalize: function normalize(data) {
  1245. var _states2 = this.states,
  1246. childrenColumnName = _states2.childrenColumnName,
  1247. lazyColumnIdentifier = _states2.lazyColumnIdentifier,
  1248. rowKey = _states2.rowKey,
  1249. lazy = _states2.lazy;
  1250. var res = {};
  1251. Object(util["n" /* walkTreeNode */])(data, function (parent, children, level) {
  1252. var parentId = Object(util["g" /* getRowIdentity */])(parent, rowKey);
  1253. if (Array.isArray(children)) {
  1254. res[parentId] = {
  1255. children: children.map(function (row) {
  1256. return Object(util["g" /* getRowIdentity */])(row, rowKey);
  1257. }),
  1258. level: level
  1259. };
  1260. } else if (lazy) {
  1261. // 当 children 不存在且 lazy 为 true,该节点即为懒加载的节点
  1262. res[parentId] = {
  1263. children: [],
  1264. lazy: true,
  1265. level: level
  1266. };
  1267. }
  1268. }, childrenColumnName, lazyColumnIdentifier);
  1269. return res;
  1270. },
  1271. updateTreeData: function updateTreeData() {
  1272. var nested = this.normalizedData;
  1273. var normalizedLazyNode = this.normalizedLazyNode;
  1274. var keys = Object.keys(nested);
  1275. var newTreeData = {};
  1276. if (keys.length) {
  1277. var _states3 = this.states,
  1278. oldTreeData = _states3.treeData,
  1279. defaultExpandAll = _states3.defaultExpandAll,
  1280. expandRowKeys = _states3.expandRowKeys,
  1281. lazy = _states3.lazy;
  1282. var rootLazyRowKeys = [];
  1283. var getExpanded = function getExpanded(oldValue, key) {
  1284. var included = defaultExpandAll || expandRowKeys && expandRowKeys.indexOf(key) !== -1;
  1285. return !!(oldValue && oldValue.expanded || included);
  1286. };
  1287. // 合并 expanded 与 display,确保数据刷新后,状态不变
  1288. keys.forEach(function (key) {
  1289. var oldValue = oldTreeData[key];
  1290. var newValue = _extends({}, nested[key]);
  1291. newValue.expanded = getExpanded(oldValue, key);
  1292. if (newValue.lazy) {
  1293. var _ref = oldValue || {},
  1294. _ref$loaded = _ref.loaded,
  1295. loaded = _ref$loaded === undefined ? false : _ref$loaded,
  1296. _ref$loading = _ref.loading,
  1297. loading = _ref$loading === undefined ? false : _ref$loading;
  1298. newValue.loaded = !!loaded;
  1299. newValue.loading = !!loading;
  1300. rootLazyRowKeys.push(key);
  1301. }
  1302. newTreeData[key] = newValue;
  1303. });
  1304. // 根据懒加载数据更新 treeData
  1305. var lazyKeys = Object.keys(normalizedLazyNode);
  1306. if (lazy && lazyKeys.length && rootLazyRowKeys.length) {
  1307. lazyKeys.forEach(function (key) {
  1308. var oldValue = oldTreeData[key];
  1309. var lazyNodeChildren = normalizedLazyNode[key].children;
  1310. if (rootLazyRowKeys.indexOf(key) !== -1) {
  1311. // 懒加载的 root 节点,更新一下原有的数据,原来的 children 一定是空数组
  1312. if (newTreeData[key].children.length !== 0) {
  1313. throw new Error('[ElTable]children must be an empty array.');
  1314. }
  1315. newTreeData[key].children = lazyNodeChildren;
  1316. } else {
  1317. var _ref2 = oldValue || {},
  1318. _ref2$loaded = _ref2.loaded,
  1319. loaded = _ref2$loaded === undefined ? false : _ref2$loaded,
  1320. _ref2$loading = _ref2.loading,
  1321. loading = _ref2$loading === undefined ? false : _ref2$loading;
  1322. newTreeData[key] = {
  1323. lazy: true,
  1324. loaded: !!loaded,
  1325. loading: !!loading,
  1326. expanded: getExpanded(oldValue, key),
  1327. children: lazyNodeChildren,
  1328. level: ''
  1329. };
  1330. }
  1331. });
  1332. }
  1333. }
  1334. this.states.treeData = newTreeData;
  1335. this.updateTableScrollY();
  1336. },
  1337. updateTreeExpandKeys: function updateTreeExpandKeys(value) {
  1338. this.states.expandRowKeys = value;
  1339. this.updateTreeData();
  1340. },
  1341. toggleTreeExpansion: function toggleTreeExpansion(row, expanded) {
  1342. this.assertRowKey();
  1343. var _states4 = this.states,
  1344. rowKey = _states4.rowKey,
  1345. treeData = _states4.treeData;
  1346. var id = Object(util["g" /* getRowIdentity */])(row, rowKey);
  1347. var data = id && treeData[id];
  1348. if (id && data && 'expanded' in data) {
  1349. var oldExpanded = data.expanded;
  1350. expanded = typeof expanded === 'undefined' ? !data.expanded : expanded;
  1351. treeData[id].expanded = expanded;
  1352. if (oldExpanded !== expanded) {
  1353. this.table.$emit('expand-change', row, expanded);
  1354. }
  1355. this.updateTableScrollY();
  1356. }
  1357. },
  1358. loadOrToggle: function loadOrToggle(row) {
  1359. this.assertRowKey();
  1360. var _states5 = this.states,
  1361. lazy = _states5.lazy,
  1362. treeData = _states5.treeData,
  1363. rowKey = _states5.rowKey;
  1364. var id = Object(util["g" /* getRowIdentity */])(row, rowKey);
  1365. var data = treeData[id];
  1366. if (lazy && data && 'loaded' in data && !data.loaded) {
  1367. this.loadData(row, id, data);
  1368. } else {
  1369. this.toggleTreeExpansion(row);
  1370. }
  1371. },
  1372. loadData: function loadData(row, key, treeNode) {
  1373. var _this = this;
  1374. var load = this.table.load;
  1375. var rawTreeData = this.states.treeData;
  1376. if (load && !rawTreeData[key].loaded) {
  1377. rawTreeData[key].loading = true;
  1378. load(row, treeNode, function (data) {
  1379. if (!Array.isArray(data)) {
  1380. throw new Error('[ElTable] data must be an array');
  1381. }
  1382. var _states6 = _this.states,
  1383. lazyTreeNodeMap = _states6.lazyTreeNodeMap,
  1384. treeData = _states6.treeData;
  1385. treeData[key].loading = false;
  1386. treeData[key].loaded = true;
  1387. treeData[key].expanded = true;
  1388. if (data.length) {
  1389. _this.$set(lazyTreeNodeMap, key, data);
  1390. }
  1391. _this.table.$emit('expand-change', row, true);
  1392. });
  1393. }
  1394. }
  1395. }
  1396. });
  1397. // CONCATENATED MODULE: ./packages/table/src/store/watcher.js
  1398. var watcher_sortData = function sortData(data, states) {
  1399. var sortingColumn = states.sortingColumn;
  1400. if (!sortingColumn || typeof sortingColumn.sortable === 'string') {
  1401. return data;
  1402. }
  1403. return Object(util["i" /* orderBy */])(data, states.sortProp, states.sortOrder, sortingColumn.sortMethod, sortingColumn.sortBy);
  1404. };
  1405. var doFlattenColumns = function doFlattenColumns(columns) {
  1406. var result = [];
  1407. columns.forEach(function (column) {
  1408. if (column.children) {
  1409. result.push.apply(result, doFlattenColumns(column.children));
  1410. } else {
  1411. result.push(column);
  1412. }
  1413. });
  1414. return result;
  1415. };
  1416. /* harmony default export */ var watcher = (external_vue_default.a.extend({
  1417. data: function data() {
  1418. return {
  1419. states: {
  1420. // 3.0 版本后要求必须设置该属性
  1421. rowKey: null,
  1422. // 渲染的数据来源,是对 table 中的 data 过滤排序后的结果
  1423. data: [],
  1424. // 是否包含固定列
  1425. isComplex: false,
  1426. // 列
  1427. _columns: [], // 不可响应的
  1428. originColumns: [],
  1429. columns: [],
  1430. fixedColumns: [],
  1431. rightFixedColumns: [],
  1432. leafColumns: [],
  1433. fixedLeafColumns: [],
  1434. rightFixedLeafColumns: [],
  1435. leafColumnsLength: 0,
  1436. fixedLeafColumnsLength: 0,
  1437. rightFixedLeafColumnsLength: 0,
  1438. // 选择
  1439. isAllSelected: false,
  1440. selection: [],
  1441. reserveSelection: false,
  1442. selectOnIndeterminate: false,
  1443. selectable: null,
  1444. // 过滤
  1445. filters: {}, // 不可响应的
  1446. filteredData: null,
  1447. // 排序
  1448. sortingColumn: null,
  1449. sortProp: null,
  1450. sortOrder: null,
  1451. hoverRow: null
  1452. }
  1453. };
  1454. },
  1455. mixins: [expand, current, tree],
  1456. methods: {
  1457. // 检查 rowKey 是否存在
  1458. assertRowKey: function assertRowKey() {
  1459. var rowKey = this.states.rowKey;
  1460. if (!rowKey) throw new Error('[ElTable] prop row-key is required');
  1461. },
  1462. // 更新列
  1463. updateColumns: function updateColumns() {
  1464. var states = this.states;
  1465. var _columns = states._columns || [];
  1466. states.fixedColumns = _columns.filter(function (column) {
  1467. return column.fixed === true || column.fixed === 'left';
  1468. });
  1469. states.rightFixedColumns = _columns.filter(function (column) {
  1470. return column.fixed === 'right';
  1471. });
  1472. if (states.fixedColumns.length > 0 && _columns[0] && _columns[0].type === 'selection' && !_columns[0].fixed) {
  1473. _columns[0].fixed = true;
  1474. states.fixedColumns.unshift(_columns[0]);
  1475. }
  1476. var notFixedColumns = _columns.filter(function (column) {
  1477. return !column.fixed;
  1478. });
  1479. states.originColumns = [].concat(states.fixedColumns).concat(notFixedColumns).concat(states.rightFixedColumns);
  1480. var leafColumns = doFlattenColumns(notFixedColumns);
  1481. var fixedLeafColumns = doFlattenColumns(states.fixedColumns);
  1482. var rightFixedLeafColumns = doFlattenColumns(states.rightFixedColumns);
  1483. states.leafColumnsLength = leafColumns.length;
  1484. states.fixedLeafColumnsLength = fixedLeafColumns.length;
  1485. states.rightFixedLeafColumnsLength = rightFixedLeafColumns.length;
  1486. states.columns = [].concat(fixedLeafColumns).concat(leafColumns).concat(rightFixedLeafColumns);
  1487. states.isComplex = states.fixedColumns.length > 0 || states.rightFixedColumns.length > 0;
  1488. },
  1489. // 更新 DOM
  1490. scheduleLayout: function scheduleLayout(needUpdateColumns) {
  1491. if (needUpdateColumns) {
  1492. this.updateColumns();
  1493. }
  1494. this.table.debouncedUpdateLayout();
  1495. },
  1496. // 选择
  1497. isSelected: function isSelected(row) {
  1498. var _states$selection = this.states.selection,
  1499. selection = _states$selection === undefined ? [] : _states$selection;
  1500. return selection.indexOf(row) > -1;
  1501. },
  1502. clearSelection: function clearSelection() {
  1503. var states = this.states;
  1504. states.isAllSelected = false;
  1505. var oldSelection = states.selection;
  1506. if (oldSelection.length) {
  1507. states.selection = [];
  1508. this.table.$emit('selection-change', []);
  1509. }
  1510. },
  1511. cleanSelection: function cleanSelection() {
  1512. var states = this.states;
  1513. var data = states.data,
  1514. rowKey = states.rowKey,
  1515. selection = states.selection;
  1516. var deleted = void 0;
  1517. if (rowKey) {
  1518. deleted = [];
  1519. var selectedMap = Object(util["f" /* getKeysMap */])(selection, rowKey);
  1520. var dataMap = Object(util["f" /* getKeysMap */])(data, rowKey);
  1521. for (var key in selectedMap) {
  1522. if (selectedMap.hasOwnProperty(key) && !dataMap[key]) {
  1523. deleted.push(selectedMap[key].row);
  1524. }
  1525. }
  1526. } else {
  1527. deleted = selection.filter(function (item) {
  1528. return data.indexOf(item) === -1;
  1529. });
  1530. }
  1531. if (deleted.length) {
  1532. var newSelection = selection.filter(function (item) {
  1533. return deleted.indexOf(item) === -1;
  1534. });
  1535. states.selection = newSelection;
  1536. this.table.$emit('selection-change', newSelection.slice());
  1537. }
  1538. },
  1539. toggleRowSelection: function toggleRowSelection(row, selected) {
  1540. var emitChange = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
  1541. var changed = Object(util["m" /* toggleRowStatus */])(this.states.selection, row, selected);
  1542. if (changed) {
  1543. var newSelection = (this.states.selection || []).slice();
  1544. // 调用 API 修改选中值,不触发 select 事件
  1545. if (emitChange) {
  1546. this.table.$emit('select', newSelection, row);
  1547. }
  1548. this.table.$emit('selection-change', newSelection);
  1549. }
  1550. },
  1551. _toggleAllSelection: function _toggleAllSelection() {
  1552. var states = this.states;
  1553. var _states$data = states.data,
  1554. data = _states$data === undefined ? [] : _states$data,
  1555. selection = states.selection;
  1556. // when only some rows are selected (but not all), select or deselect all of them
  1557. // depending on the value of selectOnIndeterminate
  1558. var value = states.selectOnIndeterminate ? !states.isAllSelected : !(states.isAllSelected || selection.length);
  1559. states.isAllSelected = value;
  1560. var selectionChanged = false;
  1561. data.forEach(function (row, index) {
  1562. if (states.selectable) {
  1563. if (states.selectable.call(null, row, index) && Object(util["m" /* toggleRowStatus */])(selection, row, value)) {
  1564. selectionChanged = true;
  1565. }
  1566. } else {
  1567. if (Object(util["m" /* toggleRowStatus */])(selection, row, value)) {
  1568. selectionChanged = true;
  1569. }
  1570. }
  1571. });
  1572. if (selectionChanged) {
  1573. this.table.$emit('selection-change', selection ? selection.slice() : []);
  1574. }
  1575. this.table.$emit('select-all', selection);
  1576. },
  1577. updateSelectionByRowKey: function updateSelectionByRowKey() {
  1578. var states = this.states;
  1579. var selection = states.selection,
  1580. rowKey = states.rowKey,
  1581. data = states.data;
  1582. var selectedMap = Object(util["f" /* getKeysMap */])(selection, rowKey);
  1583. data.forEach(function (row) {
  1584. var rowId = Object(util["g" /* getRowIdentity */])(row, rowKey);
  1585. var rowInfo = selectedMap[rowId];
  1586. if (rowInfo) {
  1587. selection[rowInfo.index] = row;
  1588. }
  1589. });
  1590. },
  1591. updateAllSelected: function updateAllSelected() {
  1592. var states = this.states;
  1593. var selection = states.selection,
  1594. rowKey = states.rowKey,
  1595. selectable = states.selectable;
  1596. // data 为 null 时,解构时的默认值会被忽略
  1597. var data = states.data || [];
  1598. if (data.length === 0) {
  1599. states.isAllSelected = false;
  1600. return;
  1601. }
  1602. var selectedMap = void 0;
  1603. if (rowKey) {
  1604. selectedMap = Object(util["f" /* getKeysMap */])(selection, rowKey);
  1605. }
  1606. var isSelected = function isSelected(row) {
  1607. if (selectedMap) {
  1608. return !!selectedMap[Object(util["g" /* getRowIdentity */])(row, rowKey)];
  1609. } else {
  1610. return selection.indexOf(row) !== -1;
  1611. }
  1612. };
  1613. var isAllSelected = true;
  1614. var selectedCount = 0;
  1615. for (var i = 0, j = data.length; i < j; i++) {
  1616. var item = data[i];
  1617. var isRowSelectable = selectable && selectable.call(null, item, i);
  1618. if (!isSelected(item)) {
  1619. if (!selectable || isRowSelectable) {
  1620. isAllSelected = false;
  1621. break;
  1622. }
  1623. } else {
  1624. selectedCount++;
  1625. }
  1626. }
  1627. if (selectedCount === 0) isAllSelected = false;
  1628. states.isAllSelected = isAllSelected;
  1629. },
  1630. // 过滤与排序
  1631. updateFilters: function updateFilters(columns, values) {
  1632. if (!Array.isArray(columns)) {
  1633. columns = [columns];
  1634. }
  1635. var states = this.states;
  1636. var filters = {};
  1637. columns.forEach(function (col) {
  1638. states.filters[col.id] = values;
  1639. filters[col.columnKey || col.id] = values;
  1640. });
  1641. return filters;
  1642. },
  1643. updateSort: function updateSort(column, prop, order) {
  1644. if (this.states.sortingColumn && this.states.sortingColumn !== column) {
  1645. this.states.sortingColumn.order = null;
  1646. }
  1647. this.states.sortingColumn = column;
  1648. this.states.sortProp = prop;
  1649. this.states.sortOrder = order;
  1650. },
  1651. execFilter: function execFilter() {
  1652. var _this = this;
  1653. var states = this.states;
  1654. var _data = states._data,
  1655. filters = states.filters;
  1656. var data = _data;
  1657. Object.keys(filters).forEach(function (columnId) {
  1658. var values = states.filters[columnId];
  1659. if (!values || values.length === 0) return;
  1660. var column = Object(util["d" /* getColumnById */])(_this.states, columnId);
  1661. if (column && column.filterMethod) {
  1662. data = data.filter(function (row) {
  1663. return values.some(function (value) {
  1664. return column.filterMethod.call(null, value, row, column);
  1665. });
  1666. });
  1667. }
  1668. });
  1669. states.filteredData = data;
  1670. },
  1671. execSort: function execSort() {
  1672. var states = this.states;
  1673. states.data = watcher_sortData(states.filteredData, states);
  1674. },
  1675. // 根据 filters 与 sort 去过滤 data
  1676. execQuery: function execQuery(ignore) {
  1677. if (!(ignore && ignore.filter)) {
  1678. this.execFilter();
  1679. }
  1680. this.execSort();
  1681. },
  1682. clearFilter: function clearFilter(columnKeys) {
  1683. var states = this.states;
  1684. var _table$$refs = this.table.$refs,
  1685. tableHeader = _table$$refs.tableHeader,
  1686. fixedTableHeader = _table$$refs.fixedTableHeader,
  1687. rightFixedTableHeader = _table$$refs.rightFixedTableHeader;
  1688. var panels = {};
  1689. if (tableHeader) panels = merge_default()(panels, tableHeader.filterPanels);
  1690. if (fixedTableHeader) panels = merge_default()(panels, fixedTableHeader.filterPanels);
  1691. if (rightFixedTableHeader) panels = merge_default()(panels, rightFixedTableHeader.filterPanels);
  1692. var keys = Object.keys(panels);
  1693. if (!keys.length) return;
  1694. if (typeof columnKeys === 'string') {
  1695. columnKeys = [columnKeys];
  1696. }
  1697. if (Array.isArray(columnKeys)) {
  1698. var columns = columnKeys.map(function (key) {
  1699. return Object(util["e" /* getColumnByKey */])(states, key);
  1700. });
  1701. keys.forEach(function (key) {
  1702. var column = columns.find(function (col) {
  1703. return col.id === key;
  1704. });
  1705. if (column) {
  1706. // TODO: 优化这里的代码
  1707. panels[key].filteredValue = [];
  1708. }
  1709. });
  1710. this.commit('filterChange', {
  1711. column: columns,
  1712. values: [],
  1713. silent: true,
  1714. multi: true
  1715. });
  1716. } else {
  1717. keys.forEach(function (key) {
  1718. // TODO: 优化这里的代码
  1719. panels[key].filteredValue = [];
  1720. });
  1721. states.filters = {};
  1722. this.commit('filterChange', {
  1723. column: {},
  1724. values: [],
  1725. silent: true
  1726. });
  1727. }
  1728. },
  1729. clearSort: function clearSort() {
  1730. var states = this.states;
  1731. if (!states.sortingColumn) return;
  1732. this.updateSort(null, null, null);
  1733. this.commit('changeSortCondition', {
  1734. silent: true
  1735. });
  1736. },
  1737. // 适配层,expand-row-keys 在 Expand 与 TreeTable 中都有使用
  1738. setExpandRowKeysAdapter: function setExpandRowKeysAdapter(val) {
  1739. // 这里会触发额外的计算,但为了兼容性,暂时这么做
  1740. this.setExpandRowKeys(val);
  1741. this.updateTreeExpandKeys(val);
  1742. },
  1743. // 展开行与 TreeTable 都要使用
  1744. toggleRowExpansionAdapter: function toggleRowExpansionAdapter(row, expanded) {
  1745. var hasExpandColumn = this.states.columns.some(function (_ref) {
  1746. var type = _ref.type;
  1747. return type === 'expand';
  1748. });
  1749. if (hasExpandColumn) {
  1750. this.toggleRowExpansion(row, expanded);
  1751. } else {
  1752. this.toggleTreeExpansion(row, expanded);
  1753. }
  1754. }
  1755. }
  1756. }));
  1757. // CONCATENATED MODULE: ./packages/table/src/store/index.js
  1758. watcher.prototype.mutations = {
  1759. setData: function setData(states, data) {
  1760. var dataInstanceChanged = states._data !== data;
  1761. states._data = data;
  1762. this.execQuery();
  1763. // 数据变化,更新部分数据。
  1764. // 没有使用 computed,而是手动更新部分数据 https://github.com/vuejs/vue/issues/6660#issuecomment-331417140
  1765. this.updateCurrentRowData();
  1766. this.updateExpandRows();
  1767. if (states.reserveSelection) {
  1768. this.assertRowKey();
  1769. this.updateSelectionByRowKey();
  1770. } else {
  1771. if (dataInstanceChanged) {
  1772. this.clearSelection();
  1773. } else {
  1774. this.cleanSelection();
  1775. }
  1776. }
  1777. this.updateAllSelected();
  1778. this.updateTableScrollY();
  1779. },
  1780. insertColumn: function insertColumn(states, column, index, parent) {
  1781. var array = states._columns;
  1782. if (parent) {
  1783. array = parent.children;
  1784. if (!array) array = parent.children = [];
  1785. }
  1786. if (typeof index !== 'undefined') {
  1787. array.splice(index, 0, column);
  1788. } else {
  1789. array.push(column);
  1790. }
  1791. if (column.type === 'selection') {
  1792. states.selectable = column.selectable;
  1793. states.reserveSelection = column.reserveSelection;
  1794. }
  1795. if (this.table.$ready) {
  1796. this.updateColumns(); // hack for dynamics insert column
  1797. this.scheduleLayout();
  1798. }
  1799. },
  1800. removeColumn: function removeColumn(states, column, parent) {
  1801. var array = states._columns;
  1802. if (parent) {
  1803. array = parent.children;
  1804. if (!array) array = parent.children = [];
  1805. }
  1806. if (array) {
  1807. array.splice(array.indexOf(column), 1);
  1808. }
  1809. if (this.table.$ready) {
  1810. this.updateColumns(); // hack for dynamics remove column
  1811. this.scheduleLayout();
  1812. }
  1813. },
  1814. sort: function sort(states, options) {
  1815. var prop = options.prop,
  1816. order = options.order,
  1817. init = options.init;
  1818. if (prop) {
  1819. var column = Object(util_["arrayFind"])(states.columns, function (column) {
  1820. return column.property === prop;
  1821. });
  1822. if (column) {
  1823. column.order = order;
  1824. this.updateSort(column, prop, order);
  1825. this.commit('changeSortCondition', { init: init });
  1826. }
  1827. }
  1828. },
  1829. changeSortCondition: function changeSortCondition(states, options) {
  1830. // 修复 pr https://github.com/ElemeFE/element/pull/15012 导致的 bug
  1831. var column = states.sortingColumn,
  1832. prop = states.sortProp,
  1833. order = states.sortOrder;
  1834. if (order === null) {
  1835. states.sortingColumn = null;
  1836. states.sortProp = null;
  1837. }
  1838. var ingore = { filter: true };
  1839. this.execQuery(ingore);
  1840. if (!options || !(options.silent || options.init)) {
  1841. this.table.$emit('sort-change', {
  1842. column: column,
  1843. prop: prop,
  1844. order: order
  1845. });
  1846. }
  1847. this.updateTableScrollY();
  1848. },
  1849. filterChange: function filterChange(states, options) {
  1850. var column = options.column,
  1851. values = options.values,
  1852. silent = options.silent;
  1853. var newFilters = this.updateFilters(column, values);
  1854. this.execQuery();
  1855. if (!silent) {
  1856. this.table.$emit('filter-change', newFilters);
  1857. }
  1858. this.updateTableScrollY();
  1859. },
  1860. toggleAllSelection: function toggleAllSelection() {
  1861. this.toggleAllSelection();
  1862. },
  1863. rowSelectedChanged: function rowSelectedChanged(states, row) {
  1864. this.toggleRowSelection(row);
  1865. this.updateAllSelected();
  1866. },
  1867. setHoverRow: function setHoverRow(states, row) {
  1868. states.hoverRow = row;
  1869. },
  1870. setCurrentRow: function setCurrentRow(states, row) {
  1871. this.updateCurrentRow(row);
  1872. }
  1873. };
  1874. watcher.prototype.commit = function (name) {
  1875. var mutations = this.mutations;
  1876. if (mutations[name]) {
  1877. for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
  1878. args[_key - 1] = arguments[_key];
  1879. }
  1880. mutations[name].apply(this, [this.states].concat(args));
  1881. } else {
  1882. throw new Error('Action not found: ' + name);
  1883. }
  1884. };
  1885. watcher.prototype.updateTableScrollY = function () {
  1886. external_vue_default.a.nextTick(this.table.updateScrollY);
  1887. };
  1888. /* harmony default export */ var src_store = (watcher);
  1889. // EXTERNAL MODULE: external "throttle-debounce/debounce"
  1890. var debounce_ = __webpack_require__(19);
  1891. var debounce_default = /*#__PURE__*/__webpack_require__.n(debounce_);
  1892. // CONCATENATED MODULE: ./packages/table/src/store/helper.js
  1893. function createStore(table) {
  1894. var initialState = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
  1895. if (!table) {
  1896. throw new Error('Table is required.');
  1897. }
  1898. var store = new src_store();
  1899. store.table = table;
  1900. // fix https://github.com/ElemeFE/element/issues/14075
  1901. // related pr https://github.com/ElemeFE/element/pull/14146
  1902. store.toggleAllSelection = debounce_default()(10, store._toggleAllSelection);
  1903. Object.keys(initialState).forEach(function (key) {
  1904. store.states[key] = initialState[key];
  1905. });
  1906. return store;
  1907. }
  1908. function mapStates(mapper) {
  1909. var res = {};
  1910. Object.keys(mapper).forEach(function (key) {
  1911. var value = mapper[key];
  1912. var fn = void 0;
  1913. if (typeof value === 'string') {
  1914. fn = function fn() {
  1915. return this.store.states[value];
  1916. };
  1917. } else if (typeof value === 'function') {
  1918. fn = function fn() {
  1919. return value.call(this, this.store.states);
  1920. };
  1921. } else {
  1922. console.error('invalid value type');
  1923. }
  1924. if (fn) {
  1925. res[key] = fn;
  1926. }
  1927. });
  1928. return res;
  1929. };
  1930. // EXTERNAL MODULE: external "element-ui/lib/utils/scrollbar-width"
  1931. var scrollbar_width_ = __webpack_require__(38);
  1932. var scrollbar_width_default = /*#__PURE__*/__webpack_require__.n(scrollbar_width_);
  1933. // CONCATENATED MODULE: ./packages/table/src/table-layout.js
  1934. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  1935. var table_layout_TableLayout = function () {
  1936. function TableLayout(options) {
  1937. _classCallCheck(this, TableLayout);
  1938. this.observers = [];
  1939. this.table = null;
  1940. this.store = null;
  1941. this.columns = null;
  1942. this.fit = true;
  1943. this.showHeader = true;
  1944. this.height = null;
  1945. this.scrollX = false;
  1946. this.scrollY = false;
  1947. this.bodyWidth = null;
  1948. this.fixedWidth = null;
  1949. this.rightFixedWidth = null;
  1950. this.tableHeight = null;
  1951. this.headerHeight = 44; // Table Header Height
  1952. this.appendHeight = 0; // Append Slot Height
  1953. this.footerHeight = 44; // Table Footer Height
  1954. this.viewportHeight = null; // Table Height - Scroll Bar Height
  1955. this.bodyHeight = null; // Table Height - Table Header Height
  1956. this.fixedBodyHeight = null; // Table Height - Table Header Height - Scroll Bar Height
  1957. this.gutterWidth = scrollbar_width_default()();
  1958. for (var name in options) {
  1959. if (options.hasOwnProperty(name)) {
  1960. this[name] = options[name];
  1961. }
  1962. }
  1963. if (!this.table) {
  1964. throw new Error('table is required for Table Layout');
  1965. }
  1966. if (!this.store) {
  1967. throw new Error('store is required for Table Layout');
  1968. }
  1969. }
  1970. TableLayout.prototype.updateScrollY = function updateScrollY() {
  1971. var height = this.height;
  1972. if (height === null) return false;
  1973. var bodyWrapper = this.table.bodyWrapper;
  1974. if (this.table.$el && bodyWrapper) {
  1975. var body = bodyWrapper.querySelector('.el-table__body');
  1976. var prevScrollY = this.scrollY;
  1977. var scrollY = body.offsetHeight > this.bodyHeight;
  1978. this.scrollY = scrollY;
  1979. return prevScrollY !== scrollY;
  1980. }
  1981. return false;
  1982. };
  1983. TableLayout.prototype.setHeight = function setHeight(value) {
  1984. var _this = this;
  1985. var prop = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'height';
  1986. if (external_vue_default.a.prototype.$isServer) return;
  1987. var el = this.table.$el;
  1988. value = Object(util["j" /* parseHeight */])(value);
  1989. this.height = value;
  1990. if (!el && (value || value === 0)) return external_vue_default.a.nextTick(function () {
  1991. return _this.setHeight(value, prop);
  1992. });
  1993. if (typeof value === 'number') {
  1994. el.style[prop] = value + 'px';
  1995. this.updateElsHeight();
  1996. } else if (typeof value === 'string') {
  1997. el.style[prop] = value;
  1998. this.updateElsHeight();
  1999. }
  2000. };
  2001. TableLayout.prototype.setMaxHeight = function setMaxHeight(value) {
  2002. this.setHeight(value, 'max-height');
  2003. };
  2004. TableLayout.prototype.getFlattenColumns = function getFlattenColumns() {
  2005. var flattenColumns = [];
  2006. var columns = this.table.columns;
  2007. columns.forEach(function (column) {
  2008. if (column.isColumnGroup) {
  2009. flattenColumns.push.apply(flattenColumns, column.columns);
  2010. } else {
  2011. flattenColumns.push(column);
  2012. }
  2013. });
  2014. return flattenColumns;
  2015. };
  2016. TableLayout.prototype.updateElsHeight = function updateElsHeight() {
  2017. var _this2 = this;
  2018. if (!this.table.$ready) return external_vue_default.a.nextTick(function () {
  2019. return _this2.updateElsHeight();
  2020. });
  2021. var _table$$refs = this.table.$refs,
  2022. headerWrapper = _table$$refs.headerWrapper,
  2023. appendWrapper = _table$$refs.appendWrapper,
  2024. footerWrapper = _table$$refs.footerWrapper;
  2025. this.appendHeight = appendWrapper ? appendWrapper.offsetHeight : 0;
  2026. if (this.showHeader && !headerWrapper) return;
  2027. // fix issue (https://github.com/ElemeFE/element/pull/16956)
  2028. var headerTrElm = headerWrapper ? headerWrapper.querySelector('.el-table__header tr') : null;
  2029. var noneHeader = this.headerDisplayNone(headerTrElm);
  2030. var headerHeight = this.headerHeight = !this.showHeader ? 0 : headerWrapper.offsetHeight;
  2031. if (this.showHeader && !noneHeader && headerWrapper.offsetWidth > 0 && (this.table.columns || []).length > 0 && headerHeight < 2) {
  2032. return external_vue_default.a.nextTick(function () {
  2033. return _this2.updateElsHeight();
  2034. });
  2035. }
  2036. var tableHeight = this.tableHeight = this.table.$el.clientHeight;
  2037. var footerHeight = this.footerHeight = footerWrapper ? footerWrapper.offsetHeight : 0;
  2038. if (this.height !== null) {
  2039. this.bodyHeight = tableHeight - headerHeight - footerHeight + (footerWrapper ? 1 : 0);
  2040. }
  2041. this.fixedBodyHeight = this.scrollX ? this.bodyHeight - this.gutterWidth : this.bodyHeight;
  2042. var noData = !(this.store.states.data && this.store.states.data.length);
  2043. this.viewportHeight = this.scrollX ? tableHeight - (noData ? 0 : this.gutterWidth) : tableHeight;
  2044. this.updateScrollY();
  2045. this.notifyObservers('scrollable');
  2046. };
  2047. TableLayout.prototype.headerDisplayNone = function headerDisplayNone(elm) {
  2048. if (!elm) return true;
  2049. var headerChild = elm;
  2050. while (headerChild.tagName !== 'DIV') {
  2051. if (getComputedStyle(headerChild).display === 'none') {
  2052. return true;
  2053. }
  2054. headerChild = headerChild.parentElement;
  2055. }
  2056. return false;
  2057. };
  2058. TableLayout.prototype.updateColumnsWidth = function updateColumnsWidth() {
  2059. if (external_vue_default.a.prototype.$isServer) return;
  2060. var fit = this.fit;
  2061. var bodyWidth = this.table.$el.clientWidth;
  2062. var bodyMinWidth = 0;
  2063. var flattenColumns = this.getFlattenColumns();
  2064. var flexColumns = flattenColumns.filter(function (column) {
  2065. return typeof column.width !== 'number';
  2066. });
  2067. flattenColumns.forEach(function (column) {
  2068. // Clean those columns whose width changed from flex to unflex
  2069. if (typeof column.width === 'number' && column.realWidth) column.realWidth = null;
  2070. });
  2071. if (flexColumns.length > 0 && fit) {
  2072. flattenColumns.forEach(function (column) {
  2073. bodyMinWidth += column.width || column.minWidth || 80;
  2074. });
  2075. var scrollYWidth = this.scrollY ? this.gutterWidth : 0;
  2076. if (bodyMinWidth <= bodyWidth - scrollYWidth) {
  2077. // DON'T HAVE SCROLL BAR
  2078. this.scrollX = false;
  2079. var totalFlexWidth = bodyWidth - scrollYWidth - bodyMinWidth;
  2080. if (flexColumns.length === 1) {
  2081. flexColumns[0].realWidth = (flexColumns[0].minWidth || 80) + totalFlexWidth;
  2082. } else {
  2083. var allColumnsWidth = flexColumns.reduce(function (prev, column) {
  2084. return prev + (column.minWidth || 80);
  2085. }, 0);
  2086. var flexWidthPerPixel = totalFlexWidth / allColumnsWidth;
  2087. var noneFirstWidth = 0;
  2088. flexColumns.forEach(function (column, index) {
  2089. if (index === 0) return;
  2090. var flexWidth = Math.floor((column.minWidth || 80) * flexWidthPerPixel);
  2091. noneFirstWidth += flexWidth;
  2092. column.realWidth = (column.minWidth || 80) + flexWidth;
  2093. });
  2094. flexColumns[0].realWidth = (flexColumns[0].minWidth || 80) + totalFlexWidth - noneFirstWidth;
  2095. }
  2096. } else {
  2097. // HAVE HORIZONTAL SCROLL BAR
  2098. this.scrollX = true;
  2099. flexColumns.forEach(function (column) {
  2100. column.realWidth = column.minWidth;
  2101. });
  2102. }
  2103. this.bodyWidth = Math.max(bodyMinWidth, bodyWidth);
  2104. this.table.resizeState.width = this.bodyWidth;
  2105. } else {
  2106. flattenColumns.forEach(function (column) {
  2107. if (!column.width && !column.minWidth) {
  2108. column.realWidth = 80;
  2109. } else {
  2110. column.realWidth = column.width || column.minWidth;
  2111. }
  2112. bodyMinWidth += column.realWidth;
  2113. });
  2114. this.scrollX = bodyMinWidth > bodyWidth;
  2115. this.bodyWidth = bodyMinWidth;
  2116. }
  2117. var fixedColumns = this.store.states.fixedColumns;
  2118. if (fixedColumns.length > 0) {
  2119. var fixedWidth = 0;
  2120. fixedColumns.forEach(function (column) {
  2121. fixedWidth += column.realWidth || column.width;
  2122. });
  2123. this.fixedWidth = fixedWidth;
  2124. }
  2125. var rightFixedColumns = this.store.states.rightFixedColumns;
  2126. if (rightFixedColumns.length > 0) {
  2127. var rightFixedWidth = 0;
  2128. rightFixedColumns.forEach(function (column) {
  2129. rightFixedWidth += column.realWidth || column.width;
  2130. });
  2131. this.rightFixedWidth = rightFixedWidth;
  2132. }
  2133. this.notifyObservers('columns');
  2134. };
  2135. TableLayout.prototype.addObserver = function addObserver(observer) {
  2136. this.observers.push(observer);
  2137. };
  2138. TableLayout.prototype.removeObserver = function removeObserver(observer) {
  2139. var index = this.observers.indexOf(observer);
  2140. if (index !== -1) {
  2141. this.observers.splice(index, 1);
  2142. }
  2143. };
  2144. TableLayout.prototype.notifyObservers = function notifyObservers(event) {
  2145. var _this3 = this;
  2146. var observers = this.observers;
  2147. observers.forEach(function (observer) {
  2148. switch (event) {
  2149. case 'columns':
  2150. observer.onColumnsChange(_this3);
  2151. break;
  2152. case 'scrollable':
  2153. observer.onScrollableChange(_this3);
  2154. break;
  2155. default:
  2156. throw new Error('Table Layout don\'t have event ' + event + '.');
  2157. }
  2158. });
  2159. };
  2160. return TableLayout;
  2161. }();
  2162. /* harmony default export */ var table_layout = (table_layout_TableLayout);
  2163. // EXTERNAL MODULE: external "element-ui/lib/utils/dom"
  2164. var dom_ = __webpack_require__(2);
  2165. // EXTERNAL MODULE: external "element-ui/lib/tooltip"
  2166. var tooltip_ = __webpack_require__(29);
  2167. var tooltip_default = /*#__PURE__*/__webpack_require__.n(tooltip_);
  2168. // CONCATENATED MODULE: ./packages/table/src/layout-observer.js
  2169. /* harmony default export */ var layout_observer = ({
  2170. created: function created() {
  2171. this.tableLayout.addObserver(this);
  2172. },
  2173. destroyed: function destroyed() {
  2174. this.tableLayout.removeObserver(this);
  2175. },
  2176. computed: {
  2177. tableLayout: function tableLayout() {
  2178. var layout = this.layout;
  2179. if (!layout && this.table) {
  2180. layout = this.table.layout;
  2181. }
  2182. if (!layout) {
  2183. throw new Error('Can not find table layout.');
  2184. }
  2185. return layout;
  2186. }
  2187. },
  2188. mounted: function mounted() {
  2189. this.onColumnsChange(this.tableLayout);
  2190. this.onScrollableChange(this.tableLayout);
  2191. },
  2192. updated: function updated() {
  2193. if (this.__updated__) return;
  2194. this.onColumnsChange(this.tableLayout);
  2195. this.onScrollableChange(this.tableLayout);
  2196. this.__updated__ = true;
  2197. },
  2198. methods: {
  2199. onColumnsChange: function onColumnsChange(layout) {
  2200. var cols = this.$el.querySelectorAll('colgroup > col');
  2201. if (!cols.length) return;
  2202. var flattenColumns = layout.getFlattenColumns();
  2203. var columnsMap = {};
  2204. flattenColumns.forEach(function (column) {
  2205. columnsMap[column.id] = column;
  2206. });
  2207. for (var i = 0, j = cols.length; i < j; i++) {
  2208. var col = cols[i];
  2209. var name = col.getAttribute('name');
  2210. var column = columnsMap[name];
  2211. if (column) {
  2212. col.setAttribute('width', column.realWidth || column.width);
  2213. }
  2214. }
  2215. },
  2216. onScrollableChange: function onScrollableChange(layout) {
  2217. var cols = this.$el.querySelectorAll('colgroup > col[name=gutter]');
  2218. for (var i = 0, j = cols.length; i < j; i++) {
  2219. var col = cols[i];
  2220. col.setAttribute('width', layout.scrollY ? layout.gutterWidth : '0');
  2221. }
  2222. var ths = this.$el.querySelectorAll('th.gutter');
  2223. for (var _i = 0, _j = ths.length; _i < _j; _i++) {
  2224. var th = ths[_i];
  2225. th.style.width = layout.scrollY ? layout.gutterWidth + 'px' : '0';
  2226. th.style.display = layout.scrollY ? '' : 'none';
  2227. }
  2228. }
  2229. }
  2230. });
  2231. // CONCATENATED MODULE: ./packages/table/src/table-row.js
  2232. var table_row_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  2233. /* harmony default export */ var table_row = ({
  2234. name: 'ElTableRow',
  2235. props: ['columns', 'row', 'index', 'isSelected', 'isExpanded', 'store', 'context', 'firstDefaultColumnIndex', 'treeRowData', 'treeIndent', 'columnsHidden', 'getSpan', 'getColspanRealWidth', 'getCellStyle', 'getCellClass', 'handleCellMouseLeave', 'handleCellMouseEnter', 'fixed'],
  2236. components: {
  2237. ElCheckbox: checkbox_default.a
  2238. },
  2239. render: function render() {
  2240. var _this = this;
  2241. var h = arguments[0];
  2242. var columns = this.columns,
  2243. row = this.row,
  2244. $index = this.index,
  2245. store = this.store,
  2246. context = this.context,
  2247. firstDefaultColumnIndex = this.firstDefaultColumnIndex,
  2248. treeRowData = this.treeRowData,
  2249. treeIndent = this.treeIndent,
  2250. _columnsHidden = this.columnsHidden,
  2251. columnsHidden = _columnsHidden === undefined ? [] : _columnsHidden,
  2252. isSelected = this.isSelected,
  2253. isExpanded = this.isExpanded;
  2254. return h('tr', [columns.map(function (column, cellIndex) {
  2255. var _getSpan = _this.getSpan(row, column, $index, cellIndex),
  2256. rowspan = _getSpan.rowspan,
  2257. colspan = _getSpan.colspan;
  2258. if (!rowspan || !colspan) {
  2259. return null;
  2260. }
  2261. var columnData = table_row_extends({}, column);
  2262. columnData.realWidth = _this.getColspanRealWidth(columns, colspan, cellIndex);
  2263. var data = {
  2264. store: store,
  2265. isSelected: isSelected,
  2266. isExpanded: isExpanded,
  2267. _self: context,
  2268. column: columnData,
  2269. row: row,
  2270. $index: $index
  2271. };
  2272. if (cellIndex === firstDefaultColumnIndex && treeRowData) {
  2273. data.treeNode = {
  2274. indent: treeRowData.level * treeIndent,
  2275. level: treeRowData.level
  2276. };
  2277. if (typeof treeRowData.expanded === 'boolean') {
  2278. data.treeNode.expanded = treeRowData.expanded;
  2279. // 表明是懒加载
  2280. if ('loading' in treeRowData) {
  2281. data.treeNode.loading = treeRowData.loading;
  2282. }
  2283. if ('noLazyChildren' in treeRowData) {
  2284. data.treeNode.noLazyChildren = treeRowData.noLazyChildren;
  2285. }
  2286. }
  2287. }
  2288. return h(
  2289. 'td',
  2290. {
  2291. style: _this.getCellStyle($index, cellIndex, row, column),
  2292. 'class': _this.getCellClass($index, cellIndex, row, column),
  2293. attrs: { rowspan: rowspan,
  2294. colspan: colspan
  2295. },
  2296. on: {
  2297. 'mouseenter': function mouseenter($event) {
  2298. return _this.handleCellMouseEnter($event, row);
  2299. },
  2300. 'mouseleave': _this.handleCellMouseLeave
  2301. }
  2302. },
  2303. [column.renderCell.call(_this._renderProxy, _this.$createElement, data, columnsHidden[cellIndex])]
  2304. );
  2305. })]);
  2306. }
  2307. });
  2308. // CONCATENATED MODULE: ./packages/table/src/table-body.js
  2309. var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
  2310. var table_body_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  2311. /* harmony default export */ var table_body = ({
  2312. name: 'ElTableBody',
  2313. mixins: [layout_observer],
  2314. components: {
  2315. ElCheckbox: checkbox_default.a,
  2316. ElTooltip: tooltip_default.a,
  2317. TableRow: table_row
  2318. },
  2319. props: {
  2320. store: {
  2321. required: true
  2322. },
  2323. stripe: Boolean,
  2324. context: {},
  2325. rowClassName: [String, Function],
  2326. rowStyle: [Object, Function],
  2327. fixed: String,
  2328. highlight: Boolean
  2329. },
  2330. render: function render(h) {
  2331. var _this = this;
  2332. var data = this.data || [];
  2333. return h(
  2334. 'table',
  2335. {
  2336. 'class': 'el-table__body',
  2337. attrs: { cellspacing: '0',
  2338. cellpadding: '0',
  2339. border: '0' }
  2340. },
  2341. [h('colgroup', [this.columns.map(function (column) {
  2342. return h('col', {
  2343. attrs: { name: column.id },
  2344. key: column.id });
  2345. })]), h('tbody', [data.reduce(function (acc, row) {
  2346. return acc.concat(_this.wrappedRowRender(row, acc.length));
  2347. }, []), h('el-tooltip', {
  2348. attrs: { effect: this.table.tooltipEffect, placement: 'top', content: this.tooltipContent },
  2349. ref: 'tooltip' })])]
  2350. );
  2351. },
  2352. computed: table_body_extends({
  2353. table: function table() {
  2354. return this.$parent;
  2355. }
  2356. }, mapStates({
  2357. data: 'data',
  2358. columns: 'columns',
  2359. treeIndent: 'indent',
  2360. leftFixedLeafCount: 'fixedLeafColumnsLength',
  2361. rightFixedLeafCount: 'rightFixedLeafColumnsLength',
  2362. columnsCount: function columnsCount(states) {
  2363. return states.columns.length;
  2364. },
  2365. leftFixedCount: function leftFixedCount(states) {
  2366. return states.fixedColumns.length;
  2367. },
  2368. rightFixedCount: function rightFixedCount(states) {
  2369. return states.rightFixedColumns.length;
  2370. },
  2371. hasExpandColumn: function hasExpandColumn(states) {
  2372. return states.columns.some(function (_ref) {
  2373. var type = _ref.type;
  2374. return type === 'expand';
  2375. });
  2376. }
  2377. }), {
  2378. columnsHidden: function columnsHidden() {
  2379. var _this2 = this;
  2380. return this.columns.map(function (column, index) {
  2381. return _this2.isColumnHidden(index);
  2382. });
  2383. },
  2384. firstDefaultColumnIndex: function firstDefaultColumnIndex() {
  2385. return Object(util_["arrayFindIndex"])(this.columns, function (_ref2) {
  2386. var type = _ref2.type;
  2387. return type === 'default';
  2388. });
  2389. }
  2390. }),
  2391. watch: {
  2392. // don't trigger getter of currentRow in getCellClass. see https://jsfiddle.net/oe2b4hqt/
  2393. // update DOM manually. see https://github.com/ElemeFE/element/pull/13954/files#diff-9b450c00d0a9dec0ffad5a3176972e40
  2394. 'store.states.hoverRow': function storeStatesHoverRow(newVal, oldVal) {
  2395. var _this3 = this;
  2396. if (!this.store.states.isComplex || this.$isServer) return;
  2397. var raf = window.requestAnimationFrame;
  2398. if (!raf) {
  2399. raf = function raf(fn) {
  2400. return setTimeout(fn, 16);
  2401. };
  2402. }
  2403. raf(function () {
  2404. var rows = _this3.$el.querySelectorAll('.el-table__row');
  2405. var oldRow = rows[oldVal];
  2406. var newRow = rows[newVal];
  2407. if (oldRow) {
  2408. Object(dom_["removeClass"])(oldRow, 'hover-row');
  2409. }
  2410. if (newRow) {
  2411. Object(dom_["addClass"])(newRow, 'hover-row');
  2412. }
  2413. });
  2414. }
  2415. },
  2416. data: function data() {
  2417. return {
  2418. tooltipContent: ''
  2419. };
  2420. },
  2421. created: function created() {
  2422. this.activateTooltip = debounce_default()(50, function (tooltip) {
  2423. return tooltip.handleShowPopper();
  2424. });
  2425. },
  2426. methods: {
  2427. getKeyOfRow: function getKeyOfRow(row, index) {
  2428. var rowKey = this.table.rowKey;
  2429. if (rowKey) {
  2430. return Object(util["g" /* getRowIdentity */])(row, rowKey);
  2431. }
  2432. return index;
  2433. },
  2434. isColumnHidden: function isColumnHidden(index) {
  2435. if (this.fixed === true || this.fixed === 'left') {
  2436. return index >= this.leftFixedLeafCount;
  2437. } else if (this.fixed === 'right') {
  2438. return index < this.columnsCount - this.rightFixedLeafCount;
  2439. } else {
  2440. return index < this.leftFixedLeafCount || index >= this.columnsCount - this.rightFixedLeafCount;
  2441. }
  2442. },
  2443. getSpan: function getSpan(row, column, rowIndex, columnIndex) {
  2444. var rowspan = 1;
  2445. var colspan = 1;
  2446. var fn = this.table.spanMethod;
  2447. if (typeof fn === 'function') {
  2448. var result = fn({
  2449. row: row,
  2450. column: column,
  2451. rowIndex: rowIndex,
  2452. columnIndex: columnIndex
  2453. });
  2454. if (Array.isArray(result)) {
  2455. rowspan = result[0];
  2456. colspan = result[1];
  2457. } else if ((typeof result === 'undefined' ? 'undefined' : _typeof(result)) === 'object') {
  2458. rowspan = result.rowspan;
  2459. colspan = result.colspan;
  2460. }
  2461. }
  2462. return { rowspan: rowspan, colspan: colspan };
  2463. },
  2464. getRowStyle: function getRowStyle(row, rowIndex) {
  2465. var rowStyle = this.table.rowStyle;
  2466. if (typeof rowStyle === 'function') {
  2467. return rowStyle.call(null, {
  2468. row: row,
  2469. rowIndex: rowIndex
  2470. });
  2471. }
  2472. return rowStyle || null;
  2473. },
  2474. getRowClass: function getRowClass(row, rowIndex) {
  2475. var classes = ['el-table__row'];
  2476. if (this.table.highlightCurrentRow && row === this.store.states.currentRow) {
  2477. classes.push('current-row');
  2478. }
  2479. if (this.stripe && rowIndex % 2 === 1) {
  2480. classes.push('el-table__row--striped');
  2481. }
  2482. var rowClassName = this.table.rowClassName;
  2483. if (typeof rowClassName === 'string') {
  2484. classes.push(rowClassName);
  2485. } else if (typeof rowClassName === 'function') {
  2486. classes.push(rowClassName.call(null, {
  2487. row: row,
  2488. rowIndex: rowIndex
  2489. }));
  2490. }
  2491. if (this.store.states.expandRows.indexOf(row) > -1) {
  2492. classes.push('expanded');
  2493. }
  2494. return classes;
  2495. },
  2496. getCellStyle: function getCellStyle(rowIndex, columnIndex, row, column) {
  2497. var cellStyle = this.table.cellStyle;
  2498. if (typeof cellStyle === 'function') {
  2499. return cellStyle.call(null, {
  2500. rowIndex: rowIndex,
  2501. columnIndex: columnIndex,
  2502. row: row,
  2503. column: column
  2504. });
  2505. }
  2506. return cellStyle;
  2507. },
  2508. getCellClass: function getCellClass(rowIndex, columnIndex, row, column) {
  2509. var classes = [column.id, column.align, column.className];
  2510. if (this.isColumnHidden(columnIndex)) {
  2511. classes.push('is-hidden');
  2512. }
  2513. var cellClassName = this.table.cellClassName;
  2514. if (typeof cellClassName === 'string') {
  2515. classes.push(cellClassName);
  2516. } else if (typeof cellClassName === 'function') {
  2517. classes.push(cellClassName.call(null, {
  2518. rowIndex: rowIndex,
  2519. columnIndex: columnIndex,
  2520. row: row,
  2521. column: column
  2522. }));
  2523. }
  2524. classes.push('el-table__cell');
  2525. return classes.join(' ');
  2526. },
  2527. getColspanRealWidth: function getColspanRealWidth(columns, colspan, index) {
  2528. if (colspan < 1) {
  2529. return columns[index].realWidth;
  2530. }
  2531. var widthArr = columns.map(function (_ref3) {
  2532. var realWidth = _ref3.realWidth;
  2533. return realWidth;
  2534. }).slice(index, index + colspan);
  2535. return widthArr.reduce(function (acc, width) {
  2536. return acc + width;
  2537. }, -1);
  2538. },
  2539. handleCellMouseEnter: function handleCellMouseEnter(event, row) {
  2540. var table = this.table;
  2541. var cell = Object(util["b" /* getCell */])(event);
  2542. if (cell) {
  2543. var column = Object(util["c" /* getColumnByCell */])(table, cell);
  2544. var hoverState = table.hoverState = { cell: cell, column: column, row: row };
  2545. table.$emit('cell-mouse-enter', hoverState.row, hoverState.column, hoverState.cell, event);
  2546. }
  2547. // 判断是否text-overflow, 如果是就显示tooltip
  2548. var cellChild = event.target.querySelector('.cell');
  2549. if (!(Object(dom_["hasClass"])(cellChild, 'el-tooltip') && cellChild.childNodes.length)) {
  2550. return;
  2551. }
  2552. // use range width instead of scrollWidth to determine whether the text is overflowing
  2553. // to address a potential FireFox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1074543#c3
  2554. var range = document.createRange();
  2555. range.setStart(cellChild, 0);
  2556. range.setEnd(cellChild, cellChild.childNodes.length);
  2557. var rangeWidth = range.getBoundingClientRect().width;
  2558. var padding = (parseInt(Object(dom_["getStyle"])(cellChild, 'paddingLeft'), 10) || 0) + (parseInt(Object(dom_["getStyle"])(cellChild, 'paddingRight'), 10) || 0);
  2559. if ((rangeWidth + padding > cellChild.offsetWidth || cellChild.scrollWidth > cellChild.offsetWidth) && this.$refs.tooltip) {
  2560. var tooltip = this.$refs.tooltip;
  2561. // TODO 会引起整个 Table 的重新渲染,需要优化
  2562. this.tooltipContent = cell.innerText || cell.textContent;
  2563. tooltip.referenceElm = cell;
  2564. tooltip.$refs.popper && (tooltip.$refs.popper.style.display = 'none');
  2565. tooltip.doDestroy();
  2566. tooltip.setExpectedState(true);
  2567. this.activateTooltip(tooltip);
  2568. }
  2569. },
  2570. handleCellMouseLeave: function handleCellMouseLeave(event) {
  2571. var tooltip = this.$refs.tooltip;
  2572. if (tooltip) {
  2573. tooltip.setExpectedState(false);
  2574. tooltip.handleClosePopper();
  2575. }
  2576. var cell = Object(util["b" /* getCell */])(event);
  2577. if (!cell) return;
  2578. var oldHoverState = this.table.hoverState || {};
  2579. this.table.$emit('cell-mouse-leave', oldHoverState.row, oldHoverState.column, oldHoverState.cell, event);
  2580. },
  2581. handleMouseEnter: debounce_default()(30, function (index) {
  2582. this.store.commit('setHoverRow', index);
  2583. }),
  2584. handleMouseLeave: debounce_default()(30, function () {
  2585. this.store.commit('setHoverRow', null);
  2586. }),
  2587. handleContextMenu: function handleContextMenu(event, row) {
  2588. this.handleEvent(event, row, 'contextmenu');
  2589. },
  2590. handleDoubleClick: function handleDoubleClick(event, row) {
  2591. this.handleEvent(event, row, 'dblclick');
  2592. },
  2593. handleClick: function handleClick(event, row) {
  2594. this.store.commit('setCurrentRow', row);
  2595. this.handleEvent(event, row, 'click');
  2596. },
  2597. handleEvent: function handleEvent(event, row, name) {
  2598. var table = this.table;
  2599. var cell = Object(util["b" /* getCell */])(event);
  2600. var column = void 0;
  2601. if (cell) {
  2602. column = Object(util["c" /* getColumnByCell */])(table, cell);
  2603. if (column) {
  2604. table.$emit('cell-' + name, row, column, cell, event);
  2605. }
  2606. }
  2607. table.$emit('row-' + name, row, column, event);
  2608. },
  2609. rowRender: function rowRender(row, $index, treeRowData) {
  2610. var _this4 = this;
  2611. var h = this.$createElement;
  2612. var treeIndent = this.treeIndent,
  2613. columns = this.columns,
  2614. firstDefaultColumnIndex = this.firstDefaultColumnIndex;
  2615. var rowClasses = this.getRowClass(row, $index);
  2616. var display = true;
  2617. if (treeRowData) {
  2618. rowClasses.push('el-table__row--level-' + treeRowData.level);
  2619. display = treeRowData.display;
  2620. }
  2621. // 指令 v-show 会覆盖 row-style 中 display
  2622. // 使用 :style 代替 v-show https://github.com/ElemeFE/element/issues/16995
  2623. var displayStyle = display ? null : {
  2624. display: 'none'
  2625. };
  2626. return h(table_row, {
  2627. style: [displayStyle, this.getRowStyle(row, $index)],
  2628. 'class': rowClasses,
  2629. key: this.getKeyOfRow(row, $index),
  2630. nativeOn: {
  2631. 'dblclick': function dblclick($event) {
  2632. return _this4.handleDoubleClick($event, row);
  2633. },
  2634. 'click': function click($event) {
  2635. return _this4.handleClick($event, row);
  2636. },
  2637. 'contextmenu': function contextmenu($event) {
  2638. return _this4.handleContextMenu($event, row);
  2639. },
  2640. 'mouseenter': function mouseenter(_) {
  2641. return _this4.handleMouseEnter($index);
  2642. },
  2643. 'mouseleave': this.handleMouseLeave
  2644. },
  2645. attrs: {
  2646. columns: columns,
  2647. row: row,
  2648. index: $index,
  2649. store: this.store,
  2650. context: this.context || this.table.$vnode.context,
  2651. firstDefaultColumnIndex: firstDefaultColumnIndex,
  2652. treeRowData: treeRowData,
  2653. treeIndent: treeIndent,
  2654. columnsHidden: this.columnsHidden,
  2655. getSpan: this.getSpan,
  2656. getColspanRealWidth: this.getColspanRealWidth,
  2657. getCellStyle: this.getCellStyle,
  2658. getCellClass: this.getCellClass,
  2659. handleCellMouseEnter: this.handleCellMouseEnter,
  2660. handleCellMouseLeave: this.handleCellMouseLeave,
  2661. isSelected: this.store.isSelected(row),
  2662. isExpanded: this.store.states.expandRows.indexOf(row) > -1,
  2663. fixed: this.fixed
  2664. }
  2665. });
  2666. },
  2667. wrappedRowRender: function wrappedRowRender(row, $index) {
  2668. var _this5 = this;
  2669. var h = this.$createElement;
  2670. var store = this.store;
  2671. var isRowExpanded = store.isRowExpanded,
  2672. assertRowKey = store.assertRowKey;
  2673. var _store$states = store.states,
  2674. treeData = _store$states.treeData,
  2675. lazyTreeNodeMap = _store$states.lazyTreeNodeMap,
  2676. childrenColumnName = _store$states.childrenColumnName,
  2677. rowKey = _store$states.rowKey;
  2678. if (this.hasExpandColumn && isRowExpanded(row)) {
  2679. var renderExpanded = this.table.renderExpanded;
  2680. var tr = this.rowRender(row, $index);
  2681. if (!renderExpanded) {
  2682. console.error('[Element Error]renderExpanded is required.');
  2683. return tr;
  2684. }
  2685. // 使用二维数组,避免修改 $index
  2686. return [[tr, h(
  2687. 'tr',
  2688. { key: 'expanded-row__' + tr.key },
  2689. [h(
  2690. 'td',
  2691. {
  2692. attrs: { colspan: this.columnsCount },
  2693. 'class': 'el-table__cell el-table__expanded-cell' },
  2694. [renderExpanded(this.$createElement, { row: row, $index: $index, store: this.store })]
  2695. )]
  2696. )]];
  2697. } else if (Object.keys(treeData).length) {
  2698. assertRowKey();
  2699. // TreeTable 时,rowKey 必须由用户设定,不使用 getKeyOfRow 计算
  2700. // 在调用 rowRender 函数时,仍然会计算 rowKey,不太好的操作
  2701. var key = Object(util["g" /* getRowIdentity */])(row, rowKey);
  2702. var cur = treeData[key];
  2703. var treeRowData = null;
  2704. if (cur) {
  2705. treeRowData = {
  2706. expanded: cur.expanded,
  2707. level: cur.level,
  2708. display: true
  2709. };
  2710. if (typeof cur.lazy === 'boolean') {
  2711. if (typeof cur.loaded === 'boolean' && cur.loaded) {
  2712. treeRowData.noLazyChildren = !(cur.children && cur.children.length);
  2713. }
  2714. treeRowData.loading = cur.loading;
  2715. }
  2716. }
  2717. var tmp = [this.rowRender(row, $index, treeRowData)];
  2718. // 渲染嵌套数据
  2719. if (cur) {
  2720. // currentRow 记录的是 index,所以还需主动增加 TreeTable 的 index
  2721. var i = 0;
  2722. var traverse = function traverse(children, parent) {
  2723. if (!(children && children.length && parent)) return;
  2724. children.forEach(function (node) {
  2725. // 父节点的 display 状态影响子节点的显示状态
  2726. var innerTreeRowData = {
  2727. display: parent.display && parent.expanded,
  2728. level: parent.level + 1
  2729. };
  2730. var childKey = Object(util["g" /* getRowIdentity */])(node, rowKey);
  2731. if (childKey === undefined || childKey === null) {
  2732. throw new Error('for nested data item, row-key is required.');
  2733. }
  2734. cur = table_body_extends({}, treeData[childKey]);
  2735. // 对于当前节点,分成有无子节点两种情况。
  2736. // 如果包含子节点的,设置 expanded 属性。
  2737. // 对于它子节点的 display 属性由它本身的 expanded 与 display 共同决定。
  2738. if (cur) {
  2739. innerTreeRowData.expanded = cur.expanded;
  2740. // 懒加载的某些节点,level 未知
  2741. cur.level = cur.level || innerTreeRowData.level;
  2742. cur.display = !!(cur.expanded && innerTreeRowData.display);
  2743. if (typeof cur.lazy === 'boolean') {
  2744. if (typeof cur.loaded === 'boolean' && cur.loaded) {
  2745. innerTreeRowData.noLazyChildren = !(cur.children && cur.children.length);
  2746. }
  2747. innerTreeRowData.loading = cur.loading;
  2748. }
  2749. }
  2750. i++;
  2751. tmp.push(_this5.rowRender(node, $index + i, innerTreeRowData));
  2752. if (cur) {
  2753. var _nodes = lazyTreeNodeMap[childKey] || node[childrenColumnName];
  2754. traverse(_nodes, cur);
  2755. }
  2756. });
  2757. };
  2758. // 对于 root 节点,display 一定为 true
  2759. cur.display = true;
  2760. var nodes = lazyTreeNodeMap[key] || row[childrenColumnName];
  2761. traverse(nodes, cur);
  2762. }
  2763. return tmp;
  2764. } else {
  2765. return this.rowRender(row, $index);
  2766. }
  2767. }
  2768. }
  2769. });
  2770. // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/table/src/filter-panel.vue?vue&type=template&id=7f2c919f&
  2771. var filter_panelvue_type_template_id_7f2c919f_render = function() {
  2772. var _vm = this
  2773. var _h = _vm.$createElement
  2774. var _c = _vm._self._c || _h
  2775. return _c("transition", { attrs: { name: "el-zoom-in-top" } }, [
  2776. _vm.multiple
  2777. ? _c(
  2778. "div",
  2779. {
  2780. directives: [
  2781. {
  2782. name: "clickoutside",
  2783. rawName: "v-clickoutside",
  2784. value: _vm.handleOutsideClick,
  2785. expression: "handleOutsideClick"
  2786. },
  2787. {
  2788. name: "show",
  2789. rawName: "v-show",
  2790. value: _vm.showPopper,
  2791. expression: "showPopper"
  2792. }
  2793. ],
  2794. staticClass: "el-table-filter"
  2795. },
  2796. [
  2797. _c(
  2798. "div",
  2799. { staticClass: "el-table-filter__content" },
  2800. [
  2801. _c(
  2802. "el-scrollbar",
  2803. { attrs: { "wrap-class": "el-table-filter__wrap" } },
  2804. [
  2805. _c(
  2806. "el-checkbox-group",
  2807. {
  2808. staticClass: "el-table-filter__checkbox-group",
  2809. model: {
  2810. value: _vm.filteredValue,
  2811. callback: function($$v) {
  2812. _vm.filteredValue = $$v
  2813. },
  2814. expression: "filteredValue"
  2815. }
  2816. },
  2817. _vm._l(_vm.filters, function(filter) {
  2818. return _c(
  2819. "el-checkbox",
  2820. { key: filter.value, attrs: { label: filter.value } },
  2821. [_vm._v(_vm._s(filter.text))]
  2822. )
  2823. }),
  2824. 1
  2825. )
  2826. ],
  2827. 1
  2828. )
  2829. ],
  2830. 1
  2831. ),
  2832. _c("div", { staticClass: "el-table-filter__bottom" }, [
  2833. _c(
  2834. "button",
  2835. {
  2836. class: { "is-disabled": _vm.filteredValue.length === 0 },
  2837. attrs: { disabled: _vm.filteredValue.length === 0 },
  2838. on: { click: _vm.handleConfirm }
  2839. },
  2840. [_vm._v(_vm._s(_vm.t("el.table.confirmFilter")))]
  2841. ),
  2842. _c("button", { on: { click: _vm.handleReset } }, [
  2843. _vm._v(_vm._s(_vm.t("el.table.resetFilter")))
  2844. ])
  2845. ])
  2846. ]
  2847. )
  2848. : _c(
  2849. "div",
  2850. {
  2851. directives: [
  2852. {
  2853. name: "clickoutside",
  2854. rawName: "v-clickoutside",
  2855. value: _vm.handleOutsideClick,
  2856. expression: "handleOutsideClick"
  2857. },
  2858. {
  2859. name: "show",
  2860. rawName: "v-show",
  2861. value: _vm.showPopper,
  2862. expression: "showPopper"
  2863. }
  2864. ],
  2865. staticClass: "el-table-filter"
  2866. },
  2867. [
  2868. _c(
  2869. "ul",
  2870. { staticClass: "el-table-filter__list" },
  2871. [
  2872. _c(
  2873. "li",
  2874. {
  2875. staticClass: "el-table-filter__list-item",
  2876. class: {
  2877. "is-active":
  2878. _vm.filterValue === undefined ||
  2879. _vm.filterValue === null
  2880. },
  2881. on: {
  2882. click: function($event) {
  2883. _vm.handleSelect(null)
  2884. }
  2885. }
  2886. },
  2887. [_vm._v(_vm._s(_vm.t("el.table.clearFilter")))]
  2888. ),
  2889. _vm._l(_vm.filters, function(filter) {
  2890. return _c(
  2891. "li",
  2892. {
  2893. key: filter.value,
  2894. staticClass: "el-table-filter__list-item",
  2895. class: { "is-active": _vm.isActive(filter) },
  2896. attrs: { label: filter.value },
  2897. on: {
  2898. click: function($event) {
  2899. _vm.handleSelect(filter.value)
  2900. }
  2901. }
  2902. },
  2903. [_vm._v(_vm._s(filter.text))]
  2904. )
  2905. })
  2906. ],
  2907. 2
  2908. )
  2909. ]
  2910. )
  2911. ])
  2912. }
  2913. var filter_panelvue_type_template_id_7f2c919f_staticRenderFns = []
  2914. filter_panelvue_type_template_id_7f2c919f_render._withStripped = true
  2915. // CONCATENATED MODULE: ./packages/table/src/filter-panel.vue?vue&type=template&id=7f2c919f&
  2916. // EXTERNAL MODULE: external "element-ui/lib/utils/vue-popper"
  2917. var vue_popper_ = __webpack_require__(5);
  2918. var vue_popper_default = /*#__PURE__*/__webpack_require__.n(vue_popper_);
  2919. // EXTERNAL MODULE: external "element-ui/lib/utils/popup"
  2920. var popup_ = __webpack_require__(13);
  2921. // EXTERNAL MODULE: external "element-ui/lib/utils/clickoutside"
  2922. var clickoutside_ = __webpack_require__(12);
  2923. var clickoutside_default = /*#__PURE__*/__webpack_require__.n(clickoutside_);
  2924. // CONCATENATED MODULE: ./packages/table/src/dropdown.js
  2925. var dropdowns = [];
  2926. !external_vue_default.a.prototype.$isServer && document.addEventListener('click', function (event) {
  2927. dropdowns.forEach(function (dropdown) {
  2928. var target = event.target;
  2929. if (!dropdown || !dropdown.$el) return;
  2930. if (target === dropdown.$el || dropdown.$el.contains(target)) {
  2931. return;
  2932. }
  2933. dropdown.handleOutsideClick && dropdown.handleOutsideClick(event);
  2934. });
  2935. });
  2936. /* harmony default export */ var dropdown = ({
  2937. open: function open(instance) {
  2938. if (instance) {
  2939. dropdowns.push(instance);
  2940. }
  2941. },
  2942. close: function close(instance) {
  2943. var index = dropdowns.indexOf(instance);
  2944. if (index !== -1) {
  2945. dropdowns.splice(instance, 1);
  2946. }
  2947. }
  2948. });
  2949. // EXTERNAL MODULE: external "element-ui/lib/checkbox-group"
  2950. var checkbox_group_ = __webpack_require__(39);
  2951. var checkbox_group_default = /*#__PURE__*/__webpack_require__.n(checkbox_group_);
  2952. // EXTERNAL MODULE: external "element-ui/lib/scrollbar"
  2953. var scrollbar_ = __webpack_require__(15);
  2954. var scrollbar_default = /*#__PURE__*/__webpack_require__.n(scrollbar_);
  2955. // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/table/src/filter-panel.vue?vue&type=script&lang=js&
  2956. //
  2957. //
  2958. //
  2959. //
  2960. //
  2961. //
  2962. //
  2963. //
  2964. //
  2965. //
  2966. //
  2967. //
  2968. //
  2969. //
  2970. //
  2971. //
  2972. //
  2973. //
  2974. //
  2975. //
  2976. //
  2977. //
  2978. //
  2979. //
  2980. //
  2981. //
  2982. //
  2983. //
  2984. //
  2985. //
  2986. //
  2987. //
  2988. //
  2989. //
  2990. //
  2991. //
  2992. //
  2993. //
  2994. //
  2995. //
  2996. //
  2997. //
  2998. //
  2999. //
  3000. /* harmony default export */ var filter_panelvue_type_script_lang_js_ = ({
  3001. name: 'ElTableFilterPanel',
  3002. mixins: [vue_popper_default.a, locale_default.a],
  3003. directives: {
  3004. Clickoutside: clickoutside_default.a
  3005. },
  3006. components: {
  3007. ElCheckbox: checkbox_default.a,
  3008. ElCheckboxGroup: checkbox_group_default.a,
  3009. ElScrollbar: scrollbar_default.a
  3010. },
  3011. props: {
  3012. placement: {
  3013. type: String,
  3014. default: 'bottom-end'
  3015. }
  3016. },
  3017. methods: {
  3018. isActive: function isActive(filter) {
  3019. return filter.value === this.filterValue;
  3020. },
  3021. handleOutsideClick: function handleOutsideClick() {
  3022. var _this = this;
  3023. setTimeout(function () {
  3024. _this.showPopper = false;
  3025. }, 16);
  3026. },
  3027. handleConfirm: function handleConfirm() {
  3028. this.confirmFilter(this.filteredValue);
  3029. this.handleOutsideClick();
  3030. },
  3031. handleReset: function handleReset() {
  3032. this.filteredValue = [];
  3033. this.confirmFilter(this.filteredValue);
  3034. this.handleOutsideClick();
  3035. },
  3036. handleSelect: function handleSelect(filterValue) {
  3037. this.filterValue = filterValue;
  3038. if (typeof filterValue !== 'undefined' && filterValue !== null) {
  3039. this.confirmFilter(this.filteredValue);
  3040. } else {
  3041. this.confirmFilter([]);
  3042. }
  3043. this.handleOutsideClick();
  3044. },
  3045. confirmFilter: function confirmFilter(filteredValue) {
  3046. this.table.store.commit('filterChange', {
  3047. column: this.column,
  3048. values: filteredValue
  3049. });
  3050. this.table.store.updateAllSelected();
  3051. }
  3052. },
  3053. data: function data() {
  3054. return {
  3055. table: null,
  3056. cell: null,
  3057. column: null
  3058. };
  3059. },
  3060. computed: {
  3061. filters: function filters() {
  3062. return this.column && this.column.filters;
  3063. },
  3064. filterValue: {
  3065. get: function get() {
  3066. return (this.column.filteredValue || [])[0];
  3067. },
  3068. set: function set(value) {
  3069. if (this.filteredValue) {
  3070. if (typeof value !== 'undefined' && value !== null) {
  3071. this.filteredValue.splice(0, 1, value);
  3072. } else {
  3073. this.filteredValue.splice(0, 1);
  3074. }
  3075. }
  3076. }
  3077. },
  3078. filteredValue: {
  3079. get: function get() {
  3080. if (this.column) {
  3081. return this.column.filteredValue || [];
  3082. }
  3083. return [];
  3084. },
  3085. set: function set(value) {
  3086. if (this.column) {
  3087. this.column.filteredValue = value;
  3088. }
  3089. }
  3090. },
  3091. multiple: function multiple() {
  3092. if (this.column) {
  3093. return this.column.filterMultiple;
  3094. }
  3095. return true;
  3096. }
  3097. },
  3098. mounted: function mounted() {
  3099. var _this2 = this;
  3100. this.popperElm = this.$el;
  3101. this.referenceElm = this.cell;
  3102. this.table.bodyWrapper.addEventListener('scroll', function () {
  3103. _this2.updatePopper();
  3104. });
  3105. this.$watch('showPopper', function (value) {
  3106. if (_this2.column) _this2.column.filterOpened = value;
  3107. if (value) {
  3108. dropdown.open(_this2);
  3109. } else {
  3110. dropdown.close(_this2);
  3111. }
  3112. });
  3113. },
  3114. watch: {
  3115. showPopper: function showPopper(val) {
  3116. if (val === true && parseInt(this.popperJS._popper.style.zIndex, 10) < popup_["PopupManager"].zIndex) {
  3117. this.popperJS._popper.style.zIndex = popup_["PopupManager"].nextZIndex();
  3118. }
  3119. }
  3120. }
  3121. });
  3122. // CONCATENATED MODULE: ./packages/table/src/filter-panel.vue?vue&type=script&lang=js&
  3123. /* harmony default export */ var src_filter_panelvue_type_script_lang_js_ = (filter_panelvue_type_script_lang_js_);
  3124. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  3125. var componentNormalizer = __webpack_require__(0);
  3126. // CONCATENATED MODULE: ./packages/table/src/filter-panel.vue
  3127. /* normalize component */
  3128. var component = Object(componentNormalizer["a" /* default */])(
  3129. src_filter_panelvue_type_script_lang_js_,
  3130. filter_panelvue_type_template_id_7f2c919f_render,
  3131. filter_panelvue_type_template_id_7f2c919f_staticRenderFns,
  3132. false,
  3133. null,
  3134. null,
  3135. null
  3136. )
  3137. /* hot reload */
  3138. if (false) { var api; }
  3139. component.options.__file = "packages/table/src/filter-panel.vue"
  3140. /* harmony default export */ var filter_panel = (component.exports);
  3141. // CONCATENATED MODULE: ./packages/table/src/table-header.js
  3142. var table_header_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  3143. var getAllColumns = function getAllColumns(columns) {
  3144. var result = [];
  3145. columns.forEach(function (column) {
  3146. if (column.children) {
  3147. result.push(column);
  3148. result.push.apply(result, getAllColumns(column.children));
  3149. } else {
  3150. result.push(column);
  3151. }
  3152. });
  3153. return result;
  3154. };
  3155. var convertToRows = function convertToRows(originColumns) {
  3156. var maxLevel = 1;
  3157. var traverse = function traverse(column, parent) {
  3158. if (parent) {
  3159. column.level = parent.level + 1;
  3160. if (maxLevel < column.level) {
  3161. maxLevel = column.level;
  3162. }
  3163. }
  3164. if (column.children) {
  3165. var colSpan = 0;
  3166. column.children.forEach(function (subColumn) {
  3167. traverse(subColumn, column);
  3168. colSpan += subColumn.colSpan;
  3169. });
  3170. column.colSpan = colSpan;
  3171. } else {
  3172. column.colSpan = 1;
  3173. }
  3174. };
  3175. originColumns.forEach(function (column) {
  3176. column.level = 1;
  3177. traverse(column);
  3178. });
  3179. var rows = [];
  3180. for (var i = 0; i < maxLevel; i++) {
  3181. rows.push([]);
  3182. }
  3183. var allColumns = getAllColumns(originColumns);
  3184. allColumns.forEach(function (column) {
  3185. if (!column.children) {
  3186. column.rowSpan = maxLevel - column.level + 1;
  3187. } else {
  3188. column.rowSpan = 1;
  3189. }
  3190. rows[column.level - 1].push(column);
  3191. });
  3192. return rows;
  3193. };
  3194. /* harmony default export */ var table_header = ({
  3195. name: 'ElTableHeader',
  3196. mixins: [layout_observer],
  3197. render: function render(h) {
  3198. var _this = this;
  3199. var originColumns = this.store.states.originColumns;
  3200. var columnRows = convertToRows(originColumns, this.columns);
  3201. // 是否拥有多级表头
  3202. var isGroup = columnRows.length > 1;
  3203. if (isGroup) this.$parent.isGroup = true;
  3204. return h(
  3205. 'table',
  3206. {
  3207. 'class': 'el-table__header',
  3208. attrs: { cellspacing: '0',
  3209. cellpadding: '0',
  3210. border: '0' }
  3211. },
  3212. [h('colgroup', [this.columns.map(function (column) {
  3213. return h('col', {
  3214. attrs: { name: column.id },
  3215. key: column.id });
  3216. }), this.hasGutter ? h('col', {
  3217. attrs: { name: 'gutter' }
  3218. }) : '']), h(
  3219. 'thead',
  3220. { 'class': [{ 'is-group': isGroup, 'has-gutter': this.hasGutter }] },
  3221. [this._l(columnRows, function (columns, rowIndex) {
  3222. return h(
  3223. 'tr',
  3224. {
  3225. style: _this.getHeaderRowStyle(rowIndex),
  3226. 'class': _this.getHeaderRowClass(rowIndex)
  3227. },
  3228. [columns.map(function (column, cellIndex) {
  3229. return h(
  3230. 'th',
  3231. {
  3232. attrs: {
  3233. colspan: column.colSpan,
  3234. rowspan: column.rowSpan
  3235. },
  3236. on: {
  3237. 'mousemove': function mousemove($event) {
  3238. return _this.handleMouseMove($event, column);
  3239. },
  3240. 'mouseout': _this.handleMouseOut,
  3241. 'mousedown': function mousedown($event) {
  3242. return _this.handleMouseDown($event, column);
  3243. },
  3244. 'click': function click($event) {
  3245. return _this.handleHeaderClick($event, column);
  3246. },
  3247. 'contextmenu': function contextmenu($event) {
  3248. return _this.handleHeaderContextMenu($event, column);
  3249. }
  3250. },
  3251. style: _this.getHeaderCellStyle(rowIndex, cellIndex, columns, column),
  3252. 'class': _this.getHeaderCellClass(rowIndex, cellIndex, columns, column),
  3253. key: column.id },
  3254. [h(
  3255. 'div',
  3256. { 'class': ['cell', column.filteredValue && column.filteredValue.length > 0 ? 'highlight' : '', column.labelClassName] },
  3257. [column.renderHeader ? column.renderHeader.call(_this._renderProxy, h, { column: column, $index: cellIndex, store: _this.store, _self: _this.$parent.$vnode.context }) : column.label, column.sortable ? h(
  3258. 'span',
  3259. {
  3260. 'class': 'caret-wrapper',
  3261. on: {
  3262. 'click': function click($event) {
  3263. return _this.handleSortClick($event, column);
  3264. }
  3265. }
  3266. },
  3267. [h('i', { 'class': 'sort-caret ascending',
  3268. on: {
  3269. 'click': function click($event) {
  3270. return _this.handleSortClick($event, column, 'ascending');
  3271. }
  3272. }
  3273. }), h('i', { 'class': 'sort-caret descending',
  3274. on: {
  3275. 'click': function click($event) {
  3276. return _this.handleSortClick($event, column, 'descending');
  3277. }
  3278. }
  3279. })]
  3280. ) : '', column.filterable ? h(
  3281. 'span',
  3282. {
  3283. 'class': 'el-table__column-filter-trigger',
  3284. on: {
  3285. 'click': function click($event) {
  3286. return _this.handleFilterClick($event, column);
  3287. }
  3288. }
  3289. },
  3290. [h('i', { 'class': ['el-icon-arrow-down', column.filterOpened ? 'el-icon-arrow-up' : ''] })]
  3291. ) : '']
  3292. )]
  3293. );
  3294. }), _this.hasGutter ? h('th', { 'class': 'el-table__cell gutter' }) : '']
  3295. );
  3296. })]
  3297. )]
  3298. );
  3299. },
  3300. props: {
  3301. fixed: String,
  3302. store: {
  3303. required: true
  3304. },
  3305. border: Boolean,
  3306. defaultSort: {
  3307. type: Object,
  3308. default: function _default() {
  3309. return {
  3310. prop: '',
  3311. order: ''
  3312. };
  3313. }
  3314. }
  3315. },
  3316. components: {
  3317. ElCheckbox: checkbox_default.a
  3318. },
  3319. computed: table_header_extends({
  3320. table: function table() {
  3321. return this.$parent;
  3322. },
  3323. hasGutter: function hasGutter() {
  3324. return !this.fixed && this.tableLayout.gutterWidth;
  3325. }
  3326. }, mapStates({
  3327. columns: 'columns',
  3328. isAllSelected: 'isAllSelected',
  3329. leftFixedLeafCount: 'fixedLeafColumnsLength',
  3330. rightFixedLeafCount: 'rightFixedLeafColumnsLength',
  3331. columnsCount: function columnsCount(states) {
  3332. return states.columns.length;
  3333. },
  3334. leftFixedCount: function leftFixedCount(states) {
  3335. return states.fixedColumns.length;
  3336. },
  3337. rightFixedCount: function rightFixedCount(states) {
  3338. return states.rightFixedColumns.length;
  3339. }
  3340. })),
  3341. created: function created() {
  3342. this.filterPanels = {};
  3343. },
  3344. mounted: function mounted() {
  3345. var _this2 = this;
  3346. // nextTick 是有必要的 https://github.com/ElemeFE/element/pull/11311
  3347. this.$nextTick(function () {
  3348. var _defaultSort = _this2.defaultSort,
  3349. prop = _defaultSort.prop,
  3350. order = _defaultSort.order;
  3351. var init = true;
  3352. _this2.store.commit('sort', { prop: prop, order: order, init: init });
  3353. });
  3354. },
  3355. beforeDestroy: function beforeDestroy() {
  3356. var panels = this.filterPanels;
  3357. for (var prop in panels) {
  3358. if (panels.hasOwnProperty(prop) && panels[prop]) {
  3359. panels[prop].$destroy(true);
  3360. }
  3361. }
  3362. },
  3363. methods: {
  3364. isCellHidden: function isCellHidden(index, columns) {
  3365. var start = 0;
  3366. for (var i = 0; i < index; i++) {
  3367. start += columns[i].colSpan;
  3368. }
  3369. var after = start + columns[index].colSpan - 1;
  3370. if (this.fixed === true || this.fixed === 'left') {
  3371. return after >= this.leftFixedLeafCount;
  3372. } else if (this.fixed === 'right') {
  3373. return start < this.columnsCount - this.rightFixedLeafCount;
  3374. } else {
  3375. return after < this.leftFixedLeafCount || start >= this.columnsCount - this.rightFixedLeafCount;
  3376. }
  3377. },
  3378. getHeaderRowStyle: function getHeaderRowStyle(rowIndex) {
  3379. var headerRowStyle = this.table.headerRowStyle;
  3380. if (typeof headerRowStyle === 'function') {
  3381. return headerRowStyle.call(null, { rowIndex: rowIndex });
  3382. }
  3383. return headerRowStyle;
  3384. },
  3385. getHeaderRowClass: function getHeaderRowClass(rowIndex) {
  3386. var classes = [];
  3387. var headerRowClassName = this.table.headerRowClassName;
  3388. if (typeof headerRowClassName === 'string') {
  3389. classes.push(headerRowClassName);
  3390. } else if (typeof headerRowClassName === 'function') {
  3391. classes.push(headerRowClassName.call(null, { rowIndex: rowIndex }));
  3392. }
  3393. return classes.join(' ');
  3394. },
  3395. getHeaderCellStyle: function getHeaderCellStyle(rowIndex, columnIndex, row, column) {
  3396. var headerCellStyle = this.table.headerCellStyle;
  3397. if (typeof headerCellStyle === 'function') {
  3398. return headerCellStyle.call(null, {
  3399. rowIndex: rowIndex,
  3400. columnIndex: columnIndex,
  3401. row: row,
  3402. column: column
  3403. });
  3404. }
  3405. return headerCellStyle;
  3406. },
  3407. getHeaderCellClass: function getHeaderCellClass(rowIndex, columnIndex, row, column) {
  3408. var classes = [column.id, column.order, column.headerAlign, column.className, column.labelClassName];
  3409. if (rowIndex === 0 && this.isCellHidden(columnIndex, row)) {
  3410. classes.push('is-hidden');
  3411. }
  3412. if (!column.children) {
  3413. classes.push('is-leaf');
  3414. }
  3415. if (column.sortable) {
  3416. classes.push('is-sortable');
  3417. }
  3418. var headerCellClassName = this.table.headerCellClassName;
  3419. if (typeof headerCellClassName === 'string') {
  3420. classes.push(headerCellClassName);
  3421. } else if (typeof headerCellClassName === 'function') {
  3422. classes.push(headerCellClassName.call(null, {
  3423. rowIndex: rowIndex,
  3424. columnIndex: columnIndex,
  3425. row: row,
  3426. column: column
  3427. }));
  3428. }
  3429. classes.push('el-table__cell');
  3430. return classes.join(' ');
  3431. },
  3432. toggleAllSelection: function toggleAllSelection() {
  3433. this.store.commit('toggleAllSelection');
  3434. },
  3435. handleFilterClick: function handleFilterClick(event, column) {
  3436. event.stopPropagation();
  3437. var target = event.target;
  3438. var cell = target.tagName === 'TH' ? target : target.parentNode;
  3439. if (Object(dom_["hasClass"])(cell, 'noclick')) return;
  3440. cell = cell.querySelector('.el-table__column-filter-trigger') || cell;
  3441. var table = this.$parent;
  3442. var filterPanel = this.filterPanels[column.id];
  3443. if (filterPanel && column.filterOpened) {
  3444. filterPanel.showPopper = false;
  3445. return;
  3446. }
  3447. if (!filterPanel) {
  3448. filterPanel = new external_vue_default.a(filter_panel);
  3449. this.filterPanels[column.id] = filterPanel;
  3450. if (column.filterPlacement) {
  3451. filterPanel.placement = column.filterPlacement;
  3452. }
  3453. filterPanel.table = table;
  3454. filterPanel.cell = cell;
  3455. filterPanel.column = column;
  3456. !this.$isServer && filterPanel.$mount(document.createElement('div'));
  3457. }
  3458. setTimeout(function () {
  3459. filterPanel.showPopper = true;
  3460. }, 16);
  3461. },
  3462. handleHeaderClick: function handleHeaderClick(event, column) {
  3463. if (!column.filters && column.sortable) {
  3464. this.handleSortClick(event, column);
  3465. } else if (column.filterable && !column.sortable) {
  3466. this.handleFilterClick(event, column);
  3467. }
  3468. this.$parent.$emit('header-click', column, event);
  3469. },
  3470. handleHeaderContextMenu: function handleHeaderContextMenu(event, column) {
  3471. this.$parent.$emit('header-contextmenu', column, event);
  3472. },
  3473. handleMouseDown: function handleMouseDown(event, column) {
  3474. var _this3 = this;
  3475. if (this.$isServer) return;
  3476. if (column.children && column.children.length > 0) return;
  3477. /* istanbul ignore if */
  3478. if (this.draggingColumn && this.border) {
  3479. this.dragging = true;
  3480. this.$parent.resizeProxyVisible = true;
  3481. var table = this.$parent;
  3482. var tableEl = table.$el;
  3483. var tableLeft = tableEl.getBoundingClientRect().left;
  3484. var columnEl = this.$el.querySelector('th.' + column.id);
  3485. var columnRect = columnEl.getBoundingClientRect();
  3486. var minLeft = columnRect.left - tableLeft + 30;
  3487. Object(dom_["addClass"])(columnEl, 'noclick');
  3488. this.dragState = {
  3489. startMouseLeft: event.clientX,
  3490. startLeft: columnRect.right - tableLeft,
  3491. startColumnLeft: columnRect.left - tableLeft,
  3492. tableLeft: tableLeft
  3493. };
  3494. var resizeProxy = table.$refs.resizeProxy;
  3495. resizeProxy.style.left = this.dragState.startLeft + 'px';
  3496. document.onselectstart = function () {
  3497. return false;
  3498. };
  3499. document.ondragstart = function () {
  3500. return false;
  3501. };
  3502. var handleMouseMove = function handleMouseMove(event) {
  3503. var deltaLeft = event.clientX - _this3.dragState.startMouseLeft;
  3504. var proxyLeft = _this3.dragState.startLeft + deltaLeft;
  3505. resizeProxy.style.left = Math.max(minLeft, proxyLeft) + 'px';
  3506. };
  3507. var handleMouseUp = function handleMouseUp() {
  3508. if (_this3.dragging) {
  3509. var _dragState = _this3.dragState,
  3510. startColumnLeft = _dragState.startColumnLeft,
  3511. startLeft = _dragState.startLeft;
  3512. var finalLeft = parseInt(resizeProxy.style.left, 10);
  3513. var columnWidth = finalLeft - startColumnLeft;
  3514. column.width = column.realWidth = columnWidth;
  3515. table.$emit('header-dragend', column.width, startLeft - startColumnLeft, column, event);
  3516. _this3.store.scheduleLayout();
  3517. document.body.style.cursor = '';
  3518. _this3.dragging = false;
  3519. _this3.draggingColumn = null;
  3520. _this3.dragState = {};
  3521. table.resizeProxyVisible = false;
  3522. }
  3523. document.removeEventListener('mousemove', handleMouseMove);
  3524. document.removeEventListener('mouseup', handleMouseUp);
  3525. document.onselectstart = null;
  3526. document.ondragstart = null;
  3527. setTimeout(function () {
  3528. Object(dom_["removeClass"])(columnEl, 'noclick');
  3529. }, 0);
  3530. };
  3531. document.addEventListener('mousemove', handleMouseMove);
  3532. document.addEventListener('mouseup', handleMouseUp);
  3533. }
  3534. },
  3535. handleMouseMove: function handleMouseMove(event, column) {
  3536. if (column.children && column.children.length > 0) return;
  3537. var target = event.target;
  3538. while (target && target.tagName !== 'TH') {
  3539. target = target.parentNode;
  3540. }
  3541. if (!column || !column.resizable) return;
  3542. if (!this.dragging && this.border) {
  3543. var rect = target.getBoundingClientRect();
  3544. var bodyStyle = document.body.style;
  3545. if (rect.width > 12 && rect.right - event.pageX < 8) {
  3546. bodyStyle.cursor = 'col-resize';
  3547. if (Object(dom_["hasClass"])(target, 'is-sortable')) {
  3548. target.style.cursor = 'col-resize';
  3549. }
  3550. this.draggingColumn = column;
  3551. } else if (!this.dragging) {
  3552. bodyStyle.cursor = '';
  3553. if (Object(dom_["hasClass"])(target, 'is-sortable')) {
  3554. target.style.cursor = 'pointer';
  3555. }
  3556. this.draggingColumn = null;
  3557. }
  3558. }
  3559. },
  3560. handleMouseOut: function handleMouseOut() {
  3561. if (this.$isServer) return;
  3562. document.body.style.cursor = '';
  3563. },
  3564. toggleOrder: function toggleOrder(_ref) {
  3565. var order = _ref.order,
  3566. sortOrders = _ref.sortOrders;
  3567. if (order === '') return sortOrders[0];
  3568. var index = sortOrders.indexOf(order || null);
  3569. return sortOrders[index > sortOrders.length - 2 ? 0 : index + 1];
  3570. },
  3571. handleSortClick: function handleSortClick(event, column, givenOrder) {
  3572. event.stopPropagation();
  3573. var order = column.order === givenOrder ? null : givenOrder || this.toggleOrder(column);
  3574. var target = event.target;
  3575. while (target && target.tagName !== 'TH') {
  3576. target = target.parentNode;
  3577. }
  3578. if (target && target.tagName === 'TH') {
  3579. if (Object(dom_["hasClass"])(target, 'noclick')) {
  3580. Object(dom_["removeClass"])(target, 'noclick');
  3581. return;
  3582. }
  3583. }
  3584. if (!column.sortable) return;
  3585. var states = this.store.states;
  3586. var sortProp = states.sortProp;
  3587. var sortOrder = void 0;
  3588. var sortingColumn = states.sortingColumn;
  3589. if (sortingColumn !== column || sortingColumn === column && sortingColumn.order === null) {
  3590. if (sortingColumn) {
  3591. sortingColumn.order = null;
  3592. }
  3593. states.sortingColumn = column;
  3594. sortProp = column.property;
  3595. }
  3596. if (!order) {
  3597. sortOrder = column.order = null;
  3598. } else {
  3599. sortOrder = column.order = order;
  3600. }
  3601. states.sortProp = sortProp;
  3602. states.sortOrder = sortOrder;
  3603. this.store.commit('changeSortCondition');
  3604. }
  3605. },
  3606. data: function data() {
  3607. return {
  3608. draggingColumn: null,
  3609. dragging: false,
  3610. dragState: {}
  3611. };
  3612. }
  3613. });
  3614. // CONCATENATED MODULE: ./packages/table/src/table-footer.js
  3615. var table_footer_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  3616. /* harmony default export */ var table_footer = ({
  3617. name: 'ElTableFooter',
  3618. mixins: [layout_observer],
  3619. render: function render(h) {
  3620. var _this = this;
  3621. var sums = [];
  3622. if (this.summaryMethod) {
  3623. sums = this.summaryMethod({ columns: this.columns, data: this.store.states.data });
  3624. } else {
  3625. this.columns.forEach(function (column, index) {
  3626. if (index === 0) {
  3627. sums[index] = _this.sumText;
  3628. return;
  3629. }
  3630. var values = _this.store.states.data.map(function (item) {
  3631. return Number(item[column.property]);
  3632. });
  3633. var precisions = [];
  3634. var notNumber = true;
  3635. values.forEach(function (value) {
  3636. if (!isNaN(value)) {
  3637. notNumber = false;
  3638. var decimal = ('' + value).split('.')[1];
  3639. precisions.push(decimal ? decimal.length : 0);
  3640. }
  3641. });
  3642. var precision = Math.max.apply(null, precisions);
  3643. if (!notNumber) {
  3644. sums[index] = values.reduce(function (prev, curr) {
  3645. var value = Number(curr);
  3646. if (!isNaN(value)) {
  3647. return parseFloat((prev + curr).toFixed(Math.min(precision, 20)));
  3648. } else {
  3649. return prev;
  3650. }
  3651. }, 0);
  3652. } else {
  3653. sums[index] = '';
  3654. }
  3655. });
  3656. }
  3657. return h(
  3658. 'table',
  3659. {
  3660. 'class': 'el-table__footer',
  3661. attrs: { cellspacing: '0',
  3662. cellpadding: '0',
  3663. border: '0' }
  3664. },
  3665. [h('colgroup', [this.columns.map(function (column) {
  3666. return h('col', {
  3667. attrs: { name: column.id },
  3668. key: column.id });
  3669. }), this.hasGutter ? h('col', {
  3670. attrs: { name: 'gutter' }
  3671. }) : '']), h(
  3672. 'tbody',
  3673. { 'class': [{ 'has-gutter': this.hasGutter }] },
  3674. [h('tr', [this.columns.map(function (column, cellIndex) {
  3675. return h(
  3676. 'td',
  3677. {
  3678. key: cellIndex,
  3679. attrs: { colspan: column.colSpan,
  3680. rowspan: column.rowSpan
  3681. },
  3682. 'class': [].concat(_this.getRowClasses(column, cellIndex), ['el-table__cell']) },
  3683. [h(
  3684. 'div',
  3685. { 'class': ['cell', column.labelClassName] },
  3686. [sums[cellIndex]]
  3687. )]
  3688. );
  3689. }), this.hasGutter ? h('th', { 'class': 'el-table__cell gutter' }) : ''])]
  3690. )]
  3691. );
  3692. },
  3693. props: {
  3694. fixed: String,
  3695. store: {
  3696. required: true
  3697. },
  3698. summaryMethod: Function,
  3699. sumText: String,
  3700. border: Boolean,
  3701. defaultSort: {
  3702. type: Object,
  3703. default: function _default() {
  3704. return {
  3705. prop: '',
  3706. order: ''
  3707. };
  3708. }
  3709. }
  3710. },
  3711. computed: table_footer_extends({
  3712. table: function table() {
  3713. return this.$parent;
  3714. },
  3715. hasGutter: function hasGutter() {
  3716. return !this.fixed && this.tableLayout.gutterWidth;
  3717. }
  3718. }, mapStates({
  3719. columns: 'columns',
  3720. isAllSelected: 'isAllSelected',
  3721. leftFixedLeafCount: 'fixedLeafColumnsLength',
  3722. rightFixedLeafCount: 'rightFixedLeafColumnsLength',
  3723. columnsCount: function columnsCount(states) {
  3724. return states.columns.length;
  3725. },
  3726. leftFixedCount: function leftFixedCount(states) {
  3727. return states.fixedColumns.length;
  3728. },
  3729. rightFixedCount: function rightFixedCount(states) {
  3730. return states.rightFixedColumns.length;
  3731. }
  3732. })),
  3733. methods: {
  3734. isCellHidden: function isCellHidden(index, columns, column) {
  3735. if (this.fixed === true || this.fixed === 'left') {
  3736. return index >= this.leftFixedLeafCount;
  3737. } else if (this.fixed === 'right') {
  3738. var before = 0;
  3739. for (var i = 0; i < index; i++) {
  3740. before += columns[i].colSpan;
  3741. }
  3742. return before < this.columnsCount - this.rightFixedLeafCount;
  3743. } else if (!this.fixed && column.fixed) {
  3744. // hide cell when footer instance is not fixed and column is fixed
  3745. return true;
  3746. } else {
  3747. return index < this.leftFixedCount || index >= this.columnsCount - this.rightFixedCount;
  3748. }
  3749. },
  3750. getRowClasses: function getRowClasses(column, cellIndex) {
  3751. var classes = [column.id, column.align, column.labelClassName];
  3752. if (column.className) {
  3753. classes.push(column.className);
  3754. }
  3755. if (this.isCellHidden(cellIndex, this.columns, column)) {
  3756. classes.push('is-hidden');
  3757. }
  3758. if (!column.children) {
  3759. classes.push('is-leaf');
  3760. }
  3761. return classes;
  3762. }
  3763. }
  3764. });
  3765. // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/table/src/table.vue?vue&type=script&lang=js&
  3766. var tablevue_type_script_lang_js_extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
  3767. //
  3768. //
  3769. //
  3770. //
  3771. //
  3772. //
  3773. //
  3774. //
  3775. //
  3776. //
  3777. //
  3778. //
  3779. //
  3780. //
  3781. //
  3782. //
  3783. //
  3784. //
  3785. //
  3786. //
  3787. //
  3788. //
  3789. //
  3790. //
  3791. //
  3792. //
  3793. //
  3794. //
  3795. //
  3796. //
  3797. //
  3798. //
  3799. //
  3800. //
  3801. //
  3802. //
  3803. //
  3804. //
  3805. //
  3806. //
  3807. //
  3808. //
  3809. //
  3810. //
  3811. //
  3812. //
  3813. //
  3814. //
  3815. //
  3816. //
  3817. //
  3818. //
  3819. //
  3820. //
  3821. //
  3822. //
  3823. //
  3824. //
  3825. //
  3826. //
  3827. //
  3828. //
  3829. //
  3830. //
  3831. //
  3832. //
  3833. //
  3834. //
  3835. //
  3836. //
  3837. //
  3838. //
  3839. //
  3840. //
  3841. //
  3842. //
  3843. //
  3844. //
  3845. //
  3846. //
  3847. //
  3848. //
  3849. //
  3850. //
  3851. //
  3852. //
  3853. //
  3854. //
  3855. //
  3856. //
  3857. //
  3858. //
  3859. //
  3860. //
  3861. //
  3862. //
  3863. //
  3864. //
  3865. //
  3866. //
  3867. //
  3868. //
  3869. //
  3870. //
  3871. //
  3872. //
  3873. //
  3874. //
  3875. //
  3876. //
  3877. //
  3878. //
  3879. //
  3880. //
  3881. //
  3882. //
  3883. //
  3884. //
  3885. //
  3886. //
  3887. //
  3888. //
  3889. //
  3890. //
  3891. //
  3892. //
  3893. //
  3894. //
  3895. //
  3896. //
  3897. //
  3898. //
  3899. //
  3900. //
  3901. //
  3902. //
  3903. //
  3904. //
  3905. //
  3906. //
  3907. //
  3908. //
  3909. //
  3910. //
  3911. //
  3912. //
  3913. //
  3914. //
  3915. //
  3916. //
  3917. //
  3918. //
  3919. //
  3920. //
  3921. //
  3922. //
  3923. //
  3924. //
  3925. //
  3926. //
  3927. //
  3928. //
  3929. //
  3930. //
  3931. //
  3932. //
  3933. //
  3934. //
  3935. //
  3936. //
  3937. //
  3938. //
  3939. //
  3940. //
  3941. //
  3942. //
  3943. //
  3944. //
  3945. //
  3946. //
  3947. //
  3948. //
  3949. //
  3950. //
  3951. //
  3952. //
  3953. //
  3954. //
  3955. //
  3956. //
  3957. //
  3958. //
  3959. //
  3960. //
  3961. //
  3962. //
  3963. //
  3964. //
  3965. //
  3966. //
  3967. //
  3968. //
  3969. //
  3970. //
  3971. //
  3972. //
  3973. //
  3974. //
  3975. //
  3976. //
  3977. //
  3978. //
  3979. //
  3980. //
  3981. var tableIdSeed = 1;
  3982. /* harmony default export */ var tablevue_type_script_lang_js_ = ({
  3983. name: 'ElTable',
  3984. mixins: [locale_default.a, migrating_default.a],
  3985. directives: {
  3986. Mousewheel: directives_mousewheel
  3987. },
  3988. props: {
  3989. data: {
  3990. type: Array,
  3991. default: function _default() {
  3992. return [];
  3993. }
  3994. },
  3995. size: String,
  3996. width: [String, Number],
  3997. height: [String, Number],
  3998. maxHeight: [String, Number],
  3999. fit: {
  4000. type: Boolean,
  4001. default: true
  4002. },
  4003. stripe: Boolean,
  4004. border: Boolean,
  4005. rowKey: [String, Function],
  4006. context: {},
  4007. showHeader: {
  4008. type: Boolean,
  4009. default: true
  4010. },
  4011. showSummary: Boolean,
  4012. sumText: String,
  4013. summaryMethod: Function,
  4014. rowClassName: [String, Function],
  4015. rowStyle: [Object, Function],
  4016. cellClassName: [String, Function],
  4017. cellStyle: [Object, Function],
  4018. headerRowClassName: [String, Function],
  4019. headerRowStyle: [Object, Function],
  4020. headerCellClassName: [String, Function],
  4021. headerCellStyle: [Object, Function],
  4022. highlightCurrentRow: Boolean,
  4023. currentRowKey: [String, Number],
  4024. emptyText: String,
  4025. expandRowKeys: Array,
  4026. defaultExpandAll: Boolean,
  4027. defaultSort: Object,
  4028. tooltipEffect: String,
  4029. spanMethod: Function,
  4030. selectOnIndeterminate: {
  4031. type: Boolean,
  4032. default: true
  4033. },
  4034. indent: {
  4035. type: Number,
  4036. default: 16
  4037. },
  4038. treeProps: {
  4039. type: Object,
  4040. default: function _default() {
  4041. return {
  4042. hasChildren: 'hasChildren',
  4043. children: 'children'
  4044. };
  4045. }
  4046. },
  4047. lazy: Boolean,
  4048. load: Function
  4049. },
  4050. components: {
  4051. TableHeader: table_header,
  4052. TableFooter: table_footer,
  4053. TableBody: table_body,
  4054. ElCheckbox: checkbox_default.a
  4055. },
  4056. methods: {
  4057. getMigratingConfig: function getMigratingConfig() {
  4058. return {
  4059. events: {
  4060. expand: 'expand is renamed to expand-change'
  4061. }
  4062. };
  4063. },
  4064. setCurrentRow: function setCurrentRow(row) {
  4065. this.store.commit('setCurrentRow', row);
  4066. },
  4067. toggleRowSelection: function toggleRowSelection(row, selected) {
  4068. this.store.toggleRowSelection(row, selected, false);
  4069. this.store.updateAllSelected();
  4070. },
  4071. toggleRowExpansion: function toggleRowExpansion(row, expanded) {
  4072. this.store.toggleRowExpansionAdapter(row, expanded);
  4073. },
  4074. clearSelection: function clearSelection() {
  4075. this.store.clearSelection();
  4076. },
  4077. clearFilter: function clearFilter(columnKeys) {
  4078. this.store.clearFilter(columnKeys);
  4079. },
  4080. clearSort: function clearSort() {
  4081. this.store.clearSort();
  4082. },
  4083. handleMouseLeave: function handleMouseLeave() {
  4084. this.store.commit('setHoverRow', null);
  4085. if (this.hoverState) this.hoverState = null;
  4086. },
  4087. updateScrollY: function updateScrollY() {
  4088. var changed = this.layout.updateScrollY();
  4089. if (changed) {
  4090. this.layout.notifyObservers('scrollable');
  4091. this.layout.updateColumnsWidth();
  4092. }
  4093. },
  4094. handleFixedMousewheel: function handleFixedMousewheel(event, data) {
  4095. var bodyWrapper = this.bodyWrapper;
  4096. if (Math.abs(data.spinY) > 0) {
  4097. var currentScrollTop = bodyWrapper.scrollTop;
  4098. if (data.pixelY < 0 && currentScrollTop !== 0) {
  4099. event.preventDefault();
  4100. }
  4101. if (data.pixelY > 0 && bodyWrapper.scrollHeight - bodyWrapper.clientHeight > currentScrollTop) {
  4102. event.preventDefault();
  4103. }
  4104. bodyWrapper.scrollTop += Math.ceil(data.pixelY / 5);
  4105. } else {
  4106. bodyWrapper.scrollLeft += Math.ceil(data.pixelX / 5);
  4107. }
  4108. },
  4109. handleHeaderFooterMousewheel: function handleHeaderFooterMousewheel(event, data) {
  4110. var pixelX = data.pixelX,
  4111. pixelY = data.pixelY;
  4112. if (Math.abs(pixelX) >= Math.abs(pixelY)) {
  4113. this.bodyWrapper.scrollLeft += data.pixelX / 5;
  4114. }
  4115. },
  4116. // TODO 使用 CSS transform
  4117. syncPostion: function syncPostion() {
  4118. var _bodyWrapper = this.bodyWrapper,
  4119. scrollLeft = _bodyWrapper.scrollLeft,
  4120. scrollTop = _bodyWrapper.scrollTop,
  4121. offsetWidth = _bodyWrapper.offsetWidth,
  4122. scrollWidth = _bodyWrapper.scrollWidth;
  4123. var _$refs = this.$refs,
  4124. headerWrapper = _$refs.headerWrapper,
  4125. footerWrapper = _$refs.footerWrapper,
  4126. fixedBodyWrapper = _$refs.fixedBodyWrapper,
  4127. rightFixedBodyWrapper = _$refs.rightFixedBodyWrapper;
  4128. if (headerWrapper) headerWrapper.scrollLeft = scrollLeft;
  4129. if (footerWrapper) footerWrapper.scrollLeft = scrollLeft;
  4130. if (fixedBodyWrapper) fixedBodyWrapper.scrollTop = scrollTop;
  4131. if (rightFixedBodyWrapper) rightFixedBodyWrapper.scrollTop = scrollTop;
  4132. var maxScrollLeftPosition = scrollWidth - offsetWidth - 1;
  4133. if (scrollLeft >= maxScrollLeftPosition) {
  4134. this.scrollPosition = 'right';
  4135. } else if (scrollLeft === 0) {
  4136. this.scrollPosition = 'left';
  4137. } else {
  4138. this.scrollPosition = 'middle';
  4139. }
  4140. },
  4141. throttleSyncPostion: Object(external_throttle_debounce_["throttle"])(16, function () {
  4142. this.syncPostion();
  4143. }),
  4144. onScroll: function onScroll(evt) {
  4145. var raf = window.requestAnimationFrame;
  4146. if (!raf) {
  4147. this.throttleSyncPostion();
  4148. } else {
  4149. raf(this.syncPostion);
  4150. }
  4151. },
  4152. bindEvents: function bindEvents() {
  4153. this.bodyWrapper.addEventListener('scroll', this.onScroll, { passive: true });
  4154. if (this.fit) {
  4155. Object(resize_event_["addResizeListener"])(this.$el, this.resizeListener);
  4156. }
  4157. },
  4158. unbindEvents: function unbindEvents() {
  4159. this.bodyWrapper.removeEventListener('scroll', this.onScroll, { passive: true });
  4160. if (this.fit) {
  4161. Object(resize_event_["removeResizeListener"])(this.$el, this.resizeListener);
  4162. }
  4163. },
  4164. resizeListener: function resizeListener() {
  4165. if (!this.$ready) return;
  4166. var shouldUpdateLayout = false;
  4167. var el = this.$el;
  4168. var _resizeState = this.resizeState,
  4169. oldWidth = _resizeState.width,
  4170. oldHeight = _resizeState.height;
  4171. var width = el.offsetWidth;
  4172. if (oldWidth !== width) {
  4173. shouldUpdateLayout = true;
  4174. }
  4175. var height = el.offsetHeight;
  4176. if ((this.height || this.shouldUpdateHeight) && oldHeight !== height) {
  4177. shouldUpdateLayout = true;
  4178. }
  4179. if (shouldUpdateLayout) {
  4180. this.resizeState.width = width;
  4181. this.resizeState.height = height;
  4182. this.doLayout();
  4183. }
  4184. },
  4185. doLayout: function doLayout() {
  4186. if (this.shouldUpdateHeight) {
  4187. this.layout.updateElsHeight();
  4188. }
  4189. this.layout.updateColumnsWidth();
  4190. },
  4191. sort: function sort(prop, order) {
  4192. this.store.commit('sort', { prop: prop, order: order });
  4193. },
  4194. toggleAllSelection: function toggleAllSelection() {
  4195. this.store.commit('toggleAllSelection');
  4196. }
  4197. },
  4198. computed: tablevue_type_script_lang_js_extends({
  4199. tableSize: function tableSize() {
  4200. return this.size || (this.$ELEMENT || {}).size;
  4201. },
  4202. bodyWrapper: function bodyWrapper() {
  4203. return this.$refs.bodyWrapper;
  4204. },
  4205. shouldUpdateHeight: function shouldUpdateHeight() {
  4206. return this.height || this.maxHeight || this.fixedColumns.length > 0 || this.rightFixedColumns.length > 0;
  4207. },
  4208. bodyWidth: function bodyWidth() {
  4209. var _layout = this.layout,
  4210. bodyWidth = _layout.bodyWidth,
  4211. scrollY = _layout.scrollY,
  4212. gutterWidth = _layout.gutterWidth;
  4213. return bodyWidth ? bodyWidth - (scrollY ? gutterWidth : 0) + 'px' : '';
  4214. },
  4215. bodyHeight: function bodyHeight() {
  4216. var _layout2 = this.layout,
  4217. _layout2$headerHeight = _layout2.headerHeight,
  4218. headerHeight = _layout2$headerHeight === undefined ? 0 : _layout2$headerHeight,
  4219. bodyHeight = _layout2.bodyHeight,
  4220. _layout2$footerHeight = _layout2.footerHeight,
  4221. footerHeight = _layout2$footerHeight === undefined ? 0 : _layout2$footerHeight;
  4222. if (this.height) {
  4223. return {
  4224. height: bodyHeight ? bodyHeight + 'px' : ''
  4225. };
  4226. } else if (this.maxHeight) {
  4227. var maxHeight = Object(util["j" /* parseHeight */])(this.maxHeight);
  4228. if (typeof maxHeight === 'number') {
  4229. return {
  4230. 'max-height': maxHeight - footerHeight - (this.showHeader ? headerHeight : 0) + 'px'
  4231. };
  4232. }
  4233. }
  4234. return {};
  4235. },
  4236. fixedBodyHeight: function fixedBodyHeight() {
  4237. if (this.height) {
  4238. return {
  4239. height: this.layout.fixedBodyHeight ? this.layout.fixedBodyHeight + 'px' : ''
  4240. };
  4241. } else if (this.maxHeight) {
  4242. var maxHeight = Object(util["j" /* parseHeight */])(this.maxHeight);
  4243. if (typeof maxHeight === 'number') {
  4244. maxHeight = this.layout.scrollX ? maxHeight - this.layout.gutterWidth : maxHeight;
  4245. if (this.showHeader) {
  4246. maxHeight -= this.layout.headerHeight;
  4247. }
  4248. maxHeight -= this.layout.footerHeight;
  4249. return {
  4250. 'max-height': maxHeight + 'px'
  4251. };
  4252. }
  4253. }
  4254. return {};
  4255. },
  4256. fixedHeight: function fixedHeight() {
  4257. if (this.maxHeight) {
  4258. if (this.showSummary) {
  4259. return {
  4260. bottom: 0
  4261. };
  4262. }
  4263. return {
  4264. bottom: this.layout.scrollX && this.data.length ? this.layout.gutterWidth + 'px' : ''
  4265. };
  4266. } else {
  4267. if (this.showSummary) {
  4268. return {
  4269. height: this.layout.tableHeight ? this.layout.tableHeight + 'px' : ''
  4270. };
  4271. }
  4272. return {
  4273. height: this.layout.viewportHeight ? this.layout.viewportHeight + 'px' : ''
  4274. };
  4275. }
  4276. },
  4277. emptyBlockStyle: function emptyBlockStyle() {
  4278. if (this.data && this.data.length) return null;
  4279. var height = '100%';
  4280. if (this.layout.appendHeight) {
  4281. height = 'calc(100% - ' + this.layout.appendHeight + 'px)';
  4282. }
  4283. return {
  4284. width: this.bodyWidth,
  4285. height: height
  4286. };
  4287. }
  4288. }, mapStates({
  4289. selection: 'selection',
  4290. columns: 'columns',
  4291. tableData: 'data',
  4292. fixedColumns: 'fixedColumns',
  4293. rightFixedColumns: 'rightFixedColumns'
  4294. })),
  4295. watch: {
  4296. height: {
  4297. immediate: true,
  4298. handler: function handler(value) {
  4299. this.layout.setHeight(value);
  4300. }
  4301. },
  4302. maxHeight: {
  4303. immediate: true,
  4304. handler: function handler(value) {
  4305. this.layout.setMaxHeight(value);
  4306. }
  4307. },
  4308. currentRowKey: {
  4309. immediate: true,
  4310. handler: function handler(value) {
  4311. if (!this.rowKey) return;
  4312. this.store.setCurrentRowKey(value);
  4313. }
  4314. },
  4315. data: {
  4316. immediate: true,
  4317. handler: function handler(value) {
  4318. this.store.commit('setData', value);
  4319. }
  4320. },
  4321. expandRowKeys: {
  4322. immediate: true,
  4323. handler: function handler(newVal) {
  4324. if (newVal) {
  4325. this.store.setExpandRowKeysAdapter(newVal);
  4326. }
  4327. }
  4328. }
  4329. },
  4330. created: function created() {
  4331. var _this = this;
  4332. this.tableId = 'el-table_' + tableIdSeed++;
  4333. this.debouncedUpdateLayout = Object(external_throttle_debounce_["debounce"])(50, function () {
  4334. return _this.doLayout();
  4335. });
  4336. },
  4337. mounted: function mounted() {
  4338. var _this2 = this;
  4339. this.bindEvents();
  4340. this.store.updateColumns();
  4341. this.doLayout();
  4342. this.resizeState = {
  4343. width: this.$el.offsetWidth,
  4344. height: this.$el.offsetHeight
  4345. };
  4346. // init filters
  4347. this.store.states.columns.forEach(function (column) {
  4348. if (column.filteredValue && column.filteredValue.length) {
  4349. _this2.store.commit('filterChange', {
  4350. column: column,
  4351. values: column.filteredValue,
  4352. silent: true
  4353. });
  4354. }
  4355. });
  4356. this.$ready = true;
  4357. },
  4358. destroyed: function destroyed() {
  4359. this.unbindEvents();
  4360. },
  4361. data: function data() {
  4362. var _treeProps = this.treeProps,
  4363. _treeProps$hasChildre = _treeProps.hasChildren,
  4364. hasChildren = _treeProps$hasChildre === undefined ? 'hasChildren' : _treeProps$hasChildre,
  4365. _treeProps$children = _treeProps.children,
  4366. children = _treeProps$children === undefined ? 'children' : _treeProps$children;
  4367. this.store = createStore(this, {
  4368. rowKey: this.rowKey,
  4369. defaultExpandAll: this.defaultExpandAll,
  4370. selectOnIndeterminate: this.selectOnIndeterminate,
  4371. // TreeTable 的相关配置
  4372. indent: this.indent,
  4373. lazy: this.lazy,
  4374. lazyColumnIdentifier: hasChildren,
  4375. childrenColumnName: children
  4376. });
  4377. var layout = new table_layout({
  4378. store: this.store,
  4379. table: this,
  4380. fit: this.fit,
  4381. showHeader: this.showHeader
  4382. });
  4383. return {
  4384. layout: layout,
  4385. isHidden: false,
  4386. renderExpanded: null,
  4387. resizeProxyVisible: false,
  4388. resizeState: {
  4389. width: null,
  4390. height: null
  4391. },
  4392. // 是否拥有多级表头
  4393. isGroup: false,
  4394. scrollPosition: 'left'
  4395. };
  4396. }
  4397. });
  4398. // CONCATENATED MODULE: ./packages/table/src/table.vue?vue&type=script&lang=js&
  4399. /* harmony default export */ var src_tablevue_type_script_lang_js_ = (tablevue_type_script_lang_js_);
  4400. // CONCATENATED MODULE: ./packages/table/src/table.vue
  4401. /* normalize component */
  4402. var table_component = Object(componentNormalizer["a" /* default */])(
  4403. src_tablevue_type_script_lang_js_,
  4404. render,
  4405. staticRenderFns,
  4406. false,
  4407. null,
  4408. null,
  4409. null
  4410. )
  4411. /* hot reload */
  4412. if (false) { var table_api; }
  4413. table_component.options.__file = "packages/table/src/table.vue"
  4414. /* harmony default export */ var src_table = (table_component.exports);
  4415. // CONCATENATED MODULE: ./packages/table/index.js
  4416. /* istanbul ignore next */
  4417. src_table.install = function (Vue) {
  4418. Vue.component(src_table.name, src_table);
  4419. };
  4420. /* harmony default export */ var packages_table = __webpack_exports__["default"] = (src_table);
  4421. /***/ })
  4422. /******/ ]);