index.modern.js 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502
  1. import React, { useEffect } from 'react';
  2. import { InputBase, Grid, Box, Typography, TextField, NativeSelect, GridList, GridListTile, Dialog, DialogTitle, DialogContent, Button, TableContainer, Table, TableHead, TableRow, TableCell, TableBody, IconButton, createMuiTheme, ThemeProvider, Menu, MenuItem, DialogActions } from '@material-ui/core';
  3. import AddIcon from '@material-ui/icons/Add';
  4. import { withStyles, makeStyles } from '@material-ui/core/styles';
  5. import Autocomplete, { createFilterOptions } from '@material-ui/lab/Autocomplete';
  6. import Table$1 from '@material-ui/core/Table';
  7. import TableBody$1 from '@material-ui/core/TableBody';
  8. import TableCell$1 from '@material-ui/core/TableCell';
  9. import TableContainer$1 from '@material-ui/core/TableContainer';
  10. import TableHead$1 from '@material-ui/core/TableHead';
  11. import TablePagination from '@material-ui/core/TablePagination';
  12. import TableRow$1 from '@material-ui/core/TableRow';
  13. import TableSortLabel from '@material-ui/core/TableSortLabel';
  14. import '@material-ui/core/Typography';
  15. import EditIcon from '@material-ui/icons/Edit';
  16. import ExpandMore from '@material-ui/icons/ExpandMore';
  17. import CircularProgress from '@material-ui/core/CircularProgress';
  18. function List({
  19. groupName,
  20. members = []
  21. }) {
  22. return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("h1", null, "1.0.3"), /*#__PURE__*/React.createElement("h5", null, "Group: ", /*#__PURE__*/React.createElement("em", null, groupName)), /*#__PURE__*/React.createElement("ul", null, /*#__PURE__*/React.createElement("p", null, "Members"), members.map(member => /*#__PURE__*/React.createElement("li", {
  23. key: member
  24. }, member))));
  25. }
  26. function createCommonjsModule(fn, module) {
  27. return module = { exports: {} }, fn(module, module.exports), module.exports;
  28. }
  29. /** @license React v16.13.1
  30. * react-is.production.min.js
  31. *
  32. * Copyright (c) Facebook, Inc. and its affiliates.
  33. *
  34. * This source code is licensed under the MIT license found in the
  35. * LICENSE file in the root directory of this source tree.
  36. */
  37. var b="function"===typeof Symbol&&Symbol.for,c=b?Symbol.for("react.element"):60103,d=b?Symbol.for("react.portal"):60106,e=b?Symbol.for("react.fragment"):60107,f=b?Symbol.for("react.strict_mode"):60108,g=b?Symbol.for("react.profiler"):60114,h=b?Symbol.for("react.provider"):60109,k=b?Symbol.for("react.context"):60110,l=b?Symbol.for("react.async_mode"):60111,m=b?Symbol.for("react.concurrent_mode"):60111,n=b?Symbol.for("react.forward_ref"):60112,p=b?Symbol.for("react.suspense"):60113,q=b?
  38. Symbol.for("react.suspense_list"):60120,r=b?Symbol.for("react.memo"):60115,t=b?Symbol.for("react.lazy"):60116,v=b?Symbol.for("react.block"):60121,w=b?Symbol.for("react.fundamental"):60117,x=b?Symbol.for("react.responder"):60118,y=b?Symbol.for("react.scope"):60119;
  39. function z(a){if("object"===typeof a&&null!==a){var u=a.$$typeof;switch(u){case c:switch(a=a.type,a){case l:case m:case e:case g:case f:case p:return a;default:switch(a=a&&a.$$typeof,a){case k:case n:case t:case r:case h:return a;default:return u}}case d:return u}}}function A(a){return z(a)===m}var AsyncMode=l;var ConcurrentMode=m;var ContextConsumer=k;var ContextProvider=h;var Element=c;var ForwardRef=n;var Fragment=e;var Lazy=t;var Memo=r;var Portal=d;
  40. var Profiler=g;var StrictMode=f;var Suspense=p;var isAsyncMode=function(a){return A(a)||z(a)===l};var isConcurrentMode=A;var isContextConsumer=function(a){return z(a)===k};var isContextProvider=function(a){return z(a)===h};var isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===c};var isForwardRef=function(a){return z(a)===n};var isFragment=function(a){return z(a)===e};var isLazy=function(a){return z(a)===t};
  41. var isMemo=function(a){return z(a)===r};var isPortal=function(a){return z(a)===d};var isProfiler=function(a){return z(a)===g};var isStrictMode=function(a){return z(a)===f};var isSuspense=function(a){return z(a)===p};
  42. var isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===e||a===m||a===g||a===f||a===p||a===q||"object"===typeof a&&null!==a&&(a.$$typeof===t||a.$$typeof===r||a.$$typeof===h||a.$$typeof===k||a.$$typeof===n||a.$$typeof===w||a.$$typeof===x||a.$$typeof===y||a.$$typeof===v)};var typeOf=z;
  43. var reactIs_production_min = {
  44. AsyncMode: AsyncMode,
  45. ConcurrentMode: ConcurrentMode,
  46. ContextConsumer: ContextConsumer,
  47. ContextProvider: ContextProvider,
  48. Element: Element,
  49. ForwardRef: ForwardRef,
  50. Fragment: Fragment,
  51. Lazy: Lazy,
  52. Memo: Memo,
  53. Portal: Portal,
  54. Profiler: Profiler,
  55. StrictMode: StrictMode,
  56. Suspense: Suspense,
  57. isAsyncMode: isAsyncMode,
  58. isConcurrentMode: isConcurrentMode,
  59. isContextConsumer: isContextConsumer,
  60. isContextProvider: isContextProvider,
  61. isElement: isElement,
  62. isForwardRef: isForwardRef,
  63. isFragment: isFragment,
  64. isLazy: isLazy,
  65. isMemo: isMemo,
  66. isPortal: isPortal,
  67. isProfiler: isProfiler,
  68. isStrictMode: isStrictMode,
  69. isSuspense: isSuspense,
  70. isValidElementType: isValidElementType,
  71. typeOf: typeOf
  72. };
  73. var reactIs_development = createCommonjsModule(function (module, exports) {
  74. if (process.env.NODE_ENV !== "production") {
  75. (function() {
  76. // The Symbol used to tag the ReactElement-like types. If there is no native Symbol
  77. // nor polyfill, then a plain number is used for performance.
  78. var hasSymbol = typeof Symbol === 'function' && Symbol.for;
  79. var REACT_ELEMENT_TYPE = hasSymbol ? Symbol.for('react.element') : 0xeac7;
  80. var REACT_PORTAL_TYPE = hasSymbol ? Symbol.for('react.portal') : 0xeaca;
  81. var REACT_FRAGMENT_TYPE = hasSymbol ? Symbol.for('react.fragment') : 0xeacb;
  82. var REACT_STRICT_MODE_TYPE = hasSymbol ? Symbol.for('react.strict_mode') : 0xeacc;
  83. var REACT_PROFILER_TYPE = hasSymbol ? Symbol.for('react.profiler') : 0xead2;
  84. var REACT_PROVIDER_TYPE = hasSymbol ? Symbol.for('react.provider') : 0xeacd;
  85. var REACT_CONTEXT_TYPE = hasSymbol ? Symbol.for('react.context') : 0xeace; // TODO: We don't use AsyncMode or ConcurrentMode anymore. They were temporary
  86. // (unstable) APIs that have been removed. Can we remove the symbols?
  87. var REACT_ASYNC_MODE_TYPE = hasSymbol ? Symbol.for('react.async_mode') : 0xeacf;
  88. var REACT_CONCURRENT_MODE_TYPE = hasSymbol ? Symbol.for('react.concurrent_mode') : 0xeacf;
  89. var REACT_FORWARD_REF_TYPE = hasSymbol ? Symbol.for('react.forward_ref') : 0xead0;
  90. var REACT_SUSPENSE_TYPE = hasSymbol ? Symbol.for('react.suspense') : 0xead1;
  91. var REACT_SUSPENSE_LIST_TYPE = hasSymbol ? Symbol.for('react.suspense_list') : 0xead8;
  92. var REACT_MEMO_TYPE = hasSymbol ? Symbol.for('react.memo') : 0xead3;
  93. var REACT_LAZY_TYPE = hasSymbol ? Symbol.for('react.lazy') : 0xead4;
  94. var REACT_BLOCK_TYPE = hasSymbol ? Symbol.for('react.block') : 0xead9;
  95. var REACT_FUNDAMENTAL_TYPE = hasSymbol ? Symbol.for('react.fundamental') : 0xead5;
  96. var REACT_RESPONDER_TYPE = hasSymbol ? Symbol.for('react.responder') : 0xead6;
  97. var REACT_SCOPE_TYPE = hasSymbol ? Symbol.for('react.scope') : 0xead7;
  98. function isValidElementType(type) {
  99. return typeof type === 'string' || typeof type === 'function' || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
  100. type === REACT_FRAGMENT_TYPE || type === REACT_CONCURRENT_MODE_TYPE || type === REACT_PROFILER_TYPE || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || typeof type === 'object' && type !== null && (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || type.$$typeof === REACT_FUNDAMENTAL_TYPE || type.$$typeof === REACT_RESPONDER_TYPE || type.$$typeof === REACT_SCOPE_TYPE || type.$$typeof === REACT_BLOCK_TYPE);
  101. }
  102. function typeOf(object) {
  103. if (typeof object === 'object' && object !== null) {
  104. var $$typeof = object.$$typeof;
  105. switch ($$typeof) {
  106. case REACT_ELEMENT_TYPE:
  107. var type = object.type;
  108. switch (type) {
  109. case REACT_ASYNC_MODE_TYPE:
  110. case REACT_CONCURRENT_MODE_TYPE:
  111. case REACT_FRAGMENT_TYPE:
  112. case REACT_PROFILER_TYPE:
  113. case REACT_STRICT_MODE_TYPE:
  114. case REACT_SUSPENSE_TYPE:
  115. return type;
  116. default:
  117. var $$typeofType = type && type.$$typeof;
  118. switch ($$typeofType) {
  119. case REACT_CONTEXT_TYPE:
  120. case REACT_FORWARD_REF_TYPE:
  121. case REACT_LAZY_TYPE:
  122. case REACT_MEMO_TYPE:
  123. case REACT_PROVIDER_TYPE:
  124. return $$typeofType;
  125. default:
  126. return $$typeof;
  127. }
  128. }
  129. case REACT_PORTAL_TYPE:
  130. return $$typeof;
  131. }
  132. }
  133. return undefined;
  134. } // AsyncMode is deprecated along with isAsyncMode
  135. var AsyncMode = REACT_ASYNC_MODE_TYPE;
  136. var ConcurrentMode = REACT_CONCURRENT_MODE_TYPE;
  137. var ContextConsumer = REACT_CONTEXT_TYPE;
  138. var ContextProvider = REACT_PROVIDER_TYPE;
  139. var Element = REACT_ELEMENT_TYPE;
  140. var ForwardRef = REACT_FORWARD_REF_TYPE;
  141. var Fragment = REACT_FRAGMENT_TYPE;
  142. var Lazy = REACT_LAZY_TYPE;
  143. var Memo = REACT_MEMO_TYPE;
  144. var Portal = REACT_PORTAL_TYPE;
  145. var Profiler = REACT_PROFILER_TYPE;
  146. var StrictMode = REACT_STRICT_MODE_TYPE;
  147. var Suspense = REACT_SUSPENSE_TYPE;
  148. var hasWarnedAboutDeprecatedIsAsyncMode = false; // AsyncMode should be deprecated
  149. function isAsyncMode(object) {
  150. {
  151. if (!hasWarnedAboutDeprecatedIsAsyncMode) {
  152. hasWarnedAboutDeprecatedIsAsyncMode = true; // Using console['warn'] to evade Babel and ESLint
  153. console['warn']('The ReactIs.isAsyncMode() alias has been deprecated, ' + 'and will be removed in React 17+. Update your code to use ' + 'ReactIs.isConcurrentMode() instead. It has the exact same API.');
  154. }
  155. }
  156. return isConcurrentMode(object) || typeOf(object) === REACT_ASYNC_MODE_TYPE;
  157. }
  158. function isConcurrentMode(object) {
  159. return typeOf(object) === REACT_CONCURRENT_MODE_TYPE;
  160. }
  161. function isContextConsumer(object) {
  162. return typeOf(object) === REACT_CONTEXT_TYPE;
  163. }
  164. function isContextProvider(object) {
  165. return typeOf(object) === REACT_PROVIDER_TYPE;
  166. }
  167. function isElement(object) {
  168. return typeof object === 'object' && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
  169. }
  170. function isForwardRef(object) {
  171. return typeOf(object) === REACT_FORWARD_REF_TYPE;
  172. }
  173. function isFragment(object) {
  174. return typeOf(object) === REACT_FRAGMENT_TYPE;
  175. }
  176. function isLazy(object) {
  177. return typeOf(object) === REACT_LAZY_TYPE;
  178. }
  179. function isMemo(object) {
  180. return typeOf(object) === REACT_MEMO_TYPE;
  181. }
  182. function isPortal(object) {
  183. return typeOf(object) === REACT_PORTAL_TYPE;
  184. }
  185. function isProfiler(object) {
  186. return typeOf(object) === REACT_PROFILER_TYPE;
  187. }
  188. function isStrictMode(object) {
  189. return typeOf(object) === REACT_STRICT_MODE_TYPE;
  190. }
  191. function isSuspense(object) {
  192. return typeOf(object) === REACT_SUSPENSE_TYPE;
  193. }
  194. exports.AsyncMode = AsyncMode;
  195. exports.ConcurrentMode = ConcurrentMode;
  196. exports.ContextConsumer = ContextConsumer;
  197. exports.ContextProvider = ContextProvider;
  198. exports.Element = Element;
  199. exports.ForwardRef = ForwardRef;
  200. exports.Fragment = Fragment;
  201. exports.Lazy = Lazy;
  202. exports.Memo = Memo;
  203. exports.Portal = Portal;
  204. exports.Profiler = Profiler;
  205. exports.StrictMode = StrictMode;
  206. exports.Suspense = Suspense;
  207. exports.isAsyncMode = isAsyncMode;
  208. exports.isConcurrentMode = isConcurrentMode;
  209. exports.isContextConsumer = isContextConsumer;
  210. exports.isContextProvider = isContextProvider;
  211. exports.isElement = isElement;
  212. exports.isForwardRef = isForwardRef;
  213. exports.isFragment = isFragment;
  214. exports.isLazy = isLazy;
  215. exports.isMemo = isMemo;
  216. exports.isPortal = isPortal;
  217. exports.isProfiler = isProfiler;
  218. exports.isStrictMode = isStrictMode;
  219. exports.isSuspense = isSuspense;
  220. exports.isValidElementType = isValidElementType;
  221. exports.typeOf = typeOf;
  222. })();
  223. }
  224. });
  225. var reactIs = createCommonjsModule(function (module) {
  226. if (process.env.NODE_ENV === 'production') {
  227. module.exports = reactIs_production_min;
  228. } else {
  229. module.exports = reactIs_development;
  230. }
  231. });
  232. /*
  233. object-assign
  234. (c) Sindre Sorhus
  235. @license MIT
  236. */
  237. /* eslint-disable no-unused-vars */
  238. var getOwnPropertySymbols = Object.getOwnPropertySymbols;
  239. var hasOwnProperty = Object.prototype.hasOwnProperty;
  240. var propIsEnumerable = Object.prototype.propertyIsEnumerable;
  241. function toObject(val) {
  242. if (val === null || val === undefined) {
  243. throw new TypeError('Object.assign cannot be called with null or undefined');
  244. }
  245. return Object(val);
  246. }
  247. function shouldUseNative() {
  248. try {
  249. if (!Object.assign) {
  250. return false;
  251. }
  252. // Detect buggy property enumeration order in older V8 versions.
  253. // https://bugs.chromium.org/p/v8/issues/detail?id=4118
  254. var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
  255. test1[5] = 'de';
  256. if (Object.getOwnPropertyNames(test1)[0] === '5') {
  257. return false;
  258. }
  259. // https://bugs.chromium.org/p/v8/issues/detail?id=3056
  260. var test2 = {};
  261. for (var i = 0; i < 10; i++) {
  262. test2['_' + String.fromCharCode(i)] = i;
  263. }
  264. var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
  265. return test2[n];
  266. });
  267. if (order2.join('') !== '0123456789') {
  268. return false;
  269. }
  270. // https://bugs.chromium.org/p/v8/issues/detail?id=3056
  271. var test3 = {};
  272. 'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
  273. test3[letter] = letter;
  274. });
  275. if (Object.keys(Object.assign({}, test3)).join('') !==
  276. 'abcdefghijklmnopqrst') {
  277. return false;
  278. }
  279. return true;
  280. } catch (err) {
  281. // We don't expect any of the above to throw, but better to be safe.
  282. return false;
  283. }
  284. }
  285. var objectAssign = shouldUseNative() ? Object.assign : function (target, source) {
  286. var from;
  287. var to = toObject(target);
  288. var symbols;
  289. for (var s = 1; s < arguments.length; s++) {
  290. from = Object(arguments[s]);
  291. for (var key in from) {
  292. if (hasOwnProperty.call(from, key)) {
  293. to[key] = from[key];
  294. }
  295. }
  296. if (getOwnPropertySymbols) {
  297. symbols = getOwnPropertySymbols(from);
  298. for (var i = 0; i < symbols.length; i++) {
  299. if (propIsEnumerable.call(from, symbols[i])) {
  300. to[symbols[i]] = from[symbols[i]];
  301. }
  302. }
  303. }
  304. }
  305. return to;
  306. };
  307. /**
  308. * Copyright (c) 2013-present, Facebook, Inc.
  309. *
  310. * This source code is licensed under the MIT license found in the
  311. * LICENSE file in the root directory of this source tree.
  312. */
  313. var ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';
  314. var ReactPropTypesSecret_1 = ReactPropTypesSecret;
  315. var printWarning = function() {};
  316. if (process.env.NODE_ENV !== 'production') {
  317. var ReactPropTypesSecret$1 = ReactPropTypesSecret_1;
  318. var loggedTypeFailures = {};
  319. var has = Function.call.bind(Object.prototype.hasOwnProperty);
  320. printWarning = function(text) {
  321. var message = 'Warning: ' + text;
  322. if (typeof console !== 'undefined') {
  323. console.error(message);
  324. }
  325. try {
  326. // --- Welcome to debugging React ---
  327. // This error was thrown as a convenience so that you can use this stack
  328. // to find the callsite that caused this warning to fire.
  329. throw new Error(message);
  330. } catch (x) {}
  331. };
  332. }
  333. /**
  334. * Assert that the values match with the type specs.
  335. * Error messages are memorized and will only be shown once.
  336. *
  337. * @param {object} typeSpecs Map of name to a ReactPropType
  338. * @param {object} values Runtime values that need to be type-checked
  339. * @param {string} location e.g. "prop", "context", "child context"
  340. * @param {string} componentName Name of the component for error messages.
  341. * @param {?Function} getStack Returns the component stack.
  342. * @private
  343. */
  344. function checkPropTypes(typeSpecs, values, location, componentName, getStack) {
  345. if (process.env.NODE_ENV !== 'production') {
  346. for (var typeSpecName in typeSpecs) {
  347. if (has(typeSpecs, typeSpecName)) {
  348. var error;
  349. // Prop type validation may throw. In case they do, we don't want to
  350. // fail the render phase where it didn't fail before. So we log it.
  351. // After these have been cleaned up, we'll let them throw.
  352. try {
  353. // This is intentionally an invariant that gets caught. It's the same
  354. // behavior as without this statement except with a better message.
  355. if (typeof typeSpecs[typeSpecName] !== 'function') {
  356. var err = Error(
  357. (componentName || 'React class') + ': ' + location + ' type `' + typeSpecName + '` is invalid; ' +
  358. 'it must be a function, usually from the `prop-types` package, but received `' + typeof typeSpecs[typeSpecName] + '`.'
  359. );
  360. err.name = 'Invariant Violation';
  361. throw err;
  362. }
  363. error = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, ReactPropTypesSecret$1);
  364. } catch (ex) {
  365. error = ex;
  366. }
  367. if (error && !(error instanceof Error)) {
  368. printWarning(
  369. (componentName || 'React class') + ': type specification of ' +
  370. location + ' `' + typeSpecName + '` is invalid; the type checker ' +
  371. 'function must return `null` or an `Error` but returned a ' + typeof error + '. ' +
  372. 'You may have forgotten to pass an argument to the type checker ' +
  373. 'creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and ' +
  374. 'shape all require an argument).'
  375. );
  376. }
  377. if (error instanceof Error && !(error.message in loggedTypeFailures)) {
  378. // Only monitor this failure once because there tends to be a lot of the
  379. // same error.
  380. loggedTypeFailures[error.message] = true;
  381. var stack = getStack ? getStack() : '';
  382. printWarning(
  383. 'Failed ' + location + ' type: ' + error.message + (stack != null ? stack : '')
  384. );
  385. }
  386. }
  387. }
  388. }
  389. }
  390. /**
  391. * Resets warning cache when testing.
  392. *
  393. * @private
  394. */
  395. checkPropTypes.resetWarningCache = function() {
  396. if (process.env.NODE_ENV !== 'production') {
  397. loggedTypeFailures = {};
  398. }
  399. };
  400. var checkPropTypes_1 = checkPropTypes;
  401. var has$1 = Function.call.bind(Object.prototype.hasOwnProperty);
  402. var printWarning$1 = function() {};
  403. if (process.env.NODE_ENV !== 'production') {
  404. printWarning$1 = function(text) {
  405. var message = 'Warning: ' + text;
  406. if (typeof console !== 'undefined') {
  407. console.error(message);
  408. }
  409. try {
  410. // --- Welcome to debugging React ---
  411. // This error was thrown as a convenience so that you can use this stack
  412. // to find the callsite that caused this warning to fire.
  413. throw new Error(message);
  414. } catch (x) {}
  415. };
  416. }
  417. function emptyFunctionThatReturnsNull() {
  418. return null;
  419. }
  420. var factoryWithTypeCheckers = function(isValidElement, throwOnDirectAccess) {
  421. /* global Symbol */
  422. var ITERATOR_SYMBOL = typeof Symbol === 'function' && Symbol.iterator;
  423. var FAUX_ITERATOR_SYMBOL = '@@iterator'; // Before Symbol spec.
  424. /**
  425. * Returns the iterator method function contained on the iterable object.
  426. *
  427. * Be sure to invoke the function with the iterable as context:
  428. *
  429. * var iteratorFn = getIteratorFn(myIterable);
  430. * if (iteratorFn) {
  431. * var iterator = iteratorFn.call(myIterable);
  432. * ...
  433. * }
  434. *
  435. * @param {?object} maybeIterable
  436. * @return {?function}
  437. */
  438. function getIteratorFn(maybeIterable) {
  439. var iteratorFn = maybeIterable && (ITERATOR_SYMBOL && maybeIterable[ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL]);
  440. if (typeof iteratorFn === 'function') {
  441. return iteratorFn;
  442. }
  443. }
  444. /**
  445. * Collection of methods that allow declaration and validation of props that are
  446. * supplied to React components. Example usage:
  447. *
  448. * var Props = require('ReactPropTypes');
  449. * var MyArticle = React.createClass({
  450. * propTypes: {
  451. * // An optional string prop named "description".
  452. * description: Props.string,
  453. *
  454. * // A required enum prop named "category".
  455. * category: Props.oneOf(['News','Photos']).isRequired,
  456. *
  457. * // A prop named "dialog" that requires an instance of Dialog.
  458. * dialog: Props.instanceOf(Dialog).isRequired
  459. * },
  460. * render: function() { ... }
  461. * });
  462. *
  463. * A more formal specification of how these methods are used:
  464. *
  465. * type := array|bool|func|object|number|string|oneOf([...])|instanceOf(...)
  466. * decl := ReactPropTypes.{type}(.isRequired)?
  467. *
  468. * Each and every declaration produces a function with the same signature. This
  469. * allows the creation of custom validation functions. For example:
  470. *
  471. * var MyLink = React.createClass({
  472. * propTypes: {
  473. * // An optional string or URI prop named "href".
  474. * href: function(props, propName, componentName) {
  475. * var propValue = props[propName];
  476. * if (propValue != null && typeof propValue !== 'string' &&
  477. * !(propValue instanceof URI)) {
  478. * return new Error(
  479. * 'Expected a string or an URI for ' + propName + ' in ' +
  480. * componentName
  481. * );
  482. * }
  483. * }
  484. * },
  485. * render: function() {...}
  486. * });
  487. *
  488. * @internal
  489. */
  490. var ANONYMOUS = '<<anonymous>>';
  491. // Important!
  492. // Keep this list in sync with production version in `./factoryWithThrowingShims.js`.
  493. var ReactPropTypes = {
  494. array: createPrimitiveTypeChecker('array'),
  495. bool: createPrimitiveTypeChecker('boolean'),
  496. func: createPrimitiveTypeChecker('function'),
  497. number: createPrimitiveTypeChecker('number'),
  498. object: createPrimitiveTypeChecker('object'),
  499. string: createPrimitiveTypeChecker('string'),
  500. symbol: createPrimitiveTypeChecker('symbol'),
  501. any: createAnyTypeChecker(),
  502. arrayOf: createArrayOfTypeChecker,
  503. element: createElementTypeChecker(),
  504. elementType: createElementTypeTypeChecker(),
  505. instanceOf: createInstanceTypeChecker,
  506. node: createNodeChecker(),
  507. objectOf: createObjectOfTypeChecker,
  508. oneOf: createEnumTypeChecker,
  509. oneOfType: createUnionTypeChecker,
  510. shape: createShapeTypeChecker,
  511. exact: createStrictShapeTypeChecker,
  512. };
  513. /**
  514. * inlined Object.is polyfill to avoid requiring consumers ship their own
  515. * https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
  516. */
  517. /*eslint-disable no-self-compare*/
  518. function is(x, y) {
  519. // SameValue algorithm
  520. if (x === y) {
  521. // Steps 1-5, 7-10
  522. // Steps 6.b-6.e: +0 != -0
  523. return x !== 0 || 1 / x === 1 / y;
  524. } else {
  525. // Step 6.a: NaN == NaN
  526. return x !== x && y !== y;
  527. }
  528. }
  529. /*eslint-enable no-self-compare*/
  530. /**
  531. * We use an Error-like object for backward compatibility as people may call
  532. * PropTypes directly and inspect their output. However, we don't use real
  533. * Errors anymore. We don't inspect their stack anyway, and creating them
  534. * is prohibitively expensive if they are created too often, such as what
  535. * happens in oneOfType() for any type before the one that matched.
  536. */
  537. function PropTypeError(message) {
  538. this.message = message;
  539. this.stack = '';
  540. }
  541. // Make `instanceof Error` still work for returned errors.
  542. PropTypeError.prototype = Error.prototype;
  543. function createChainableTypeChecker(validate) {
  544. if (process.env.NODE_ENV !== 'production') {
  545. var manualPropTypeCallCache = {};
  546. var manualPropTypeWarningCount = 0;
  547. }
  548. function checkType(isRequired, props, propName, componentName, location, propFullName, secret) {
  549. componentName = componentName || ANONYMOUS;
  550. propFullName = propFullName || propName;
  551. if (secret !== ReactPropTypesSecret_1) {
  552. if (throwOnDirectAccess) {
  553. // New behavior only for users of `prop-types` package
  554. var err = new Error(
  555. 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
  556. 'Use `PropTypes.checkPropTypes()` to call them. ' +
  557. 'Read more at http://fb.me/use-check-prop-types'
  558. );
  559. err.name = 'Invariant Violation';
  560. throw err;
  561. } else if (process.env.NODE_ENV !== 'production' && typeof console !== 'undefined') {
  562. // Old behavior for people using React.PropTypes
  563. var cacheKey = componentName + ':' + propName;
  564. if (
  565. !manualPropTypeCallCache[cacheKey] &&
  566. // Avoid spamming the console because they are often not actionable except for lib authors
  567. manualPropTypeWarningCount < 3
  568. ) {
  569. printWarning$1(
  570. 'You are manually calling a React.PropTypes validation ' +
  571. 'function for the `' + propFullName + '` prop on `' + componentName + '`. This is deprecated ' +
  572. 'and will throw in the standalone `prop-types` package. ' +
  573. 'You may be seeing this warning due to a third-party PropTypes ' +
  574. 'library. See https://fb.me/react-warning-dont-call-proptypes ' + 'for details.'
  575. );
  576. manualPropTypeCallCache[cacheKey] = true;
  577. manualPropTypeWarningCount++;
  578. }
  579. }
  580. }
  581. if (props[propName] == null) {
  582. if (isRequired) {
  583. if (props[propName] === null) {
  584. return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required ' + ('in `' + componentName + '`, but its value is `null`.'));
  585. }
  586. return new PropTypeError('The ' + location + ' `' + propFullName + '` is marked as required in ' + ('`' + componentName + '`, but its value is `undefined`.'));
  587. }
  588. return null;
  589. } else {
  590. return validate(props, propName, componentName, location, propFullName);
  591. }
  592. }
  593. var chainedCheckType = checkType.bind(null, false);
  594. chainedCheckType.isRequired = checkType.bind(null, true);
  595. return chainedCheckType;
  596. }
  597. function createPrimitiveTypeChecker(expectedType) {
  598. function validate(props, propName, componentName, location, propFullName, secret) {
  599. var propValue = props[propName];
  600. var propType = getPropType(propValue);
  601. if (propType !== expectedType) {
  602. // `propValue` being instance of, say, date/regexp, pass the 'object'
  603. // check, but we can offer a more precise error message here rather than
  604. // 'of type `object`'.
  605. var preciseType = getPreciseType(propValue);
  606. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + preciseType + '` supplied to `' + componentName + '`, expected ') + ('`' + expectedType + '`.'));
  607. }
  608. return null;
  609. }
  610. return createChainableTypeChecker(validate);
  611. }
  612. function createAnyTypeChecker() {
  613. return createChainableTypeChecker(emptyFunctionThatReturnsNull);
  614. }
  615. function createArrayOfTypeChecker(typeChecker) {
  616. function validate(props, propName, componentName, location, propFullName) {
  617. if (typeof typeChecker !== 'function') {
  618. return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside arrayOf.');
  619. }
  620. var propValue = props[propName];
  621. if (!Array.isArray(propValue)) {
  622. var propType = getPropType(propValue);
  623. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an array.'));
  624. }
  625. for (var i = 0; i < propValue.length; i++) {
  626. var error = typeChecker(propValue, i, componentName, location, propFullName + '[' + i + ']', ReactPropTypesSecret_1);
  627. if (error instanceof Error) {
  628. return error;
  629. }
  630. }
  631. return null;
  632. }
  633. return createChainableTypeChecker(validate);
  634. }
  635. function createElementTypeChecker() {
  636. function validate(props, propName, componentName, location, propFullName) {
  637. var propValue = props[propName];
  638. if (!isValidElement(propValue)) {
  639. var propType = getPropType(propValue);
  640. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement.'));
  641. }
  642. return null;
  643. }
  644. return createChainableTypeChecker(validate);
  645. }
  646. function createElementTypeTypeChecker() {
  647. function validate(props, propName, componentName, location, propFullName) {
  648. var propValue = props[propName];
  649. if (!reactIs.isValidElementType(propValue)) {
  650. var propType = getPropType(propValue);
  651. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected a single ReactElement type.'));
  652. }
  653. return null;
  654. }
  655. return createChainableTypeChecker(validate);
  656. }
  657. function createInstanceTypeChecker(expectedClass) {
  658. function validate(props, propName, componentName, location, propFullName) {
  659. if (!(props[propName] instanceof expectedClass)) {
  660. var expectedClassName = expectedClass.name || ANONYMOUS;
  661. var actualClassName = getClassName(props[propName]);
  662. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + actualClassName + '` supplied to `' + componentName + '`, expected ') + ('instance of `' + expectedClassName + '`.'));
  663. }
  664. return null;
  665. }
  666. return createChainableTypeChecker(validate);
  667. }
  668. function createEnumTypeChecker(expectedValues) {
  669. if (!Array.isArray(expectedValues)) {
  670. if (process.env.NODE_ENV !== 'production') {
  671. if (arguments.length > 1) {
  672. printWarning$1(
  673. 'Invalid arguments supplied to oneOf, expected an array, got ' + arguments.length + ' arguments. ' +
  674. 'A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z]).'
  675. );
  676. } else {
  677. printWarning$1('Invalid argument supplied to oneOf, expected an array.');
  678. }
  679. }
  680. return emptyFunctionThatReturnsNull;
  681. }
  682. function validate(props, propName, componentName, location, propFullName) {
  683. var propValue = props[propName];
  684. for (var i = 0; i < expectedValues.length; i++) {
  685. if (is(propValue, expectedValues[i])) {
  686. return null;
  687. }
  688. }
  689. var valuesString = JSON.stringify(expectedValues, function replacer(key, value) {
  690. var type = getPreciseType(value);
  691. if (type === 'symbol') {
  692. return String(value);
  693. }
  694. return value;
  695. });
  696. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of value `' + String(propValue) + '` ' + ('supplied to `' + componentName + '`, expected one of ' + valuesString + '.'));
  697. }
  698. return createChainableTypeChecker(validate);
  699. }
  700. function createObjectOfTypeChecker(typeChecker) {
  701. function validate(props, propName, componentName, location, propFullName) {
  702. if (typeof typeChecker !== 'function') {
  703. return new PropTypeError('Property `' + propFullName + '` of component `' + componentName + '` has invalid PropType notation inside objectOf.');
  704. }
  705. var propValue = props[propName];
  706. var propType = getPropType(propValue);
  707. if (propType !== 'object') {
  708. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type ' + ('`' + propType + '` supplied to `' + componentName + '`, expected an object.'));
  709. }
  710. for (var key in propValue) {
  711. if (has$1(propValue, key)) {
  712. var error = typeChecker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1);
  713. if (error instanceof Error) {
  714. return error;
  715. }
  716. }
  717. }
  718. return null;
  719. }
  720. return createChainableTypeChecker(validate);
  721. }
  722. function createUnionTypeChecker(arrayOfTypeCheckers) {
  723. if (!Array.isArray(arrayOfTypeCheckers)) {
  724. process.env.NODE_ENV !== 'production' ? printWarning$1('Invalid argument supplied to oneOfType, expected an instance of array.') : void 0;
  725. return emptyFunctionThatReturnsNull;
  726. }
  727. for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
  728. var checker = arrayOfTypeCheckers[i];
  729. if (typeof checker !== 'function') {
  730. printWarning$1(
  731. 'Invalid argument supplied to oneOfType. Expected an array of check functions, but ' +
  732. 'received ' + getPostfixForTypeWarning(checker) + ' at index ' + i + '.'
  733. );
  734. return emptyFunctionThatReturnsNull;
  735. }
  736. }
  737. function validate(props, propName, componentName, location, propFullName) {
  738. for (var i = 0; i < arrayOfTypeCheckers.length; i++) {
  739. var checker = arrayOfTypeCheckers[i];
  740. if (checker(props, propName, componentName, location, propFullName, ReactPropTypesSecret_1) == null) {
  741. return null;
  742. }
  743. }
  744. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`.'));
  745. }
  746. return createChainableTypeChecker(validate);
  747. }
  748. function createNodeChecker() {
  749. function validate(props, propName, componentName, location, propFullName) {
  750. if (!isNode(props[propName])) {
  751. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` supplied to ' + ('`' + componentName + '`, expected a ReactNode.'));
  752. }
  753. return null;
  754. }
  755. return createChainableTypeChecker(validate);
  756. }
  757. function createShapeTypeChecker(shapeTypes) {
  758. function validate(props, propName, componentName, location, propFullName) {
  759. var propValue = props[propName];
  760. var propType = getPropType(propValue);
  761. if (propType !== 'object') {
  762. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
  763. }
  764. for (var key in shapeTypes) {
  765. var checker = shapeTypes[key];
  766. if (!checker) {
  767. continue;
  768. }
  769. var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1);
  770. if (error) {
  771. return error;
  772. }
  773. }
  774. return null;
  775. }
  776. return createChainableTypeChecker(validate);
  777. }
  778. function createStrictShapeTypeChecker(shapeTypes) {
  779. function validate(props, propName, componentName, location, propFullName) {
  780. var propValue = props[propName];
  781. var propType = getPropType(propValue);
  782. if (propType !== 'object') {
  783. return new PropTypeError('Invalid ' + location + ' `' + propFullName + '` of type `' + propType + '` ' + ('supplied to `' + componentName + '`, expected `object`.'));
  784. }
  785. // We need to check all keys in case some are required but missing from
  786. // props.
  787. var allKeys = objectAssign({}, props[propName], shapeTypes);
  788. for (var key in allKeys) {
  789. var checker = shapeTypes[key];
  790. if (!checker) {
  791. return new PropTypeError(
  792. 'Invalid ' + location + ' `' + propFullName + '` key `' + key + '` supplied to `' + componentName + '`.' +
  793. '\nBad object: ' + JSON.stringify(props[propName], null, ' ') +
  794. '\nValid keys: ' + JSON.stringify(Object.keys(shapeTypes), null, ' ')
  795. );
  796. }
  797. var error = checker(propValue, key, componentName, location, propFullName + '.' + key, ReactPropTypesSecret_1);
  798. if (error) {
  799. return error;
  800. }
  801. }
  802. return null;
  803. }
  804. return createChainableTypeChecker(validate);
  805. }
  806. function isNode(propValue) {
  807. switch (typeof propValue) {
  808. case 'number':
  809. case 'string':
  810. case 'undefined':
  811. return true;
  812. case 'boolean':
  813. return !propValue;
  814. case 'object':
  815. if (Array.isArray(propValue)) {
  816. return propValue.every(isNode);
  817. }
  818. if (propValue === null || isValidElement(propValue)) {
  819. return true;
  820. }
  821. var iteratorFn = getIteratorFn(propValue);
  822. if (iteratorFn) {
  823. var iterator = iteratorFn.call(propValue);
  824. var step;
  825. if (iteratorFn !== propValue.entries) {
  826. while (!(step = iterator.next()).done) {
  827. if (!isNode(step.value)) {
  828. return false;
  829. }
  830. }
  831. } else {
  832. // Iterator will provide entry [k,v] tuples rather than values.
  833. while (!(step = iterator.next()).done) {
  834. var entry = step.value;
  835. if (entry) {
  836. if (!isNode(entry[1])) {
  837. return false;
  838. }
  839. }
  840. }
  841. }
  842. } else {
  843. return false;
  844. }
  845. return true;
  846. default:
  847. return false;
  848. }
  849. }
  850. function isSymbol(propType, propValue) {
  851. // Native Symbol.
  852. if (propType === 'symbol') {
  853. return true;
  854. }
  855. // falsy value can't be a Symbol
  856. if (!propValue) {
  857. return false;
  858. }
  859. // 19.4.3.5 Symbol.prototype[@@toStringTag] === 'Symbol'
  860. if (propValue['@@toStringTag'] === 'Symbol') {
  861. return true;
  862. }
  863. // Fallback for non-spec compliant Symbols which are polyfilled.
  864. if (typeof Symbol === 'function' && propValue instanceof Symbol) {
  865. return true;
  866. }
  867. return false;
  868. }
  869. // Equivalent of `typeof` but with special handling for array and regexp.
  870. function getPropType(propValue) {
  871. var propType = typeof propValue;
  872. if (Array.isArray(propValue)) {
  873. return 'array';
  874. }
  875. if (propValue instanceof RegExp) {
  876. // Old webkits (at least until Android 4.0) return 'function' rather than
  877. // 'object' for typeof a RegExp. We'll normalize this here so that /bla/
  878. // passes PropTypes.object.
  879. return 'object';
  880. }
  881. if (isSymbol(propType, propValue)) {
  882. return 'symbol';
  883. }
  884. return propType;
  885. }
  886. // This handles more types than `getPropType`. Only used for error messages.
  887. // See `createPrimitiveTypeChecker`.
  888. function getPreciseType(propValue) {
  889. if (typeof propValue === 'undefined' || propValue === null) {
  890. return '' + propValue;
  891. }
  892. var propType = getPropType(propValue);
  893. if (propType === 'object') {
  894. if (propValue instanceof Date) {
  895. return 'date';
  896. } else if (propValue instanceof RegExp) {
  897. return 'regexp';
  898. }
  899. }
  900. return propType;
  901. }
  902. // Returns a string that is postfixed to a warning about an invalid type.
  903. // For example, "undefined" or "of type array"
  904. function getPostfixForTypeWarning(value) {
  905. var type = getPreciseType(value);
  906. switch (type) {
  907. case 'array':
  908. case 'object':
  909. return 'an ' + type;
  910. case 'boolean':
  911. case 'date':
  912. case 'regexp':
  913. return 'a ' + type;
  914. default:
  915. return type;
  916. }
  917. }
  918. // Returns class name of the object, if any.
  919. function getClassName(propValue) {
  920. if (!propValue.constructor || !propValue.constructor.name) {
  921. return ANONYMOUS;
  922. }
  923. return propValue.constructor.name;
  924. }
  925. ReactPropTypes.checkPropTypes = checkPropTypes_1;
  926. ReactPropTypes.resetWarningCache = checkPropTypes_1.resetWarningCache;
  927. ReactPropTypes.PropTypes = ReactPropTypes;
  928. return ReactPropTypes;
  929. };
  930. function emptyFunction() {}
  931. function emptyFunctionWithReset() {}
  932. emptyFunctionWithReset.resetWarningCache = emptyFunction;
  933. var factoryWithThrowingShims = function() {
  934. function shim(props, propName, componentName, location, propFullName, secret) {
  935. if (secret === ReactPropTypesSecret_1) {
  936. // It is still safe when called from React.
  937. return;
  938. }
  939. var err = new Error(
  940. 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +
  941. 'Use PropTypes.checkPropTypes() to call them. ' +
  942. 'Read more at http://fb.me/use-check-prop-types'
  943. );
  944. err.name = 'Invariant Violation';
  945. throw err;
  946. } shim.isRequired = shim;
  947. function getShim() {
  948. return shim;
  949. } // Important!
  950. // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.
  951. var ReactPropTypes = {
  952. array: shim,
  953. bool: shim,
  954. func: shim,
  955. number: shim,
  956. object: shim,
  957. string: shim,
  958. symbol: shim,
  959. any: shim,
  960. arrayOf: getShim,
  961. element: shim,
  962. elementType: shim,
  963. instanceOf: getShim,
  964. node: shim,
  965. objectOf: getShim,
  966. oneOf: getShim,
  967. oneOfType: getShim,
  968. shape: getShim,
  969. exact: getShim,
  970. checkPropTypes: emptyFunctionWithReset,
  971. resetWarningCache: emptyFunction
  972. };
  973. ReactPropTypes.PropTypes = ReactPropTypes;
  974. return ReactPropTypes;
  975. };
  976. var propTypes = createCommonjsModule(function (module) {
  977. /**
  978. * Copyright (c) 2013-present, Facebook, Inc.
  979. *
  980. * This source code is licensed under the MIT license found in the
  981. * LICENSE file in the root directory of this source tree.
  982. */
  983. if (process.env.NODE_ENV !== 'production') {
  984. var ReactIs = reactIs;
  985. // By explicitly using `prop-types` you are opting into new development behavior.
  986. // http://fb.me/prop-types-in-prod
  987. var throwOnDirectAccess = true;
  988. module.exports = factoryWithTypeCheckers(ReactIs.isElement, throwOnDirectAccess);
  989. } else {
  990. // By explicitly using `prop-types` you are opting into new production behavior.
  991. // http://fb.me/prop-types-in-prod
  992. module.exports = factoryWithThrowingShims();
  993. }
  994. });
  995. const filter = createFilterOptions();
  996. const BootstrapInput = withStyles(theme => ({
  997. root: {
  998. 'label + &': {
  999. marginTop: theme.spacing(3)
  1000. }
  1001. },
  1002. input: {
  1003. borderRadius: 4,
  1004. position: 'relative',
  1005. backgroundColor: 'transparent',
  1006. border: '1px solid #ced4da',
  1007. fontSize: 16,
  1008. padding: '10px 26px 10px 12px',
  1009. transition: theme.transitions.create(['border-color', 'box-shadow']),
  1010. fontFamily: ['-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', '"Helvetica Neue"', 'Arial', 'sans-serif', '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"'].join(','),
  1011. '&:focus': {
  1012. borderRadius: 4,
  1013. borderColor: '#80bdff',
  1014. boxShadow: '0 0 0 0.2rem rgba(0,123,255,.25)'
  1015. }
  1016. }
  1017. }))(InputBase);
  1018. const useStyles = makeStyles(theme => ({
  1019. root: {
  1020. width: '100%'
  1021. },
  1022. paper: {
  1023. width: '100%',
  1024. marginBottom: theme.spacing(2)
  1025. },
  1026. table: {
  1027. minWidth: 750
  1028. },
  1029. visuallyHidden: {
  1030. border: 0,
  1031. clip: 'rect(0 0 0 0)',
  1032. height: 1,
  1033. margin: -1,
  1034. overflow: 'hidden',
  1035. padding: 0,
  1036. position: 'absolute',
  1037. top: 20,
  1038. width: 1
  1039. },
  1040. underline: {
  1041. "&&&:before": {
  1042. borderBottom: "none"
  1043. },
  1044. "&&:after": {
  1045. borderBottom: "none"
  1046. }
  1047. }
  1048. }));
  1049. function MButton(props) {
  1050. const classes = useStyles();
  1051. const {
  1052. action,
  1053. onCallback
  1054. } = props;
  1055. const handleAction = e => {
  1056. e.preventDefault();
  1057. onCallback(e);
  1058. };
  1059. return /*#__PURE__*/React.createElement("div", {
  1060. className: classes.root
  1061. }, /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  1062. variant: "contained",
  1063. style: {
  1064. float: 'right',
  1065. margin: "5px"
  1066. },
  1067. onClick: e => handleAction(e)
  1068. }, action.icon, action.label)));
  1069. }
  1070. MButton.propTypes = {
  1071. history: propTypes.object,
  1072. action: propTypes.object.isRequired,
  1073. onCallback: propTypes.func.isRequired
  1074. };
  1075. function MkForm(props) {
  1076. const classes = useStyles();
  1077. const {
  1078. fields = [],
  1079. data = {},
  1080. onDropdownCreateNew,
  1081. actions = [],
  1082. partHeaders
  1083. } = props;
  1084. const [_data, setDataField] = React.useState(data !== undefined ? data : {});
  1085. const [open, setOpen] = React.useState(false);
  1086. const [selectedPhoto, setSelectedPhoto] = React.useState("#");
  1087. const handleTextString = (e, fieldName) => {
  1088. setDataField({ ..._data,
  1089. [fieldName]: e.target.value
  1090. });
  1091. };
  1092. const handleTextNumber = (e, fieldName) => {
  1093. setDataField({ ..._data,
  1094. [fieldName]: e.target.value
  1095. });
  1096. };
  1097. const handleTextMultiline = (e, fieldName) => {
  1098. setDataField({ ..._data,
  1099. [fieldName]: e.target.value
  1100. });
  1101. };
  1102. const handleDate = (e, fieldName) => {
  1103. setDataField({ ..._data,
  1104. [fieldName]: e.target.value
  1105. });
  1106. };
  1107. const handleDropDownChange = (e, fieldName) => {
  1108. var selectedIndex = e.target.options.selectedIndex;
  1109. var selectedValue = e.target.options[selectedIndex].getAttribute('name');
  1110. var fn = fieldName.split('_');
  1111. var fieldId = fn[0] + '_' + 'id';
  1112. setDataField({ ..._data,
  1113. [fieldName]: selectedValue,
  1114. [fieldId]: e.target.value
  1115. });
  1116. };
  1117. const handleCanCreateNew = data => {
  1118. onDropdownCreateNew(data);
  1119. };
  1120. const onChangeValue = (fieldName, value) => {
  1121. setDataField({ ..._data,
  1122. [fieldName]: value
  1123. });
  1124. };
  1125. const onFileChange = (e, f) => {};
  1126. const handleSelectItemDialog = () => {};
  1127. return /*#__PURE__*/React.createElement("div", {
  1128. className: classes.root
  1129. }, /*#__PURE__*/React.createElement(Grid, {
  1130. container: true
  1131. }, /*#__PURE__*/React.createElement(Grid, {
  1132. item: true,
  1133. xs: 12
  1134. }, fields.map((f, i) => {
  1135. if (f.type === 'text_string') {
  1136. return /*#__PURE__*/React.createElement(Grid, {
  1137. key: f.field_name,
  1138. container: true,
  1139. style: {
  1140. display: 'flex',
  1141. alignItems: 'center',
  1142. marginBottom: '10px'
  1143. }
  1144. }, /*#__PURE__*/React.createElement(Grid, {
  1145. item: true,
  1146. xs: 12,
  1147. sm: 5
  1148. }, /*#__PURE__*/React.createElement(Box, {
  1149. style: {
  1150. width: '150px'
  1151. }
  1152. }, /*#__PURE__*/React.createElement(Typography, {
  1153. style: {
  1154. paddingRight: '30px',
  1155. color: 'grey'
  1156. }
  1157. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1158. item: true,
  1159. xs: 12,
  1160. sm: 7
  1161. }, /*#__PURE__*/React.createElement(TextField, {
  1162. id: f.field_name,
  1163. variant: "outlined",
  1164. autoComplete: "off",
  1165. size: "small",
  1166. style: {
  1167. width: '100%'
  1168. },
  1169. InputProps: {
  1170. readOnly: f.readOnly ? f.readOnly : false
  1171. },
  1172. value: _data !== undefined ? _data[f.field_name] : '',
  1173. onChange: e => handleTextString(e, f.field_name)
  1174. })));
  1175. } else if (f.type === 'text_number') {
  1176. return /*#__PURE__*/React.createElement(Grid, {
  1177. key: f.field_name,
  1178. container: true,
  1179. style: {
  1180. display: 'flex',
  1181. alignItems: 'center',
  1182. marginBottom: '10px'
  1183. }
  1184. }, /*#__PURE__*/React.createElement(Grid, {
  1185. item: true,
  1186. xs: 12,
  1187. sm: 5
  1188. }, /*#__PURE__*/React.createElement(Box, {
  1189. style: {
  1190. width: '150px'
  1191. }
  1192. }, /*#__PURE__*/React.createElement(Typography, {
  1193. style: {
  1194. paddingRight: '30px',
  1195. color: 'grey'
  1196. }
  1197. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1198. item: true,
  1199. xs: 12,
  1200. sm: 7
  1201. }, /*#__PURE__*/React.createElement(TextField, {
  1202. id: f.field_name,
  1203. variant: "outlined",
  1204. autoComplete: "off",
  1205. size: "small",
  1206. style: {
  1207. width: '100%'
  1208. },
  1209. type: "number",
  1210. value: _data !== undefined ? _data[f.field_name] : '',
  1211. onChange: e => handleTextNumber(e, f.field_name)
  1212. })));
  1213. } else if (f.type === 'text_multiline') {
  1214. return /*#__PURE__*/React.createElement(Grid, {
  1215. key: f.field_name,
  1216. container: true,
  1217. style: {
  1218. display: 'flex',
  1219. alignItems: 'center',
  1220. marginBottom: '10px'
  1221. }
  1222. }, /*#__PURE__*/React.createElement(Grid, {
  1223. item: true,
  1224. xs: 12,
  1225. sm: 5
  1226. }, /*#__PURE__*/React.createElement(Box, {
  1227. style: {
  1228. width: '150px'
  1229. }
  1230. }, /*#__PURE__*/React.createElement(Typography, {
  1231. style: {
  1232. paddingRight: '30px',
  1233. color: 'grey'
  1234. }
  1235. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1236. item: true,
  1237. xs: 12,
  1238. sm: 7
  1239. }, /*#__PURE__*/React.createElement(TextField, {
  1240. id: f.field_name,
  1241. multiline: true,
  1242. autoComplete: "off",
  1243. rows: 3,
  1244. size: "small",
  1245. style: {
  1246. width: '100%'
  1247. },
  1248. value: _data !== undefined ? _data[f.field_name] : '',
  1249. variant: "outlined",
  1250. onChange: e => handleTextMultiline(e, f.field_name)
  1251. })));
  1252. } else if (f.type === 'date') {
  1253. return /*#__PURE__*/React.createElement(Grid, {
  1254. key: f.field_name,
  1255. container: true,
  1256. style: {
  1257. display: 'flex',
  1258. alignItems: 'center',
  1259. marginBottom: '10px'
  1260. }
  1261. }, /*#__PURE__*/React.createElement(Grid, {
  1262. item: true,
  1263. xs: 12,
  1264. sm: 5
  1265. }, /*#__PURE__*/React.createElement(Box, {
  1266. style: {
  1267. width: '150px'
  1268. }
  1269. }, /*#__PURE__*/React.createElement(Typography, {
  1270. style: {
  1271. paddingRight: '30px',
  1272. color: 'grey'
  1273. }
  1274. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1275. item: true,
  1276. xs: 12,
  1277. sm: 7
  1278. }, /*#__PURE__*/React.createElement(TextField, {
  1279. id: f.field_name,
  1280. variant: "outlined",
  1281. autoComplete: "off",
  1282. size: "small",
  1283. value: _data !== undefined ? _data[f.field_name] : '',
  1284. type: "date",
  1285. style: {
  1286. width: '100%'
  1287. },
  1288. onChange: e => handleDate(e, f.field_name)
  1289. })));
  1290. } else if (f.type === 'dropdown') {
  1291. if (f.options !== undefined && f.option_label_field !== undefined) {
  1292. if (f.field_name === 'priority') {
  1293. return /*#__PURE__*/React.createElement(Grid, {
  1294. key: f.field_name,
  1295. container: true,
  1296. style: {
  1297. display: 'flex',
  1298. alignItems: 'center',
  1299. marginBottom: '10px'
  1300. }
  1301. }, /*#__PURE__*/React.createElement(Grid, {
  1302. item: true,
  1303. xs: 12,
  1304. sm: 5
  1305. }, /*#__PURE__*/React.createElement(Box, {
  1306. style: {
  1307. width: '150px'
  1308. }
  1309. }, /*#__PURE__*/React.createElement(Typography, {
  1310. style: {
  1311. paddingRight: '30px',
  1312. color: 'grey'
  1313. }
  1314. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1315. item: true,
  1316. xs: 12,
  1317. sm: 7
  1318. }, /*#__PURE__*/React.createElement(NativeSelect, {
  1319. value: _data !== undefined ? _data[f.field_name] : '',
  1320. onChange: e => handleDropDownChange(e, f.field_name),
  1321. id: f.field_name,
  1322. input: /*#__PURE__*/React.createElement(BootstrapInput, null),
  1323. style: {
  1324. width: '100%'
  1325. }
  1326. }, /*#__PURE__*/React.createElement("option", {
  1327. "aria-label": "None",
  1328. value: ""
  1329. }, "Select"), f.options.map((d, i) => {
  1330. return /*#__PURE__*/React.createElement("option", {
  1331. name: d.name,
  1332. value: d.id,
  1333. key: d.id
  1334. }, d.name);
  1335. }))));
  1336. } else {
  1337. return /*#__PURE__*/React.createElement(Grid, {
  1338. key: f.field_name,
  1339. container: true,
  1340. style: {
  1341. display: 'flex',
  1342. alignItems: 'center',
  1343. marginBottom: '10px'
  1344. }
  1345. }, /*#__PURE__*/React.createElement(Grid, {
  1346. item: true,
  1347. xs: 12,
  1348. sm: 5
  1349. }, /*#__PURE__*/React.createElement(Box, {
  1350. style: {
  1351. width: '150px'
  1352. }
  1353. }, /*#__PURE__*/React.createElement(Typography, {
  1354. style: {
  1355. paddingRight: '30px',
  1356. color: 'grey'
  1357. }
  1358. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1359. item: true,
  1360. xs: 12,
  1361. sm: 7
  1362. }, /*#__PURE__*/React.createElement(Autocomplete, {
  1363. id: "combo-box-demo",
  1364. options: f.options,
  1365. getOptionLabel: option => {
  1366. if (typeof option === 'string') {
  1367. return option;
  1368. }
  1369. return option[f.option_label_field];
  1370. },
  1371. style: {
  1372. width: '100%'
  1373. },
  1374. size: "small",
  1375. value: _data !== undefined ? _data[f.field_name] ? _data[f.field_name] : " " : " ",
  1376. filterOptions: (options, params) => {
  1377. console.log("Autocomplete", f.can_create);
  1378. if (f.can_create) {
  1379. var newFilter = ['+ Add New'];
  1380. var filtered = filter(options, params);
  1381. return [...newFilter, ...filtered];
  1382. } else {
  1383. var _filtered = filter(options, params);
  1384. return _filtered;
  1385. }
  1386. },
  1387. onChange: (event, newValue) => {
  1388. if (typeof newValue === 'string') {
  1389. console.log('f.field_name', f.field_name, " f.can_create", f.can_create);
  1390. var d = {
  1391. "canCreate": f.can_create,
  1392. "fields": f.fields,
  1393. "name": f.name,
  1394. "fieldName": f.field_name
  1395. };
  1396. handleCanCreateNew(d);
  1397. } else {
  1398. if (newValue != null && newValue.inputValue !== '' && newValue.product_desc !== "") {
  1399. onChangeValue(f.field_name, newValue[f.option_label_field]);
  1400. }
  1401. }
  1402. },
  1403. renderInput: params => /*#__PURE__*/React.createElement(TextField, Object.assign({}, params, {
  1404. variant: "outlined"
  1405. }))
  1406. })));
  1407. }
  1408. }
  1409. } else if (f.type === 'photo_list') {
  1410. console.log('photo_list:', _data);
  1411. return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Grid, {
  1412. key: f.field_name,
  1413. container: true,
  1414. style: {
  1415. display: 'flex',
  1416. alignItems: 'center',
  1417. marginBottom: '10px'
  1418. }
  1419. }, /*#__PURE__*/React.createElement(Grid, {
  1420. item: true,
  1421. xs: 12,
  1422. sm: 5
  1423. }, /*#__PURE__*/React.createElement(Box, {
  1424. style: {
  1425. width: '150px'
  1426. }
  1427. }, /*#__PURE__*/React.createElement(Typography, {
  1428. style: {
  1429. paddingRight: '30px',
  1430. color: 'grey'
  1431. }
  1432. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1433. item: true,
  1434. xs: 12,
  1435. sm: 7
  1436. }, /*#__PURE__*/React.createElement("div", {
  1437. style: {
  1438. display: 'flex',
  1439. alignItems: 'center',
  1440. marginBottom: '10px'
  1441. }
  1442. }, /*#__PURE__*/React.createElement("form", null, /*#__PURE__*/React.createElement("div", {
  1443. className: "form-group"
  1444. }, /*#__PURE__*/React.createElement("input", {
  1445. type: "file",
  1446. name: "imgCollection",
  1447. onChange: e => onFileChange(),
  1448. multiple: true
  1449. })))))), _data[f.field_name] !== undefined && _data[f.field_name].length !== 0 ? /*#__PURE__*/React.createElement(Grid, {
  1450. key: f.field_name,
  1451. container: true,
  1452. style: {
  1453. display: 'flex',
  1454. alignItems: 'center',
  1455. marginBottom: '10px'
  1456. }
  1457. }, /*#__PURE__*/React.createElement(Grid, {
  1458. item: true,
  1459. xs: 12
  1460. }, /*#__PURE__*/React.createElement("div", {
  1461. style: {
  1462. display: 'block',
  1463. alignItems: 'center',
  1464. marginBottom: '10px'
  1465. }
  1466. }, /*#__PURE__*/React.createElement(GridList, {
  1467. className: classes.gridList
  1468. }, _data[f.field_name] === undefined ? /*#__PURE__*/React.createElement("span", null) : _data[f.field_name].map(tile => /*#__PURE__*/React.createElement(GridListTile, {
  1469. key: tile,
  1470. style: {
  1471. width: '100px',
  1472. height: '100px'
  1473. }
  1474. }, /*#__PURE__*/React.createElement("img", {
  1475. src: tile,
  1476. alt: tile,
  1477. onClick: e => {
  1478. setOpen(true);
  1479. }
  1480. })))))), /*#__PURE__*/React.createElement(Dialog, {
  1481. maxWidth: "lg",
  1482. "aria-labelledby": "customized-dialog-title",
  1483. open: open
  1484. }, /*#__PURE__*/React.createElement(DialogTitle, {
  1485. id: "customized-dialog-title",
  1486. onClose: e => setOpen(false)
  1487. }, "Photos"), /*#__PURE__*/React.createElement(DialogContent, {
  1488. dividers: true
  1489. }, /*#__PURE__*/React.createElement(Grid, {
  1490. item: true,
  1491. xs: 12
  1492. }, /*#__PURE__*/React.createElement(Grid, null, /*#__PURE__*/React.createElement("img", {
  1493. src: selectedPhoto,
  1494. className: "show-img",
  1495. alt: "logo"
  1496. })), /*#__PURE__*/React.createElement("br", null), /*#__PURE__*/React.createElement(Grid, {
  1497. container: true,
  1498. spacing: 3
  1499. }, _data[f.field_name].length > 0 ? _data[f.field_name].map(value => /*#__PURE__*/React.createElement(Grid, {
  1500. key: value,
  1501. item: true
  1502. }, /*#__PURE__*/React.createElement(Box, {
  1503. className: "square"
  1504. }, " ", /*#__PURE__*/React.createElement("img", {
  1505. src: value,
  1506. className: "thumnail-img",
  1507. alt: "logo",
  1508. onClick: e => setSelectedPhoto(value)
  1509. })))) : /*#__PURE__*/React.createElement("span", null)))))) : /*#__PURE__*/React.createElement(Grid, null));
  1510. } else if (f.type === 'list') {
  1511. console.log('list', _data[f.field_name]);
  1512. return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Grid, {
  1513. key: f.field_name,
  1514. container: true,
  1515. style: {
  1516. display: 'flex',
  1517. alignItems: 'center',
  1518. marginBottom: '10px'
  1519. }
  1520. }, /*#__PURE__*/React.createElement(Grid, {
  1521. item: true,
  1522. xs: 12,
  1523. sm: 5
  1524. }, /*#__PURE__*/React.createElement(Box, {
  1525. style: {
  1526. width: '150px'
  1527. }
  1528. }, /*#__PURE__*/React.createElement(Typography, {
  1529. style: {
  1530. paddingRight: '30px',
  1531. color: 'grey'
  1532. }
  1533. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1534. item: true,
  1535. xs: 12,
  1536. sm: 7
  1537. }, /*#__PURE__*/React.createElement("div", {
  1538. style: {
  1539. display: 'block',
  1540. alignItems: 'center',
  1541. marginBottom: '10px'
  1542. }
  1543. }, /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  1544. onClick: handleSelectItemDialog
  1545. }, /*#__PURE__*/React.createElement(AddIcon, null)))))), /*#__PURE__*/React.createElement(Grid, {
  1546. key: f.field_name,
  1547. container: true,
  1548. style: {
  1549. display: 'block',
  1550. alignItems: 'center',
  1551. marginBottom: '10px'
  1552. }
  1553. }, /*#__PURE__*/React.createElement("div", {
  1554. style: {
  1555. display: 'block',
  1556. alignItems: 'center',
  1557. marginBottom: '10px'
  1558. }
  1559. }, /*#__PURE__*/React.createElement(TableContainer, null, /*#__PURE__*/React.createElement(Table, {
  1560. className: classes.table,
  1561. size: "small",
  1562. "aria-label": "a dense table"
  1563. }, /*#__PURE__*/React.createElement(TableHead, null, /*#__PURE__*/React.createElement(TableRow, null, partHeaders.map((h, i) => {
  1564. return /*#__PURE__*/React.createElement(TableCell, {
  1565. key: h.id,
  1566. align: "left"
  1567. }, h.label);
  1568. }))), /*#__PURE__*/React.createElement(TableBody, null, _data[f.field_name].length > 0 ? _data[f.field_name].map(row => /*#__PURE__*/React.createElement(TableRow, {
  1569. key: row.name
  1570. }, partHeaders.map((h, i) => {
  1571. return /*#__PURE__*/React.createElement(TableCell, {
  1572. key: h.id,
  1573. align: h.numeric ? 'right' : 'left'
  1574. }, row[h.id]);
  1575. }))) : /*#__PURE__*/React.createElement("span", null)))))));
  1576. } else if (f.type === 'time') {
  1577. return /*#__PURE__*/React.createElement(Grid, {
  1578. key: f.field_name,
  1579. container: true,
  1580. style: {
  1581. display: 'flex',
  1582. alignItems: 'center',
  1583. marginBottom: '10px'
  1584. }
  1585. }, /*#__PURE__*/React.createElement(Grid, {
  1586. item: true,
  1587. xs: 12,
  1588. sm: 5
  1589. }, /*#__PURE__*/React.createElement(Box, {
  1590. style: {
  1591. width: '150px'
  1592. }
  1593. }, /*#__PURE__*/React.createElement(Typography, {
  1594. style: {
  1595. paddingRight: '30px',
  1596. color: 'grey'
  1597. }
  1598. }, f.label))), /*#__PURE__*/React.createElement(Grid, {
  1599. item: true,
  1600. xs: 12,
  1601. sm: 7
  1602. }, " ", /*#__PURE__*/React.createElement(TextField, {
  1603. id: "time",
  1604. variant: "outlined",
  1605. size: "small",
  1606. type: "time",
  1607. className: classes.textField,
  1608. InputLabelProps: {
  1609. shrink: true
  1610. },
  1611. inputProps: {
  1612. step: 300
  1613. }
  1614. })));
  1615. }
  1616. })), actions.length > 0 ? /*#__PURE__*/React.createElement(Grid, {
  1617. item: true,
  1618. xs: 12
  1619. }, actions.map(a => {
  1620. if (a.status === _data.status) {
  1621. return /*#__PURE__*/React.createElement(MButton, {
  1622. action: a,
  1623. onCallback: event => a.callback(event, _data)
  1624. });
  1625. }
  1626. })) : /*#__PURE__*/React.createElement(Grid, null)));
  1627. }
  1628. MkForm.propTypes = {
  1629. history: propTypes.object,
  1630. fields: propTypes.array.isRequired,
  1631. data: propTypes.object,
  1632. isNew: propTypes.bool,
  1633. actions: propTypes.array,
  1634. onDropdownCreateNew: propTypes.func
  1635. };
  1636. function descendingComparator(a, b, _orderBy) {
  1637. if (b[_orderBy] < a[_orderBy]) {
  1638. return -1;
  1639. }
  1640. if (b[_orderBy] > a[_orderBy]) {
  1641. return 1;
  1642. }
  1643. return 0;
  1644. }
  1645. function getComparator(_order, _orderBy) {
  1646. return _order === 'desc' ? (a, b) => descendingComparator(a, b, _orderBy) : (a, b) => -descendingComparator(a, b, _orderBy);
  1647. }
  1648. function stableSort(array, comparator) {
  1649. const stabilizedThis = array.map((el, index) => [el, index]);
  1650. stabilizedThis.sort((a, b) => {
  1651. const _order = comparator(a[0], b[0]);
  1652. if (_order !== 0) return _order;
  1653. return a[1] - b[1];
  1654. });
  1655. return stabilizedThis.map(el => el[0]);
  1656. }
  1657. function EnhancedTableHead(props) {
  1658. const {
  1659. headerStyles,
  1660. _order,
  1661. _orderBy,
  1662. onRequestSort,
  1663. headCells
  1664. } = props;
  1665. const createSortHandler = property => event => {
  1666. onRequestSort(event, property);
  1667. };
  1668. const sortedStyle = createMuiTheme({
  1669. overrides: {
  1670. MuiTableSortLabel: {
  1671. root: {
  1672. "&$active": {
  1673. color: headerStyles.sortedHeader === undefined ? 'grey' : headerStyles.sortedHeader,
  1674. "&& $icon": {
  1675. color: headerStyles.sortedHeader === undefined ? 'grey' : headerStyles.sortedHeader
  1676. }
  1677. }
  1678. }
  1679. }
  1680. }
  1681. });
  1682. return /*#__PURE__*/React.createElement(ThemeProvider, {
  1683. theme: sortedStyle
  1684. }, /*#__PURE__*/React.createElement(TableHead$1, null, /*#__PURE__*/React.createElement(TableRow$1, null, headCells.map(headCell => /*#__PURE__*/React.createElement(TableCell$1, {
  1685. className: headerStyles.head,
  1686. key: headCell.id,
  1687. align: headCell.numeric ? 'right' : 'left',
  1688. padding: headCell.disablePadding ? 'none' : 'default',
  1689. sortDirection: _orderBy === headCell.id ? _order : false,
  1690. style: {
  1691. width: headCell.id === 'sr' ? '15px' : headCell.width ? headCell.width : ''
  1692. }
  1693. }, headCell.id !== 'sr' ? /*#__PURE__*/React.createElement(TableSortLabel, {
  1694. active: _orderBy === headCell.id,
  1695. direction: _orderBy === headCell.id ? _order : 'asc',
  1696. onClick: createSortHandler(headCell.id),
  1697. style: {
  1698. whiteSpace: "nowrap"
  1699. }
  1700. }, headCell.label, _orderBy === headCell.id ? /*#__PURE__*/React.createElement("span", {
  1701. className: headerStyles.visuallyHidden
  1702. }, _order === 'desc' ? 'sorted descending' : 'sorted ascending') : null) : /*#__PURE__*/React.createElement(TableSortLabel, {
  1703. hideSortIcon: "true",
  1704. align: "right"
  1705. }, headCell.label))), /*#__PURE__*/React.createElement(TableCell$1, {
  1706. className: headerStyles.head,
  1707. style: {
  1708. width: '100px'
  1709. }
  1710. }))));
  1711. }
  1712. EnhancedTableHead.propTypes = {
  1713. headerStyles: propTypes.object.isRequired,
  1714. onRequestSort: propTypes.func.isRequired,
  1715. onSelectAllClick: propTypes.func.isRequired,
  1716. _order: propTypes.oneOf(['asc', 'desc']).isRequired,
  1717. _orderBy: propTypes.string.isRequired,
  1718. rowCount: propTypes.number.isRequired
  1719. };
  1720. const useStyles$1 = makeStyles({
  1721. root: {
  1722. width: '100%'
  1723. },
  1724. table: {
  1725. tableLayout: 'fixed'
  1726. },
  1727. visuallyHidden: {
  1728. b_order: 0,
  1729. clip: 'rect(0 0 0 0)',
  1730. height: 1,
  1731. margin: -1,
  1732. overflow: 'hidden',
  1733. padding: 0,
  1734. position: 'absolute',
  1735. top: 20,
  1736. width: 1
  1737. },
  1738. underline: {
  1739. "&&&:before": {
  1740. b_orderBottom: "none"
  1741. },
  1742. "&&:after": {
  1743. b_orderBottom: "none"
  1744. }
  1745. },
  1746. head: props => ({
  1747. backgroundColor: props.headerBackgroundColor === undefined ? '#0d47a1a8' : props.headerBackgroundColor,
  1748. color: props.headerTextColor === undefined ? 'white' : props.headerTextColor
  1749. }),
  1750. sortedHeader: props => ({
  1751. color: props.headerTextColor === undefined ? 'grey' : props.headerTextColor
  1752. }),
  1753. styledTableRow: props => ({
  1754. '&:nth-of-type(even)': {
  1755. backgroundColor: props.primaryColor === undefined ? '#0d47a11c' : props.primaryColor
  1756. }
  1757. })
  1758. });
  1759. function getUpdatedDate(p) {
  1760. var statusDate = p.updated_date;
  1761. var day = '';
  1762. if (statusDate !== undefined) {
  1763. var convertDate = new Date(statusDate.toDate());
  1764. var dd = String(convertDate.getDate()).padStart(2, '0');
  1765. var mm = String(convertDate.getMonth() + 1).padStart(2, '0');
  1766. var yyyy = convertDate.getFullYear();
  1767. day = mm + '/' + dd + '/' + yyyy;
  1768. }
  1769. return day.toString();
  1770. }
  1771. function RowMenu(props) {
  1772. const {
  1773. row,
  1774. actions,
  1775. onSelectedAction,
  1776. onRowEdit
  1777. } = props;
  1778. const [anchorEl, setAnchorEl] = React.useState(null);
  1779. const handleMenuClick = event => {
  1780. event.stopPropagation();
  1781. setAnchorEl(event.currentTarget);
  1782. };
  1783. const handleSelectMenu = (e, row, action) => {
  1784. e.stopPropagation();
  1785. onSelectedAction(row, action.action_name);
  1786. setAnchorEl(null);
  1787. };
  1788. const handleClose = e => {
  1789. setAnchorEl(null);
  1790. e.stopPropagation();
  1791. };
  1792. const handleEdit = e => {
  1793. onRowEdit(row);
  1794. e.stopPropagation();
  1795. };
  1796. return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Menu, {
  1797. id: `actions-${row.id}`,
  1798. anchorEl: anchorEl,
  1799. keepMounted: true,
  1800. open: Boolean(anchorEl),
  1801. onClose: handleClose
  1802. }, actions.map(action => {
  1803. return /*#__PURE__*/React.createElement(MenuItem, {
  1804. key: action.display_name,
  1805. onClick: e => handleSelectMenu(e, row, action)
  1806. }, action.display_name);
  1807. })), /*#__PURE__*/React.createElement(Grid, {
  1808. container: true,
  1809. direction: "row",
  1810. justify: "flex-end",
  1811. alignItems: "center",
  1812. style: {
  1813. display: 'flex'
  1814. }
  1815. }, /*#__PURE__*/React.createElement(IconButton, {
  1816. id: `edit-${row.id}`,
  1817. "aria-label": "more",
  1818. "aria-controls": "long-menu",
  1819. "aria-haspopup": "true",
  1820. onClick: handleEdit,
  1821. size: "small"
  1822. }, /*#__PURE__*/React.createElement(EditIcon, null)), /*#__PURE__*/React.createElement(Box, {
  1823. style: {
  1824. width: '10px'
  1825. }
  1826. }), /*#__PURE__*/React.createElement(IconButton, {
  1827. id: `dropdown-${row.id}`,
  1828. "aria-label": "more",
  1829. "aria-controls": "long-menu",
  1830. "aria-haspopup": "true",
  1831. size: "small",
  1832. onClick: handleMenuClick
  1833. }, /*#__PURE__*/React.createElement(ExpandMore, null))));
  1834. }
  1835. RowMenu.propTypes = {
  1836. row: propTypes.object.isRequired,
  1837. actions: propTypes.array.isRequired,
  1838. onSelectedAction: propTypes.func.isRequired,
  1839. onRowEdit: propTypes.func
  1840. };
  1841. function ConfirmDialog(props) {
  1842. const {
  1843. type,
  1844. itemName,
  1845. openDialog,
  1846. onCancel,
  1847. onContinue
  1848. } = props;
  1849. const [open, setOpen] = React.useState(openDialog);
  1850. const handleClose = () => {
  1851. setOpen(false);
  1852. onCancel(false);
  1853. };
  1854. const handleContinue = () => {
  1855. onContinue(true);
  1856. };
  1857. return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement(Dialog, {
  1858. open: open,
  1859. onClose: handleClose,
  1860. "aria-labelledby": "alert-dialog-title",
  1861. "aria-describedby": "alert-dialog-description"
  1862. }, /*#__PURE__*/React.createElement(DialogTitle, {
  1863. id: "alert-dialog-title"
  1864. }, "Delete this " + type + ' "' + itemName + '"?'), /*#__PURE__*/React.createElement(DialogActions, null, /*#__PURE__*/React.createElement(Button, {
  1865. onClick: handleClose,
  1866. color: "primary"
  1867. }, "Cancel"), /*#__PURE__*/React.createElement(Button, {
  1868. onClick: handleContinue,
  1869. color: "primary",
  1870. autoFocus: true
  1871. }, "Delete"))));
  1872. }
  1873. ConfirmDialog.propTypes = {
  1874. history: propTypes.object,
  1875. type: propTypes.string,
  1876. itemName: propTypes.string,
  1877. openDialog: propTypes.bool,
  1878. onCancel: propTypes.func,
  1879. onContinue: propTypes.func
  1880. };
  1881. function MkTable(props) {
  1882. console.log("props.styles:", props.styles);
  1883. const classes = useStyles$1(props.styles);
  1884. const {
  1885. dispatch,
  1886. data = [],
  1887. headers = [],
  1888. actions,
  1889. onActions,
  1890. title,
  1891. page,
  1892. rowsPerPage,
  1893. noMoreToLoad = false,
  1894. order,
  1895. orderBy,
  1896. isLoading = false,
  1897. onChangePaginatePage,
  1898. onGetData,
  1899. onUpdateDataRow,
  1900. onChangeRowPerPage,
  1901. dense = true
  1902. } = props;
  1903. const [_rowsPerPage, setRowsPerPage] = React.useState(rowsPerPage);
  1904. const [_page, setPage] = React.useState(page);
  1905. const [_noMoreToLoad, setNoMoreToLoad] = React.useState(noMoreToLoad);
  1906. const [_order, setOrder] = React.useState(order);
  1907. const [_orderBy, setOrderBy] = React.useState(orderBy);
  1908. const [_isLoading, setIsLoading] = React.useState(isLoading);
  1909. const [_isConfirm, setIsConfirm] = React.useState(false);
  1910. const [itemName, setItemName] = React.useState('');
  1911. const [row, setRow] = React.useState({});
  1912. const [action, setAction] = React.useState('');
  1913. const [_dense, setDense] = React.useState(dense);
  1914. const handleSelectMenu = (row, action) => {
  1915. if (action === 'delete') {
  1916. setItemName(row.name === undefined ? row.product_desc : row.name);
  1917. setIsConfirm(true);
  1918. setRow(row);
  1919. setAction(action);
  1920. } else {
  1921. onActions(row, action);
  1922. }
  1923. };
  1924. const handleDelete = v => {
  1925. setIsConfirm(false);
  1926. onActions(row, action);
  1927. };
  1928. const handleCancel = v => {
  1929. setIsConfirm(false);
  1930. };
  1931. const handleRowEdit = row => {
  1932. onUpdateDataRow(row);
  1933. };
  1934. var offset = _page * _rowsPerPage;
  1935. useEffect(() => {
  1936. setNoMoreToLoad(noMoreToLoad);
  1937. setPage(page);
  1938. setOrder(order);
  1939. setOrderBy(orderBy);
  1940. setIsLoading(isLoading);
  1941. setRowsPerPage(rowsPerPage);
  1942. setDense(dense);
  1943. }, []);
  1944. const handleRequestSort = (event, property) => {
  1945. const isAsc = _orderBy === property && _order === 'asc';
  1946. setOrder(isAsc ? 'desc' : 'asc');
  1947. setOrderBy(property);
  1948. };
  1949. const handleChangePage = (event, newPage) => {
  1950. if (!_noMoreToLoad && (newPage + 1) * _rowsPerPage >= data.length) {
  1951. onGetData();
  1952. }
  1953. setPage(newPage);
  1954. onChangePaginatePage(newPage);
  1955. };
  1956. const handleChangeRowsPerPage = event => {
  1957. setRowsPerPage(parseInt(event.target.value));
  1958. onChangeRowPerPage(parseInt(event.target.value));
  1959. };
  1960. return /*#__PURE__*/React.createElement("div", {
  1961. className: classes.root
  1962. }, /*#__PURE__*/React.createElement(Grid, {
  1963. container: true
  1964. }, /*#__PURE__*/React.createElement(Grid, {
  1965. item: true
  1966. }, /*#__PURE__*/React.createElement(TableContainer$1, null, /*#__PURE__*/React.createElement(Table$1, {
  1967. className: classes.table,
  1968. "aria-labelledby": "tableTitle",
  1969. size: _dense ? 'small' : 'medium',
  1970. "aria-label": "enhanced table"
  1971. }, /*#__PURE__*/React.createElement(EnhancedTableHead, {
  1972. headerStyles: classes,
  1973. headCells: headers,
  1974. _order: _order,
  1975. _orderBy: _orderBy,
  1976. onRequestSort: handleRequestSort,
  1977. rowCount: data.length !== undefined ? data.length : 0,
  1978. dispatch: dispatch
  1979. }), /*#__PURE__*/React.createElement(TableBody$1, null, _isLoading ? /*#__PURE__*/React.createElement(TableRow$1, {
  1980. className: classes.styledTableRow
  1981. }, /*#__PURE__*/React.createElement(TableCell$1, {
  1982. colSpan: headers.length,
  1983. align: "center"
  1984. }, " ", /*#__PURE__*/React.createElement(CircularProgress, null))) : data.length !== 0 ? stableSort(data, getComparator(_order, _orderBy)).slice(_page * _rowsPerPage, _page * _rowsPerPage + _rowsPerPage).map((row, index) => {
  1985. return /*#__PURE__*/React.createElement(TableRow$1, {
  1986. hover: true,
  1987. role: "checkbox",
  1988. tabIndex: -1,
  1989. key: row.id,
  1990. id: row.id,
  1991. className: classes.styledTableRow
  1992. }, headers.map((h, i) => {
  1993. if (h.id === 'sr') {
  1994. return /*#__PURE__*/React.createElement(TableCell$1, {
  1995. key: h.id,
  1996. align: "right",
  1997. style: {
  1998. width: '15px'
  1999. }
  2000. }, ++offset);
  2001. }
  2002. if (h.id === 'status') {
  2003. return /*#__PURE__*/React.createElement(TableCell$1, {
  2004. key: h.id,
  2005. align: h.numeric ? 'right' : 'left'
  2006. }, row[h.id]);
  2007. }
  2008. if (h.id === 'updated_date') {
  2009. return /*#__PURE__*/React.createElement(TableCell$1, {
  2010. key: h.id,
  2011. align: h.numeric ? 'right' : 'left',
  2012. style: {
  2013. width: h.width ? h.width : null
  2014. }
  2015. }, getUpdatedDate(row));
  2016. } else {
  2017. return /*#__PURE__*/React.createElement(TableCell$1, {
  2018. key: h.id,
  2019. align: h.numeric ? 'right' : 'left',
  2020. style: {
  2021. width: h.width ? h.width : null
  2022. }
  2023. }, row[h.id]);
  2024. }
  2025. }), actions ? /*#__PURE__*/React.createElement(TableCell$1, {
  2026. style: {
  2027. width: '150px'
  2028. },
  2029. align: "right"
  2030. }, /*#__PURE__*/React.createElement(RowMenu, {
  2031. actions: actions,
  2032. row: row,
  2033. onRowEdit: data => handleRowEdit(data),
  2034. onSelectedAction: (data, actionName) => handleSelectMenu(data, actionName)
  2035. })) : /*#__PURE__*/React.createElement(TableCell$1, {
  2036. style: {
  2037. width: '150px'
  2038. },
  2039. align: "right"
  2040. }, /*#__PURE__*/React.createElement(IconButton, {
  2041. onClick: event => handleRowEdit(row),
  2042. size: dense ? "small" : "medium"
  2043. }, /*#__PURE__*/React.createElement(EditIcon, null))));
  2044. }) : /*#__PURE__*/React.createElement(TableRow$1, {
  2045. className: classes.styledTableRow,
  2046. style: {
  2047. width: '100%'
  2048. }
  2049. })))), /*#__PURE__*/React.createElement(TablePagination, {
  2050. rowsPerPageOptions: [10, 30, 50],
  2051. labelDisplayedRows: ({
  2052. from,
  2053. to,
  2054. count
  2055. }) => {
  2056. console.log(from, to, count);
  2057. },
  2058. component: "div",
  2059. count: data.length,
  2060. rowsPerPage: _rowsPerPage,
  2061. page: _page,
  2062. onChangePage: handleChangePage,
  2063. onChangeRowsPerPage: handleChangeRowsPerPage
  2064. }))), _isConfirm ? /*#__PURE__*/React.createElement(ConfirmDialog, {
  2065. type: title,
  2066. itemName: itemName,
  2067. openDialog: _isConfirm,
  2068. onCancel: v => handleCancel(),
  2069. onContinue: v => handleDelete()
  2070. }) : /*#__PURE__*/React.createElement("div", null));
  2071. }
  2072. MkTable.propTypes = {
  2073. history: propTypes.object,
  2074. headers: propTypes.array.isRequired,
  2075. data: propTypes.array.isRequired,
  2076. query: propTypes.object,
  2077. onProductBOMClick: propTypes.func,
  2078. onActions: propTypes.func,
  2079. actions: propTypes.array,
  2080. title: propTypes.string,
  2081. order: propTypes.any,
  2082. orderBy: propTypes.any,
  2083. rowsPerPage: propTypes.any,
  2084. noMoreToLoad: propTypes.any,
  2085. isLoading: propTypes.any,
  2086. onChangePaginatePage: propTypes.any,
  2087. onGetData: propTypes.any,
  2088. onChangeRowPerPage: propTypes.any,
  2089. dense: propTypes.any,
  2090. styles: propTypes.any
  2091. };
  2092. const useStyles$2 = makeStyles(theme => ({
  2093. root: {
  2094. width: '100%'
  2095. },
  2096. paper: {
  2097. width: '100%',
  2098. marginBottom: theme.spacing(2)
  2099. },
  2100. table: {
  2101. minWidth: 750
  2102. },
  2103. visuallyHidden: {
  2104. border: 0,
  2105. clip: 'rect(0 0 0 0)',
  2106. height: 1,
  2107. margin: -1,
  2108. overflow: 'hidden',
  2109. padding: 0,
  2110. position: 'absolute',
  2111. top: 20,
  2112. width: 1
  2113. },
  2114. underline: {
  2115. "&&&:before": {
  2116. borderBottom: "none"
  2117. },
  2118. "&&:after": {
  2119. borderBottom: "none"
  2120. }
  2121. },
  2122. button: {
  2123. color: 'white',
  2124. width: 150,
  2125. height: 55
  2126. },
  2127. closeButton: {
  2128. position: 'absolute',
  2129. right: theme.spacing(1),
  2130. top: theme.spacing(1),
  2131. color: theme.palette.grey[500]
  2132. },
  2133. headText: {
  2134. fontSize: 14,
  2135. float: "left",
  2136. color: theme.palette.primary.main,
  2137. fontWeight: "bold"
  2138. }
  2139. }));
  2140. function getDataString(data, fieldName) {
  2141. return data[fieldName];
  2142. }
  2143. function MkInfo(props) {
  2144. const classes = useStyles$2();
  2145. const {
  2146. infoData,
  2147. displayFields,
  2148. isNew = false,
  2149. isEditable,
  2150. currentTabName,
  2151. actions
  2152. } = props;
  2153. const [editable, setEditable] = React.useState(isEditable !== undefined ? isEditable : true);
  2154. const handleEdit = () => {
  2155. setEditable(false);
  2156. };
  2157. return /*#__PURE__*/React.createElement("div", {
  2158. className: classes.root
  2159. }, isNew ? /*#__PURE__*/React.createElement(Grid, {
  2160. container: true,
  2161. style: {
  2162. marginTop: '30px'
  2163. }
  2164. }, /*#__PURE__*/React.createElement(Grid, {
  2165. item: true,
  2166. xs: 12,
  2167. sm: 7
  2168. })) : /*#__PURE__*/React.createElement(Grid, {
  2169. container: true,
  2170. style: {
  2171. marginTop: '30px'
  2172. }
  2173. }, /*#__PURE__*/React.createElement(Grid, {
  2174. item: true,
  2175. xs: 12,
  2176. sm: 7
  2177. }, !editable ?
  2178. /*#__PURE__*/
  2179. React.createElement("div", null) : displayFields.map((d, i) => {
  2180. return /*#__PURE__*/React.createElement(Grid, {
  2181. container: true,
  2182. key: i
  2183. }, /*#__PURE__*/React.createElement(Grid, {
  2184. item: true,
  2185. xs: 12,
  2186. style: {
  2187. display: 'flex',
  2188. alignItems: 'center',
  2189. marginBottom: '10px'
  2190. }
  2191. }, /*#__PURE__*/React.createElement(Grid, {
  2192. item: true,
  2193. xs: 12,
  2194. sm: 5
  2195. }, /*#__PURE__*/React.createElement(Box, {
  2196. style: {
  2197. width: '250px'
  2198. }
  2199. }, /*#__PURE__*/React.createElement(Typography, {
  2200. style: {
  2201. paddingRight: '30px',
  2202. color: 'grey'
  2203. }
  2204. }, d.label))), /*#__PURE__*/React.createElement(Grid, {
  2205. item: true,
  2206. xs: 12,
  2207. sm: 7
  2208. }, d.type === 'photo' ? /*#__PURE__*/React.createElement("img", null) :
  2209. /*#__PURE__*/
  2210. React.createElement(Typography, {
  2211. style: {
  2212. paddingRight: '30px'
  2213. }
  2214. }, infoData !== undefined ? getDataString(infoData, d.fieldName) : ''))));
  2215. })), /*#__PURE__*/React.createElement(Grid, {
  2216. item: true,
  2217. xs: 12,
  2218. sm: 7
  2219. }, /*#__PURE__*/React.createElement(Grid, {
  2220. container: true,
  2221. direction: "row",
  2222. alignItems: "flex-end"
  2223. }, actions.map((a, i) => {
  2224. if (currentTabName === 'account') {
  2225. if (infoData.status === 'invited') {
  2226. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2227. style: {
  2228. color: 'white',
  2229. backgroundColor: 'grey',
  2230. float: 'right',
  2231. marginLeft: '10px'
  2232. }
  2233. }, a.label));
  2234. }
  2235. if (infoData.status === 'joined') {
  2236. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2237. style: {
  2238. color: 'white',
  2239. backgroundColor: 'grey',
  2240. float: 'right',
  2241. marginLeft: '10px'
  2242. }
  2243. }, a.label));
  2244. }
  2245. if (infoData.status === 'disabled') {
  2246. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2247. style: {
  2248. color: 'white',
  2249. backgroundColor: 'grey',
  2250. float: 'right',
  2251. marginLeft: '10px'
  2252. }
  2253. }, a.label));
  2254. }
  2255. if (infoData.status === 'requested') {
  2256. if (editable) {
  2257. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2258. style: {
  2259. marginLeft: '10px'
  2260. },
  2261. onClick: handleEdit
  2262. }, a.icon, a.label));
  2263. } else {
  2264. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2265. style: {
  2266. color: 'white',
  2267. backgroundColor: 'grey',
  2268. float: 'right',
  2269. marginLeft: '10px'
  2270. }
  2271. }, a.label));
  2272. }
  2273. }
  2274. } else {
  2275. if (editable) {
  2276. if (a.action_type === 'edit') {
  2277. console.log('type: ', a.action_type, 'editable: ', editable);
  2278. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2279. style: {
  2280. marginLeft: '10px'
  2281. },
  2282. onClick: handleEdit
  2283. }, a.icon, a.label));
  2284. }
  2285. if (a.action_type === 'delete') {
  2286. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2287. style: {
  2288. float: 'right',
  2289. marginLeft: '10px'
  2290. }
  2291. }, a.icon, a.label));
  2292. }
  2293. } else {
  2294. if (a.action_type === 'save') {
  2295. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2296. style: {
  2297. marginLeft: '10px'
  2298. }
  2299. }, a.icon, a.label));
  2300. }
  2301. if (a.action_type === 'cancel') {
  2302. return /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Button, {
  2303. style: {
  2304. float: 'right',
  2305. marginLeft: '10px'
  2306. }
  2307. }, a.icon, a.label));
  2308. }
  2309. }
  2310. }
  2311. })))));
  2312. }
  2313. MkInfo.propTypes = {
  2314. history: propTypes.object,
  2315. infoData: propTypes.object,
  2316. displayFields: propTypes.array,
  2317. isNew: propTypes.bool,
  2318. isEditable: propTypes.bool,
  2319. actions: propTypes.any
  2320. };
  2321. export { List, MkForm, MkInfo, MkTable };
  2322. //# sourceMappingURL=index.modern.js.map