datastake-daf 0.6.321 → 0.6.323
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env +8 -0
- package/.vscode/settings.json +13 -0
- package/dist/components/index.js +237 -57
- package/package.json +1 -1
- package/src/@daf/core/components/Dashboard/Map/index.jsx +2 -2
- package/src/@daf/core/components/DynamicForm/DynamicForm.stories.js +63 -63
- package/src/@daf/core/components/DynamicForm/storyConfig.js +70 -90
- package/src/@daf/core/components/EditForm/form.jsx +2 -0
- package/src/@daf/core/components/Header/hook.js +9 -2
package/.env
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cSpell.words": ["cukura"],
|
|
3
|
+
"files.autoSave": "afterDelay",
|
|
4
|
+
"editor.wordWrap": "on",
|
|
5
|
+
"editor.autoClosingBrackets": "always",
|
|
6
|
+
"editor.autoClosingComments": "always",
|
|
7
|
+
"editor.autoClosingQuotes": "always",
|
|
8
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
9
|
+
"editor.formatOnPaste": true,
|
|
10
|
+
"editor.formatOnSave": true,
|
|
11
|
+
"notebook.defaultFormatter": "esbenp.prettier-vscode",
|
|
12
|
+
"javascript.format.semicolons": "insert"
|
|
13
|
+
}
|
package/dist/components/index.js
CHANGED
|
@@ -3226,7 +3226,7 @@ const config$3 = {
|
|
|
3226
3226
|
MagicWand: config$4
|
|
3227
3227
|
};
|
|
3228
3228
|
|
|
3229
|
-
const _excluded$
|
|
3229
|
+
const _excluded$y = ["width", "height", "size", "name", "fill"];
|
|
3230
3230
|
const CustomIcon = _ref => {
|
|
3231
3231
|
let {
|
|
3232
3232
|
width = 14,
|
|
@@ -3235,7 +3235,7 @@ const CustomIcon = _ref => {
|
|
|
3235
3235
|
name = "",
|
|
3236
3236
|
fill = "none"
|
|
3237
3237
|
} = _ref,
|
|
3238
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
3238
|
+
props = _objectWithoutProperties(_ref, _excluded$y);
|
|
3239
3239
|
const conf = config$3[name];
|
|
3240
3240
|
if (conf) {
|
|
3241
3241
|
return /*#__PURE__*/jsxRuntime.jsx("svg", _objectSpread2(_objectSpread2({}, props), {}, {
|
|
@@ -9437,7 +9437,7 @@ createCommonjsModule(function (module, exports) {
|
|
|
9437
9437
|
!function(e,n){module.exports=n();}(commonjsGlobal,(function(){return {name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var n=["th","st","nd","rd"],t=e%100;return "["+e+(n[(t-20)%10]||n[t]||n[0])+"]"}}}));
|
|
9438
9438
|
});
|
|
9439
9439
|
|
|
9440
|
-
const _excluded$
|
|
9440
|
+
const _excluded$x = ["view", "module", "scope", "form", "meta"];
|
|
9441
9441
|
dayjs__default["default"].extend(customParseFormat);
|
|
9442
9442
|
dayjs__default["default"].extend(utc);
|
|
9443
9443
|
dayjs__default["default"].extend(utc);
|
|
@@ -9811,7 +9811,7 @@ const filterCreateData = data => {
|
|
|
9811
9811
|
form,
|
|
9812
9812
|
meta
|
|
9813
9813
|
} = data,
|
|
9814
|
-
rest = _objectWithoutProperties(data, _excluded$
|
|
9814
|
+
rest = _objectWithoutProperties(data, _excluded$x);
|
|
9815
9815
|
const _meta = isObjectEmpty(meta) ? undefined : meta;
|
|
9816
9816
|
return _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
9817
9817
|
meta: _meta
|
|
@@ -10191,7 +10191,7 @@ SelectFilters.propTypes = {
|
|
|
10191
10191
|
apiUrl: PropTypes__default["default"].string
|
|
10192
10192
|
};
|
|
10193
10193
|
|
|
10194
|
-
const _excluded$
|
|
10194
|
+
const _excluded$w = ["columns", "data", "defaultFilters", "style", "pagination", "loading", "onChange", "onFilterChange", "selectOptions", "filtersConfig", "rowSelection", "setShowFilters", "rowKey", "showFilters", "hideOnLoading", "sourcesKey", "className", "projects", "t", "selectedProject", "sourceId", "projectSources", "language", "scrollX", "apiUrl", "app", "doEmptyRows"];
|
|
10195
10195
|
function DAFTable(_ref) {
|
|
10196
10196
|
let {
|
|
10197
10197
|
columns = [],
|
|
@@ -10222,7 +10222,7 @@ function DAFTable(_ref) {
|
|
|
10222
10222
|
app,
|
|
10223
10223
|
doEmptyRows
|
|
10224
10224
|
} = _ref,
|
|
10225
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
10225
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
10226
10226
|
const [source, setSource] = React.useState([]);
|
|
10227
10227
|
const projectData = (projects || []).find(p => p.id === selectedProject);
|
|
10228
10228
|
const [filtersInit, setFiltersInit] = React.useState(!loading);
|
|
@@ -11065,8 +11065,8 @@ var unitlessKeys = {
|
|
|
11065
11065
|
|
|
11066
11066
|
var f="undefined"!=typeof process&&void 0!==process.env&&(process.env.REACT_APP_SC_ATTR||process.env.SC_ATTR)||"data-styled",m="active",y="data-styled-version",v="6.1.12",g="/*!sc*/\n",S="undefined"!=typeof window&&"HTMLElement"in window,w=Boolean("boolean"==typeof SC_DISABLE_SPEEDY?SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env&&void 0!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&""!==process.env.REACT_APP_SC_DISABLE_SPEEDY?"false"!==process.env.REACT_APP_SC_DISABLE_SPEEDY&&process.env.REACT_APP_SC_DISABLE_SPEEDY:"undefined"!=typeof process&&void 0!==process.env&&void 0!==process.env.SC_DISABLE_SPEEDY&&""!==process.env.SC_DISABLE_SPEEDY?"false"!==process.env.SC_DISABLE_SPEEDY&&process.env.SC_DISABLE_SPEEDY:"production"!==process.env.NODE_ENV),E=/invalid hook call/i,N=new Set,P=function(t,n){if("production"!==process.env.NODE_ENV){var o=n?' with the id of "'.concat(n,'"'):"",s="The component ".concat(t).concat(o," has been created dynamically.\n")+"You may see this warning because you've called styled inside another component.\nTo resolve this only create new StyledComponents outside of any render method and function component.",i=console.error;try{var a=!0;console.error=function(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];E.test(t)?(a=!1,N.delete(s)):i.apply(void 0,__spreadArray([t],n,!1));},React.useRef(),a&&!N.has(s)&&(console.warn(s),N.add(s));}catch(e){E.test(e.message)&&N.delete(s);}finally{console.error=i;}}},_=Object.freeze([]),C=Object.freeze({});function I(e,t,n){return void 0===n&&(n=C),e.theme!==n.theme&&e.theme||t||n.theme}var A=new Set(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","track","u","ul","use","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","marker","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"]),O=/[!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~-]+/g,D=/(^-|-$)/g;function R(e){return e.replace(O,"-").replace(D,"")}var T=/(a)(d)/gi,k=52,j=function(e){return String.fromCharCode(e+(e>25?39:97))};function x(e){var t,n="";for(t=Math.abs(e);t>k;t=t/k|0)n=j(t%k)+n;return (j(t%k)+n).replace(T,"$1-$2")}var V,F=5381,M=function(e,t){for(var n=t.length;n;)e=33*e^t.charCodeAt(--n);return e},z=function(e){return M(F,e)};function $(e){return x(z(e)>>>0)}function B(e){return "production"!==process.env.NODE_ENV&&"string"==typeof e&&e||e.displayName||e.name||"Component"}function L$1(e){return "string"==typeof e&&("production"===process.env.NODE_ENV||e.charAt(0)===e.charAt(0).toLowerCase())}var G="function"==typeof Symbol&&Symbol.for,Y=G?Symbol.for("react.memo"):60115,W=G?Symbol.for("react.forward_ref"):60112,q={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},H={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},U={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},J=((V={})[W]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},V[Y]=U,V);function X(e){return ("type"in(t=e)&&t.type.$$typeof)===Y?U:"$$typeof"in e?J[e.$$typeof]:q;var t;}var Z=Object.defineProperty,K=Object.getOwnPropertyNames,Q=Object.getOwnPropertySymbols,ee=Object.getOwnPropertyDescriptor,te=Object.getPrototypeOf,ne=Object.prototype;function oe(e,t,n){if("string"!=typeof t){if(ne){var o=te(t);o&&o!==ne&&oe(e,o,n);}var r=K(t);Q&&(r=r.concat(Q(t)));for(var s=X(e),i=X(t),a=0;a<r.length;++a){var c=r[a];if(!(c in H||n&&n[c]||i&&c in i||s&&c in s)){var l=ee(t,c);try{Z(e,c,l);}catch(e){}}}}return e}function re(e){return "function"==typeof e}function se(e){return "object"==typeof e&&"styledComponentId"in e}function ie(e,t){return e&&t?"".concat(e," ").concat(t):e||t||""}function ae(e,t){if(0===e.length)return "";for(var n=e[0],o=1;o<e.length;o++)n+=t?t+e[o]:e[o];return n}function ce(e){return null!==e&&"object"==typeof e&&e.constructor.name===Object.name&&!("props"in e&&e.$$typeof)}function le(e,t,n){if(void 0===n&&(n=!1),!n&&!ce(e)&&!Array.isArray(e))return t;if(Array.isArray(t))for(var o=0;o<t.length;o++)e[o]=le(e[o],t[o]);else if(ce(t))for(var o in t)e[o]=le(e[o],t[o]);return e}function ue(e,t){Object.defineProperty(e,"toString",{value:t});}var pe="production"!==process.env.NODE_ENV?{1:"Cannot create styled-component for component: %s.\n\n",2:"Can't collect styles once you've consumed a `ServerStyleSheet`'s styles! `ServerStyleSheet` is a one off instance for each server-side render cycle.\n\n- Are you trying to reuse it across renders?\n- Are you accidentally calling collectStyles twice?\n\n",3:"Streaming SSR is only supported in a Node.js environment; Please do not try to call this method in the browser.\n\n",4:"The `StyleSheetManager` expects a valid target or sheet prop!\n\n- Does this error occur on the client and is your target falsy?\n- Does this error occur on the server and is the sheet falsy?\n\n",5:"The clone method cannot be used on the client!\n\n- Are you running in a client-like environment on the server?\n- Are you trying to run SSR on the client?\n\n",6:"Trying to insert a new style tag, but the given Node is unmounted!\n\n- Are you using a custom target that isn't mounted?\n- Does your document not have a valid head element?\n- Have you accidentally removed a style tag manually?\n\n",7:'ThemeProvider: Please return an object from your "theme" prop function, e.g.\n\n```js\ntheme={() => ({})}\n```\n\n',8:'ThemeProvider: Please make your "theme" prop an object.\n\n',9:"Missing document `<head>`\n\n",10:"Cannot find a StyleSheet instance. Usually this happens if there are multiple copies of styled-components loaded at once. Check out this issue for how to troubleshoot and fix the common cases where this situation can happen: https://github.com/styled-components/styled-components/issues/1941#issuecomment-417862021\n\n",11:"_This error was replaced with a dev-time warning, it will be deleted for v4 final._ [createGlobalStyle] received children which will not be rendered. Please use the component without passing children elements.\n\n",12:"It seems you are interpolating a keyframe declaration (%s) into an untagged string. This was supported in styled-components v3, but is not longer supported in v4 as keyframes are now injected on-demand. Please wrap your string in the css\\`\\` helper which ensures the styles are injected correctly. See https://www.styled-components.com/docs/api#css\n\n",13:"%s is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.\n\n",14:'ThemeProvider: "theme" prop is required.\n\n',15:"A stylis plugin has been supplied that is not named. We need a name for each plugin to be able to prevent styling collisions between different stylis configurations within the same app. Before you pass your plugin to `<StyleSheetManager stylisPlugins={[]}>`, please make sure each plugin is uniquely-named, e.g.\n\n```js\nObject.defineProperty(importedPlugin, 'name', { value: 'some-unique-name' });\n```\n\n",16:"Reached the limit of how many styled components may be created at group %s.\nYou may only create up to 1,073,741,824 components. If you're creating components dynamically,\nas for instance in your render method then you may be running into this limitation.\n\n",17:"CSSStyleSheet could not be found on HTMLStyleElement.\nHas styled-components' style tag been unmounted or altered by another script?\n",18:"ThemeProvider: Please make sure your useTheme hook is within a `<ThemeProvider>`"}:{};function de(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=e[0],o=[],r=1,s=e.length;r<s;r+=1)o.push(e[r]);return o.forEach(function(e){n=n.replace(/%[a-z]/,e);}),n}function he(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];return "production"===process.env.NODE_ENV?new Error("An error occurred. See https://github.com/styled-components/styled-components/blob/main/packages/styled-components/src/utils/errors.md#".concat(t," for more information.").concat(n.length>0?" Args: ".concat(n.join(", ")):"")):new Error(de.apply(void 0,__spreadArray([pe[t]],n,!1)).trim())}var fe=function(){function e(e){this.groupSizes=new Uint32Array(512),this.length=512,this.tag=e;}return e.prototype.indexOfGroup=function(e){for(var t=0,n=0;n<e;n++)t+=this.groupSizes[n];return t},e.prototype.insertRules=function(e,t){if(e>=this.groupSizes.length){for(var n=this.groupSizes,o=n.length,r=o;e>=r;)if((r<<=1)<0)throw he(16,"".concat(e));this.groupSizes=new Uint32Array(r),this.groupSizes.set(n),this.length=r;for(var s=o;s<r;s++)this.groupSizes[s]=0;}for(var i=this.indexOfGroup(e+1),a=(s=0,t.length);s<a;s++)this.tag.insertRule(i,t[s])&&(this.groupSizes[e]++,i++);},e.prototype.clearGroup=function(e){if(e<this.length){var t=this.groupSizes[e],n=this.indexOfGroup(e),o=n+t;this.groupSizes[e]=0;for(var r=n;r<o;r++)this.tag.deleteRule(n);}},e.prototype.getGroup=function(e){var t="";if(e>=this.length||0===this.groupSizes[e])return t;for(var n=this.groupSizes[e],o=this.indexOfGroup(e),r=o+n,s=o;s<r;s++)t+="".concat(this.tag.getRule(s)).concat(g);return t},e}(),me=1<<30,ye=new Map,ve=new Map,ge=1,Se=function(e){if(ye.has(e))return ye.get(e);for(;ve.has(ge);)ge++;var t=ge++;if("production"!==process.env.NODE_ENV&&((0|t)<0||t>me))throw he(16,"".concat(t));return ye.set(e,t),ve.set(t,e),t},we=function(e,t){ge=t+1,ye.set(e,t),ve.set(t,e);},be="style[".concat(f,"][").concat(y,'="').concat(v,'"]'),Ee=new RegExp("^".concat(f,'\\.g(\\d+)\\[id="([\\w\\d-]+)"\\].*?"([^"]*)')),Ne=function(e,t,n){for(var o,r=n.split(","),s=0,i=r.length;s<i;s++)(o=r[s])&&e.registerName(t,o);},Pe=function(e,t){for(var n,o=(null!==(n=t.textContent)&&void 0!==n?n:"").split(g),r=[],s=0,i=o.length;s<i;s++){var a=o[s].trim();if(a){var c=a.match(Ee);if(c){var l=0|parseInt(c[1],10),u=c[2];0!==l&&(we(u,l),Ne(e,u,c[3]),e.getTag().insertRules(l,r)),r.length=0;}else r.push(a);}}},_e=function(e){for(var t=document.querySelectorAll(be),n=0,o=t.length;n<o;n++){var r=t[n];r&&r.getAttribute(f)!==m&&(Pe(e,r),r.parentNode&&r.parentNode.removeChild(r));}};function Ce(){return "undefined"!=typeof __webpack_nonce__?__webpack_nonce__:null}var Ie=function(e){var t=document.head,n=e||t,o=document.createElement("style"),r=function(e){var t=Array.from(e.querySelectorAll("style[".concat(f,"]")));return t[t.length-1]}(n),s=void 0!==r?r.nextSibling:null;o.setAttribute(f,m),o.setAttribute(y,v);var i=Ce();return i&&o.setAttribute("nonce",i),n.insertBefore(o,s),o},Ae=function(){function e(e){this.element=Ie(e),this.element.appendChild(document.createTextNode("")),this.sheet=function(e){if(e.sheet)return e.sheet;for(var t=document.styleSheets,n=0,o=t.length;n<o;n++){var r=t[n];if(r.ownerNode===e)return r}throw he(17)}(this.element),this.length=0;}return e.prototype.insertRule=function(e,t){try{return this.sheet.insertRule(t,e),this.length++,!0}catch(e){return !1}},e.prototype.deleteRule=function(e){this.sheet.deleteRule(e),this.length--;},e.prototype.getRule=function(e){var t=this.sheet.cssRules[e];return t&&t.cssText?t.cssText:""},e}(),Oe=function(){function e(e){this.element=Ie(e),this.nodes=this.element.childNodes,this.length=0;}return e.prototype.insertRule=function(e,t){if(e<=this.length&&e>=0){var n=document.createTextNode(t);return this.element.insertBefore(n,this.nodes[e]||null),this.length++,!0}return !1},e.prototype.deleteRule=function(e){this.element.removeChild(this.nodes[e]),this.length--;},e.prototype.getRule=function(e){return e<this.length?this.nodes[e].textContent:""},e}(),De=function(){function e(e){this.rules=[],this.length=0;}return e.prototype.insertRule=function(e,t){return e<=this.length&&(this.rules.splice(e,0,t),this.length++,!0)},e.prototype.deleteRule=function(e){this.rules.splice(e,1),this.length--;},e.prototype.getRule=function(e){return e<this.length?this.rules[e]:""},e}(),Re=S,Te={isServer:!S,useCSSOMInjection:!w},ke=function(){function e(e,n,o){void 0===e&&(e=C),void 0===n&&(n={});var r=this;this.options=__assign(__assign({},Te),e),this.gs=n,this.names=new Map(o),this.server=!!e.isServer,!this.server&&S&&Re&&(Re=!1,_e(this)),ue(this,function(){return function(e){for(var t=e.getTag(),n=t.length,o="",r=function(n){var r=function(e){return ve.get(e)}(n);if(void 0===r)return "continue";var s=e.names.get(r),i=t.getGroup(n);if(void 0===s||!s.size||0===i.length)return "continue";var a="".concat(f,".g").concat(n,'[id="').concat(r,'"]'),c="";void 0!==s&&s.forEach(function(e){e.length>0&&(c+="".concat(e,","));}),o+="".concat(i).concat(a,'{content:"').concat(c,'"}').concat(g);},s=0;s<n;s++)r(s);return o}(r)});}return e.registerId=function(e){return Se(e)},e.prototype.rehydrate=function(){!this.server&&S&&_e(this);},e.prototype.reconstructWithOptions=function(n,o){return void 0===o&&(o=!0),new e(__assign(__assign({},this.options),n),this.gs,o&&this.names||void 0)},e.prototype.allocateGSInstance=function(e){return this.gs[e]=(this.gs[e]||0)+1},e.prototype.getTag=function(){return this.tag||(this.tag=(e=function(e){var t=e.useCSSOMInjection,n=e.target;return e.isServer?new De(n):t?new Ae(n):new Oe(n)}(this.options),new fe(e)));var e;},e.prototype.hasNameForId=function(e,t){return this.names.has(e)&&this.names.get(e).has(t)},e.prototype.registerName=function(e,t){if(Se(e),this.names.has(e))this.names.get(e).add(t);else {var n=new Set;n.add(t),this.names.set(e,n);}},e.prototype.insertRules=function(e,t,n){this.registerName(e,t),this.getTag().insertRules(Se(e),n);},e.prototype.clearNames=function(e){this.names.has(e)&&this.names.get(e).clear();},e.prototype.clearRules=function(e){this.getTag().clearGroup(Se(e)),this.clearNames(e);},e.prototype.clearTag=function(){this.tag=void 0;},e}(),je=/&/g,xe=/^\s*\/\/.*$/gm;function Ve(e,t){return e.map(function(e){return "rule"===e.type&&(e.value="".concat(t," ").concat(e.value),e.value=e.value.replaceAll(",",",".concat(t," ")),e.props=e.props.map(function(e){return "".concat(t," ").concat(e)})),Array.isArray(e.children)&&"@keyframes"!==e.type&&(e.children=Ve(e.children,t)),e})}function Fe(e){var t,n,o,r=void 0===e?C:e,s=r.options,i=void 0===s?C:s,a=r.plugins,c$1=void 0===a?_:a,l=function(e,o,r){return r.startsWith(n)&&r.endsWith(n)&&r.replaceAll(n,"").length>0?".".concat(t):e},u=c$1.slice();u.push(function(e){e.type===c&&e.value.includes("&")&&(e.props[0]=e.props[0].replace(je,n).replace(o,l));}),i.prefix&&u.push(de$1),u.push(he$1);var p=function(e,r,s,a){void 0===r&&(r=""),void 0===s&&(s=""),void 0===a&&(a="&"),t=a,n=r,o=new RegExp("\\".concat(n,"\\b"),"g");var c=e.replace(xe,""),l=ue$1(s||r?"".concat(s," ").concat(r," { ").concat(c," }"):c);i.namespace&&(l=Ve(l,i.namespace));var p=[];return pe$1(l,be$1(u.concat(we$1(function(e){return p.push(e)})))),p};return p.hash=c$1.length?c$1.reduce(function(e,t){return t.name||he(15),M(e,t.name)},F).toString():"",p}var Me=new ke,ze=Fe(),$e=React__default["default"].createContext({shouldForwardProp:void 0,styleSheet:Me,stylis:ze});$e.Consumer;React__default["default"].createContext(void 0);function Ge(){return React.useContext($e)}var We=function(){function e(e,t){var n=this;this.inject=function(e,t){void 0===t&&(t=ze);var o=n.name+t.hash;e.hasNameForId(n.id,o)||e.insertRules(n.id,o,t(n.rules,o,"@keyframes"));},this.name=e,this.id="sc-keyframes-".concat(e),this.rules=t,ue(this,function(){throw he(12,String(n.name))});}return e.prototype.getName=function(e){return void 0===e&&(e=ze),this.name+e.hash},e}(),qe=function(e){return e>="A"&&e<="Z"};function He(e){for(var t="",n=0;n<e.length;n++){var o=e[n];if(1===n&&"-"===o&&"-"===e[0])return e;qe(o)?t+="-"+o.toLowerCase():t+=o;}return t.startsWith("ms-")?"-"+t:t}var Ue=function(e){return null==e||!1===e||""===e},Je=function(t){var n,o,r=[];for(var s in t){var i=t[s];t.hasOwnProperty(s)&&!Ue(i)&&(Array.isArray(i)&&i.isCss||re(i)?r.push("".concat(He(s),":"),i,";"):ce(i)?r.push.apply(r,__spreadArray(__spreadArray(["".concat(s," {")],Je(i),!1),["}"],!1)):r.push("".concat(He(s),": ").concat((n=s,null==(o=i)||"boolean"==typeof o||""===o?"":"number"!=typeof o||0===o||n in unitlessKeys||n.startsWith("--")?String(o).trim():"".concat(o,"px")),";")));}return r};function Xe(e,t,n,o){if(Ue(e))return [];if(se(e))return [".".concat(e.styledComponentId)];if(re(e)){if(!re(s=e)||s.prototype&&s.prototype.isReactComponent||!t)return [e];var r=e(t);return "production"===process.env.NODE_ENV||"object"!=typeof r||Array.isArray(r)||r instanceof We||ce(r)||null===r||console.error("".concat(B(e)," is not a styled component and cannot be referred to via component selector. See https://www.styled-components.com/docs/advanced#referring-to-other-components for more details.")),Xe(r,t,n,o)}var s;return e instanceof We?n?(e.inject(n,o),[e.getName(o)]):[e]:ce(e)?Je(e):Array.isArray(e)?Array.prototype.concat.apply(_,e.map(function(e){return Xe(e,t,n,o)})):[e.toString()]}function Ze(e){for(var t=0;t<e.length;t+=1){var n=e[t];if(re(n)&&!se(n))return !1}return !0}var Ke=z(v),Qe=function(){function e(e,t,n){this.rules=e,this.staticRulesId="",this.isStatic="production"===process.env.NODE_ENV&&(void 0===n||n.isStatic)&&Ze(e),this.componentId=t,this.baseHash=M(Ke,t),this.baseStyle=n,ke.registerId(t);}return e.prototype.generateAndInjectStyles=function(e,t,n){var o=this.baseStyle?this.baseStyle.generateAndInjectStyles(e,t,n):"";if(this.isStatic&&!n.hash)if(this.staticRulesId&&t.hasNameForId(this.componentId,this.staticRulesId))o=ie(o,this.staticRulesId);else {var r=ae(Xe(this.rules,e,t,n)),s=x(M(this.baseHash,r)>>>0);if(!t.hasNameForId(this.componentId,s)){var i=n(r,".".concat(s),void 0,this.componentId);t.insertRules(this.componentId,s,i);}o=ie(o,s),this.staticRulesId=s;}else {for(var a=M(this.baseHash,n.hash),c="",l=0;l<this.rules.length;l++){var u=this.rules[l];if("string"==typeof u)c+=u,"production"!==process.env.NODE_ENV&&(a=M(a,u));else if(u){var p=ae(Xe(u,e,t,n));a=M(a,p+l),c+=p;}}if(c){var d=x(a>>>0);t.hasNameForId(this.componentId,d)||t.insertRules(this.componentId,d,n(c,".".concat(d),void 0,this.componentId)),o=ie(o,d);}}return o},e}(),et=React__default["default"].createContext(void 0);et.Consumer;var rt={},st=new Set;function it(e,r,s){var i=se(e),a=e,c=!L$1(e),p=r.attrs,d=void 0===p?_:p,h=r.componentId,f=void 0===h?function(e,t){var n="string"!=typeof e?"sc":R(e);rt[n]=(rt[n]||0)+1;var o="".concat(n,"-").concat($(v+n+rt[n]));return t?"".concat(t,"-").concat(o):o}(r.displayName,r.parentComponentId):h,m=r.displayName,y=void 0===m?function(e){return L$1(e)?"styled.".concat(e):"Styled(".concat(B(e),")")}(e):m,g=r.displayName&&r.componentId?"".concat(R(r.displayName),"-").concat(r.componentId):r.componentId||f,S=i&&a.attrs?a.attrs.concat(d).filter(Boolean):d,w=r.shouldForwardProp;if(i&&a.shouldForwardProp){var b=a.shouldForwardProp;if(r.shouldForwardProp){var E=r.shouldForwardProp;w=function(e,t){return b(e,t)&&E(e,t)};}else w=b;}var N=new Qe(s,g,i?a.componentStyle:void 0);function O(e,r){return function(e,r,s){var i=e.attrs,a=e.componentStyle,c=e.defaultProps,p=e.foldedComponentIds,d=e.styledComponentId,h=e.target,f=React__default["default"].useContext(et),m=Ge(),y=e.shouldForwardProp||m.shouldForwardProp;"production"!==process.env.NODE_ENV&&React.useDebugValue(d);var v=I(r,f,c)||C,g=function(e,n,o){for(var r,s=__assign(__assign({},n),{className:void 0,theme:o}),i=0;i<e.length;i+=1){var a=re(r=e[i])?r(s):r;for(var c in a)s[c]="className"===c?ie(s[c],a[c]):"style"===c?__assign(__assign({},s[c]),a[c]):a[c];}return n.className&&(s.className=ie(s.className,n.className)),s}(i,r,v),S=g.as||h,w={};for(var b in g)void 0===g[b]||"$"===b[0]||"as"===b||"theme"===b&&g.theme===v||("forwardedAs"===b?w.as=g.forwardedAs:y&&!y(b,S)||(w[b]=g[b],y||"development"!==process.env.NODE_ENV||isPropValid(b)||st.has(b)||!A.has(S)||(st.add(b),console.warn('styled-components: it looks like an unknown prop "'.concat(b,'" is being sent through to the DOM, which will likely trigger a React console error. If you would like automatic filtering of unknown props, you can opt-into that behavior via `<StyleSheetManager shouldForwardProp={...}>` (connect an API like `@emotion/is-prop-valid`) or consider using transient props (`$` prefix for automatic filtering.)')))));var E=function(e,t){var n=Ge(),o=e.generateAndInjectStyles(t,n.styleSheet,n.stylis);return "production"!==process.env.NODE_ENV&&React.useDebugValue(o),o}(a,g);"production"!==process.env.NODE_ENV&&e.warnTooManyClasses&&e.warnTooManyClasses(E);var N=ie(p,d);return E&&(N+=" "+E),g.className&&(N+=" "+g.className),w[L$1(S)&&!A.has(S)?"class":"className"]=N,w.ref=s,React.createElement(S,w)}(D,e,r)}O.displayName=y;var D=React__default["default"].forwardRef(O);return D.attrs=S,D.componentStyle=N,D.displayName=y,D.shouldForwardProp=w,D.foldedComponentIds=i?ie(a.foldedComponentIds,a.styledComponentId):"",D.styledComponentId=g,D.target=i?a.target:e,Object.defineProperty(D,"defaultProps",{get:function(){return this._foldedDefaultProps},set:function(e){this._foldedDefaultProps=i?function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];for(var o=0,r=t;o<r.length;o++)le(e,r[o],!0);return e}({},a.defaultProps,e):e;}}),"production"!==process.env.NODE_ENV&&(P(y,g),D.warnTooManyClasses=function(e,t){var n={},o=!1;return function(r){if(!o&&(n[r]=!0,Object.keys(n).length>=200)){var s=t?' with the id of "'.concat(t,'"'):"";console.warn("Over ".concat(200," classes were generated for component ").concat(e).concat(s,".\n")+"Consider using the attrs method, together with a style object for frequently changed styles.\nExample:\n const Component = styled.div.attrs(props => ({\n style: {\n background: props.background,\n },\n }))`width: 100%;`\n\n <Component />"),o=!0,n={};}}}(y,g)),ue(D,function(){return ".".concat(D.styledComponentId)}),c&&oe(D,e,{attrs:!0,componentStyle:!0,displayName:!0,foldedComponentIds:!0,shouldForwardProp:!0,styledComponentId:!0,target:!0}),D}function at(e,t){for(var n=[e[0]],o=0,r=t.length;o<r;o+=1)n.push(t[o],e[o+1]);return n}var ct=function(e){return Object.assign(e,{isCss:!0})};function lt(t){for(var n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];if(re(t)||ce(t))return ct(Xe(at(_,__spreadArray([t],n,!0))));var r=t;return 0===n.length&&1===r.length&&"string"==typeof r[0]?Xe(r):ct(Xe(at(r,n)))}function ut(n,o,r){if(void 0===r&&(r=C),!o)throw he(1,o);var s=function(t){for(var s=[],i=1;i<arguments.length;i++)s[i-1]=arguments[i];return n(o,r,lt.apply(void 0,__spreadArray([t],s,!1)))};return s.attrs=function(e){return ut(n,o,__assign(__assign({},r),{attrs:Array.prototype.concat(r.attrs,e).filter(Boolean)}))},s.withConfig=function(e){return ut(n,o,__assign(__assign({},r),e))},s}var pt=function(e){return ut(it,e)},dt=pt;A.forEach(function(e){dt[e]=pt(e);});"production"!==process.env.NODE_ENV&&"undefined"!=typeof navigator&&"ReactNative"===navigator.product&&console.warn("It looks like you've imported 'styled-components' on React Native.\nPerhaps you're looking to import 'styled-components/native'?\nRead more about this at https://www.styled-components.com/docs/basics#react-native");var St="__sc-".concat(f,"__");"production"!==process.env.NODE_ENV&&"test"!==process.env.NODE_ENV&&"undefined"!=typeof window&&(window[St]||(window[St]=0),1===window[St]&&console.warn("It looks like there are several instances of 'styled-components' initialized in this application. This may cause dynamic styles to not render properly, errors during the rehydration process, a missing theme prop, and makes your application bigger without good reason.\n\nSee https://s-c.sh/2BAXzed for more info."),window[St]+=1);
|
|
11067
11067
|
|
|
11068
|
-
var _templateObject$
|
|
11069
|
-
const Style$K = dt.div(_templateObject$
|
|
11068
|
+
var _templateObject$c;
|
|
11069
|
+
const Style$K = dt.div(_templateObject$c || (_templateObject$c = _taggedTemplateLiteral(["\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\n\t.p-placeholder {\n\t\tposition: absolute;\n\t\ttop: 0px;\n\t\tleft: 0px;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tbackground: transparent;\n\t\tz-index: 100;\n\t}\n"])));
|
|
11070
11070
|
|
|
11071
11071
|
/**
|
|
11072
11072
|
* ComponentWithFocus
|
|
@@ -11138,8 +11138,8 @@ function ComponentWithFocus(_ref) {
|
|
|
11138
11138
|
});
|
|
11139
11139
|
}
|
|
11140
11140
|
|
|
11141
|
-
var _templateObject$
|
|
11142
|
-
const _excluded$
|
|
11141
|
+
var _templateObject$b;
|
|
11142
|
+
const _excluded$v = ["size", "maxHeight", "containerHeight", "dataSource", "columns", "pagination", "doEmptyRows"];
|
|
11143
11143
|
function StickyTable(_ref) {
|
|
11144
11144
|
let {
|
|
11145
11145
|
size = "small",
|
|
@@ -11150,7 +11150,7 @@ function StickyTable(_ref) {
|
|
|
11150
11150
|
pagination = false,
|
|
11151
11151
|
doEmptyRows = true
|
|
11152
11152
|
} = _ref,
|
|
11153
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11153
|
+
props = _objectWithoutProperties(_ref, _excluded$v);
|
|
11154
11154
|
const data = React__default["default"].useMemo(() => {
|
|
11155
11155
|
if (!doEmptyRows) {
|
|
11156
11156
|
return dataSource;
|
|
@@ -11196,7 +11196,7 @@ function StickyTable(_ref) {
|
|
|
11196
11196
|
})
|
|
11197
11197
|
});
|
|
11198
11198
|
}
|
|
11199
|
-
const Style$J = dt.div(_templateObject$
|
|
11199
|
+
const Style$J = dt.div(_templateObject$b || (_templateObject$b = _taggedTemplateLiteral(["\n\tmax-width: calc(100% - 48px);\n\tmargin-left: var(--size-lg);\n\toverflow: hidden;\n\n\t.daf-table {\n\t\tpadding: 0px;\n\t\tmargin-top: 0px;\n\n\t\t.ant-tag {\n\t\t\ttext-align: center;\n\t\t}\n\t}\n\n\t.daf-select-filters .filters {\n\t\tpadding-top: 16px;\n\t\tpadding-left: 0;\n\t\tpadding-right: 0;\n\t}\n\n\t.daf-table {\n\t\tpadding-top: 16px;\n\t}\n"])));
|
|
11200
11200
|
StickyTable.propTypes = {
|
|
11201
11201
|
size: PropTypes__default["default"].any,
|
|
11202
11202
|
maxHeight: PropTypes__default["default"].number,
|
|
@@ -11646,7 +11646,7 @@ const BTN_SIZE = {
|
|
|
11646
11646
|
LG: 'large'
|
|
11647
11647
|
};
|
|
11648
11648
|
|
|
11649
|
-
const _excluded$
|
|
11649
|
+
const _excluded$u = ["content", "size", "type", "icon", "onClick", "disabled", "loading", "title", "style", "className"];
|
|
11650
11650
|
function DafButton(_ref) {
|
|
11651
11651
|
let {
|
|
11652
11652
|
content = '',
|
|
@@ -11660,7 +11660,7 @@ function DafButton(_ref) {
|
|
|
11660
11660
|
style = {},
|
|
11661
11661
|
className = ''
|
|
11662
11662
|
} = _ref,
|
|
11663
|
-
restProps = _objectWithoutProperties(_ref, _excluded$
|
|
11663
|
+
restProps = _objectWithoutProperties(_ref, _excluded$u);
|
|
11664
11664
|
return /*#__PURE__*/jsxRuntime.jsx(antd.Button, _objectSpread2(_objectSpread2({
|
|
11665
11665
|
icon: icon,
|
|
11666
11666
|
type: type,
|
|
@@ -11779,12 +11779,12 @@ const Style$I = dt.div`
|
|
|
11779
11779
|
}
|
|
11780
11780
|
`;
|
|
11781
11781
|
|
|
11782
|
-
const _excluded$
|
|
11782
|
+
const _excluded$t = ["children"];
|
|
11783
11783
|
const BorderedButton = _ref => {
|
|
11784
11784
|
let {
|
|
11785
11785
|
children
|
|
11786
11786
|
} = _ref,
|
|
11787
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11787
|
+
props = _objectWithoutProperties(_ref, _excluded$t);
|
|
11788
11788
|
return /*#__PURE__*/jsxRuntime.jsx(Style$I, {
|
|
11789
11789
|
className: "d-btn-cont",
|
|
11790
11790
|
children: /*#__PURE__*/jsxRuntime.jsx(antd.Button, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
@@ -11793,7 +11793,7 @@ const BorderedButton = _ref => {
|
|
|
11793
11793
|
});
|
|
11794
11794
|
};
|
|
11795
11795
|
|
|
11796
|
-
var _templateObject$
|
|
11796
|
+
var _templateObject$a;
|
|
11797
11797
|
const variantConfig = {
|
|
11798
11798
|
default: {
|
|
11799
11799
|
className: "default-badge",
|
|
@@ -11911,7 +11911,7 @@ function Badge(_ref) {
|
|
|
11911
11911
|
})
|
|
11912
11912
|
});
|
|
11913
11913
|
}
|
|
11914
|
-
const Style$H = dt.div(_templateObject$
|
|
11914
|
+
const Style$H = dt.div(_templateObject$a || (_templateObject$a = _taggedTemplateLiteral(["\n\tdisplay: inline-flex;\n\talign-items: center;\n\tjustify-content: center;\n\tgap: 4px;\n\tpadding: 4px;\n\tmax-width: 100%;\n\n\toverflow: hidden;\n\twhite-space: nowrap;\n\ttext-overflow: ellipsis;\n\n\t> svg {\n\t\tflex-shrink: 0;\n\t}\n\n\t> span {\n\t\tall: unset;\n\t\tmargin-left: 4px;\n\t\tfont-weight: 600;\n\t\tfont-size: 12px;\n\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t\twhite-space: nowrap;\n\t\tdisplay: block;\n\t\tmax-width: 100%;\n\t}\n"])));
|
|
11915
11915
|
Badge.propTypes = {
|
|
11916
11916
|
children: PropTypes__default["default"].node,
|
|
11917
11917
|
className: PropTypes__default["default"].string,
|
|
@@ -11924,12 +11924,12 @@ Badge.propTypes = {
|
|
|
11924
11924
|
props: PropTypes__default["default"].object
|
|
11925
11925
|
};
|
|
11926
11926
|
|
|
11927
|
-
const _excluded$
|
|
11927
|
+
const _excluded$s = ["icon"];
|
|
11928
11928
|
function GetIcon(_ref) {
|
|
11929
11929
|
let {
|
|
11930
11930
|
icon
|
|
11931
11931
|
} = _ref,
|
|
11932
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
11932
|
+
props = _objectWithoutProperties(_ref, _excluded$s);
|
|
11933
11933
|
let Icon = Icons__namespace.CloseOutlined;
|
|
11934
11934
|
if (Icons__namespace[icon]) {
|
|
11935
11935
|
Icon = Icons__namespace[icon];
|
|
@@ -12248,7 +12248,7 @@ GoToSelect.propTypes = {
|
|
|
12248
12248
|
t: PropTypes__default["default"].func
|
|
12249
12249
|
};
|
|
12250
12250
|
|
|
12251
|
-
const _excluded$
|
|
12251
|
+
const _excluded$r = ["options", "defaultSelected", "onChange", "textWhenMultiple", "withCount", "oneAlwaysSelected", "canUnselectLast", "isAvatarGroup", "maxAvatarCount", "dropDownWidth", "topAvatarValue", "isSingle", "selectionType"];
|
|
12252
12252
|
const {
|
|
12253
12253
|
useToken: useToken$l
|
|
12254
12254
|
} = antd.theme;
|
|
@@ -12341,7 +12341,7 @@ function Multiselect(_ref) {
|
|
|
12341
12341
|
isSingle = false,
|
|
12342
12342
|
selectionType = SELECTION_TYPES.DEFAULT
|
|
12343
12343
|
} = _ref,
|
|
12344
|
-
restProps = _objectWithoutProperties(_ref, _excluded$
|
|
12344
|
+
restProps = _objectWithoutProperties(_ref, _excluded$r);
|
|
12345
12345
|
const {
|
|
12346
12346
|
token
|
|
12347
12347
|
} = useToken$l();
|
|
@@ -12734,13 +12734,12 @@ const useHeader = _ref => {
|
|
|
12734
12734
|
const actionButtons = onDownload && _actionButtons.length < 3 ? [..._actionButtons, ...(hasFilters ? filterButton : []), downloadButton] : [..._actionButtons, ...(hasFilters ? filterButton : [])];
|
|
12735
12735
|
const extraButtons = onDownload && _actionButtons.length >= 3 ? [..._extraButtons, downloadButtonAction] : [..._extraButtons];
|
|
12736
12736
|
const mainCont = React.useRef();
|
|
12737
|
-
React.useRef();
|
|
12738
12737
|
const buttonCont = React.useRef();
|
|
12739
12738
|
const [mainContWidth, setMainContWidth] = React.useState(600);
|
|
12740
12739
|
const [buttonContWidth, setButtonContWidth] = React.useState(0);
|
|
12741
12740
|
const hasSupportText = !!(supportText !== null && supportText !== void 0 && supportText.length);
|
|
12742
12741
|
const hasTags = !!(tags !== null && tags !== void 0 && tags.length);
|
|
12743
|
-
const hasButtons = !!(actionButtons !== null && actionButtons !== void 0 && actionButtons.length || extraButtons !== null && extraButtons !== void 0 && extraButtons.length);
|
|
12742
|
+
const hasButtons = React.useMemo(() => !!(actionButtons !== null && actionButtons !== void 0 && actionButtons.length || extraButtons !== null && extraButtons !== void 0 && extraButtons.length), [actionButtons, extraButtons]);
|
|
12744
12743
|
React.useEffect(() => {
|
|
12745
12744
|
const mainContObserver = new ResizeObserver(entries => {
|
|
12746
12745
|
const _mainEntry = entries[0];
|
|
@@ -12761,6 +12760,7 @@ const useHeader = _ref => {
|
|
|
12761
12760
|
});
|
|
12762
12761
|
}
|
|
12763
12762
|
if (hasButtons) {
|
|
12763
|
+
console.log("button observer before", buttonCont.current);
|
|
12764
12764
|
buttonContObserver.observe(buttonCont.current);
|
|
12765
12765
|
}
|
|
12766
12766
|
return () => {
|
|
@@ -12771,6 +12771,11 @@ const useHeader = _ref => {
|
|
|
12771
12771
|
};
|
|
12772
12772
|
}, []);
|
|
12773
12773
|
const maxWidth = React.useMemo(() => mainContWidth - buttonContWidth - 24, [mainContWidth, buttonContWidth]);
|
|
12774
|
+
console.log({
|
|
12775
|
+
buttonContWidth,
|
|
12776
|
+
mainContWidth,
|
|
12777
|
+
maxWidth
|
|
12778
|
+
});
|
|
12774
12779
|
const renderMainCont = () => /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
12775
12780
|
children: [/*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
12776
12781
|
className: formatClassname(["main-cont flex", className]),
|
|
@@ -13059,7 +13064,7 @@ DAFHeader.propTypes = {
|
|
|
13059
13064
|
filtersConfig: PropTypes__default["default"].any
|
|
13060
13065
|
};
|
|
13061
13066
|
|
|
13062
|
-
const _excluded$
|
|
13067
|
+
const _excluded$q = ["tabs", "onChange", "value", "className"];
|
|
13063
13068
|
function TabsHeader(_ref) {
|
|
13064
13069
|
let {
|
|
13065
13070
|
tabs = [],
|
|
@@ -13067,7 +13072,7 @@ function TabsHeader(_ref) {
|
|
|
13067
13072
|
value = '',
|
|
13068
13073
|
className = 'mt-2'
|
|
13069
13074
|
} = _ref,
|
|
13070
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
13075
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
13071
13076
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
13072
13077
|
className: formatClassname(['daf-tabs-header pl-6 pr-6', className]),
|
|
13073
13078
|
children: /*#__PURE__*/jsxRuntime.jsx(antd.Tabs, _objectSpread2({
|
|
@@ -13164,16 +13169,14 @@ DrawerHeader.propTypes = {
|
|
|
13164
13169
|
tabsConfig: PropTypes__default["default"].any
|
|
13165
13170
|
};
|
|
13166
13171
|
|
|
13167
|
-
const
|
|
13168
|
-
|
|
13169
|
-
|
|
13170
|
-
|
|
13171
|
-
|
|
13172
|
-
|
|
13173
|
-
|
|
13174
|
-
|
|
13175
|
-
isViewMode
|
|
13176
|
-
} = _ref;
|
|
13172
|
+
const useFooter = ({
|
|
13173
|
+
leftContent,
|
|
13174
|
+
centerContent,
|
|
13175
|
+
rightContent,
|
|
13176
|
+
actionButtons,
|
|
13177
|
+
app,
|
|
13178
|
+
isViewMode
|
|
13179
|
+
}) => {
|
|
13177
13180
|
const renderFooterContent = React.useMemo(() => {
|
|
13178
13181
|
const FooterContent = () => /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
13179
13182
|
className: "daf-footer-content",
|
|
@@ -13189,18 +13192,18 @@ const useFooter = _ref => {
|
|
|
13189
13192
|
className: "daf-footer-actions",
|
|
13190
13193
|
children: actionButtons.map((button, index) => {
|
|
13191
13194
|
const {
|
|
13192
|
-
|
|
13193
|
-
|
|
13194
|
-
|
|
13195
|
-
|
|
13196
|
-
|
|
13197
|
-
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
|
|
13201
|
-
|
|
13202
|
-
|
|
13203
|
-
return /*#__PURE__*/jsxRuntime.jsx(DafButton,
|
|
13195
|
+
label,
|
|
13196
|
+
onClick,
|
|
13197
|
+
icon,
|
|
13198
|
+
type = BTN_TYPES.PRIMARY,
|
|
13199
|
+
tooltip,
|
|
13200
|
+
disabled = false,
|
|
13201
|
+
loading = false,
|
|
13202
|
+
style = {},
|
|
13203
|
+
className = "",
|
|
13204
|
+
...restProps
|
|
13205
|
+
} = button;
|
|
13206
|
+
return /*#__PURE__*/jsxRuntime.jsx(DafButton, {
|
|
13204
13207
|
content: label,
|
|
13205
13208
|
type: type,
|
|
13206
13209
|
size: BTN_SIZE.MD,
|
|
@@ -13212,8 +13215,9 @@ const useFooter = _ref => {
|
|
|
13212
13215
|
loading: loading,
|
|
13213
13216
|
title: tooltip,
|
|
13214
13217
|
style: style,
|
|
13215
|
-
className: className
|
|
13216
|
-
|
|
13218
|
+
className: className,
|
|
13219
|
+
...restProps
|
|
13220
|
+
}, index);
|
|
13217
13221
|
})
|
|
13218
13222
|
})]
|
|
13219
13223
|
})]
|
|
@@ -13226,8 +13230,180 @@ const useFooter = _ref => {
|
|
|
13226
13230
|
};
|
|
13227
13231
|
};
|
|
13228
13232
|
|
|
13229
|
-
|
|
13230
|
-
|
|
13233
|
+
const FooterContainer = dt.div`
|
|
13234
|
+
.daf-footer {
|
|
13235
|
+
background: #ffffff;
|
|
13236
|
+
border-top: 1px solid #e8e8e8;
|
|
13237
|
+
border-left: none;
|
|
13238
|
+
border-right: none;
|
|
13239
|
+
border-bottom: none;
|
|
13240
|
+
border-radius: 0;
|
|
13241
|
+
padding: 24px;
|
|
13242
|
+
margin: 0;
|
|
13243
|
+
box-shadow: none;
|
|
13244
|
+
z-index: 100;
|
|
13245
|
+
position: relative;
|
|
13246
|
+
min-height: 80px;
|
|
13247
|
+
|
|
13248
|
+
&.daf-footer-fixed {
|
|
13249
|
+
position: fixed;
|
|
13250
|
+
bottom: 0;
|
|
13251
|
+
left: 0;
|
|
13252
|
+
right: 0;
|
|
13253
|
+
z-index: 1000;
|
|
13254
|
+
}
|
|
13255
|
+
|
|
13256
|
+
.daf-footer-content {
|
|
13257
|
+
display: flex;
|
|
13258
|
+
align-items: center;
|
|
13259
|
+
justify-content: space-between;
|
|
13260
|
+
width: 100%;
|
|
13261
|
+
min-height: 32px;
|
|
13262
|
+
|
|
13263
|
+
.daf-footer-left {
|
|
13264
|
+
flex: 1;
|
|
13265
|
+
display: flex;
|
|
13266
|
+
align-items: center;
|
|
13267
|
+
justify-content: flex-start;
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13270
|
+
.daf-footer-center {
|
|
13271
|
+
flex: 1;
|
|
13272
|
+
display: flex;
|
|
13273
|
+
align-items: center;
|
|
13274
|
+
justify-content: center;
|
|
13275
|
+
}
|
|
13276
|
+
|
|
13277
|
+
.daf-footer-right {
|
|
13278
|
+
flex: 1;
|
|
13279
|
+
display: flex;
|
|
13280
|
+
align-items: center;
|
|
13281
|
+
justify-content: flex-end;
|
|
13282
|
+
gap: 12px;
|
|
13283
|
+
|
|
13284
|
+
.daf-footer-actions {
|
|
13285
|
+
.ant-btn {
|
|
13286
|
+
height: 40px;
|
|
13287
|
+
padding: 0 24px;
|
|
13288
|
+
border-radius: 6px;
|
|
13289
|
+
font-weight: 500;
|
|
13290
|
+
font-size: 14px;
|
|
13291
|
+
transition: all 0.3s ease;
|
|
13292
|
+
border: 1px solid transparent;
|
|
13293
|
+
|
|
13294
|
+
&.ant-btn-primary {
|
|
13295
|
+
background-color: var(--color-primary-70);
|
|
13296
|
+
color: #ffffff;
|
|
13297
|
+
border-color: var(--color-primary-70);
|
|
13298
|
+
|
|
13299
|
+
&:hover {
|
|
13300
|
+
background-color: var(--color-primary-60);
|
|
13301
|
+
border-color: var(--color-primary-60);
|
|
13302
|
+
}
|
|
13303
|
+
|
|
13304
|
+
&:active {
|
|
13305
|
+
background-color: var(--color-primary-80);
|
|
13306
|
+
border-color: var(--color-primary-80);
|
|
13307
|
+
}
|
|
13308
|
+
|
|
13309
|
+
&:disabled {
|
|
13310
|
+
background-color: #f5f5f5;
|
|
13311
|
+
color: #bfbfbf;
|
|
13312
|
+
border-color: #d9d9d9;
|
|
13313
|
+
}
|
|
13314
|
+
}
|
|
13315
|
+
|
|
13316
|
+
&.ant-btn-default {
|
|
13317
|
+
background: #ffffff;
|
|
13318
|
+
color: #666666;
|
|
13319
|
+
border-color: #d9d9d9;
|
|
13320
|
+
|
|
13321
|
+
&:hover {
|
|
13322
|
+
border-color: var(--color-primary-70);
|
|
13323
|
+
color: var(--color-primary-70);
|
|
13324
|
+
}
|
|
13325
|
+
|
|
13326
|
+
&:active {
|
|
13327
|
+
border-color: var(--color-primary-80);
|
|
13328
|
+
color: var(--color-primary-80);
|
|
13329
|
+
}
|
|
13330
|
+
|
|
13331
|
+
&:disabled {
|
|
13332
|
+
background-color: #f5f5f5;
|
|
13333
|
+
color: #bfbfbf;
|
|
13334
|
+
border-color: #d9d9d9;
|
|
13335
|
+
}
|
|
13336
|
+
}
|
|
13337
|
+
|
|
13338
|
+
&.ant-btn-ghost {
|
|
13339
|
+
background: transparent;
|
|
13340
|
+
color: #666666;
|
|
13341
|
+
border-color: #d9d9d9;
|
|
13342
|
+
|
|
13343
|
+
&:hover {
|
|
13344
|
+
border-color: var(--color-primary-70);
|
|
13345
|
+
color: var(--color-primary-70);
|
|
13346
|
+
background: rgba(0, 0, 0, 0.02);
|
|
13347
|
+
}
|
|
13348
|
+
|
|
13349
|
+
&:active {
|
|
13350
|
+
border-color: var(--color-primary-80);
|
|
13351
|
+
color: var(--color-primary-80);
|
|
13352
|
+
}
|
|
13353
|
+
|
|
13354
|
+
&:disabled {
|
|
13355
|
+
color: #bfbfbf;
|
|
13356
|
+
border-color: #d9d9d9;
|
|
13357
|
+
}
|
|
13358
|
+
}
|
|
13359
|
+
}
|
|
13360
|
+
}
|
|
13361
|
+
}
|
|
13362
|
+
}
|
|
13363
|
+
}
|
|
13364
|
+
|
|
13365
|
+
/* Responsive design */
|
|
13366
|
+
@media (max-width: 768px) {
|
|
13367
|
+
.daf-footer {
|
|
13368
|
+
margin: 0;
|
|
13369
|
+
padding: 16px;
|
|
13370
|
+
|
|
13371
|
+
.daf-footer-content {
|
|
13372
|
+
flex-direction: column;
|
|
13373
|
+
gap: 16px;
|
|
13374
|
+
align-items: stretch;
|
|
13375
|
+
|
|
13376
|
+
.daf-footer-left,
|
|
13377
|
+
.daf-footer-center,
|
|
13378
|
+
.daf-footer-right {
|
|
13379
|
+
flex: none;
|
|
13380
|
+
justify-content: center;
|
|
13381
|
+
}
|
|
13382
|
+
|
|
13383
|
+
.daf-footer-right {
|
|
13384
|
+
.daf-footer-actions {
|
|
13385
|
+
justify-content: center;
|
|
13386
|
+
}
|
|
13387
|
+
}
|
|
13388
|
+
}
|
|
13389
|
+
}
|
|
13390
|
+
}
|
|
13391
|
+
|
|
13392
|
+
/* App-specific styling */
|
|
13393
|
+
&.sbg-app {
|
|
13394
|
+
.daf-footer {
|
|
13395
|
+
background: #f8f9fa;
|
|
13396
|
+
border-color: #e9ecef;
|
|
13397
|
+
}
|
|
13398
|
+
}
|
|
13399
|
+
|
|
13400
|
+
&.nashiriki-app {
|
|
13401
|
+
.daf-footer {
|
|
13402
|
+
background: #fff;
|
|
13403
|
+
border-color: #d9d9d9;
|
|
13404
|
+
}
|
|
13405
|
+
}
|
|
13406
|
+
`;
|
|
13231
13407
|
|
|
13232
13408
|
function DAFFooter(_ref) {
|
|
13233
13409
|
let {
|
|
@@ -14095,9 +14271,8 @@ const determineHasChildren = ({
|
|
|
14095
14271
|
|
|
14096
14272
|
const sortByPosition = (items, getConfig) => {
|
|
14097
14273
|
return items.sort((a, b) => {
|
|
14098
|
-
|
|
14099
|
-
const
|
|
14100
|
-
const positionB = ((_getConfig2 = getConfig(b)) === null || _getConfig2 === void 0 ? void 0 : _getConfig2.position) || 0;
|
|
14274
|
+
const positionA = getConfig(a)?.position || 0;
|
|
14275
|
+
const positionB = getConfig(b)?.position || 0;
|
|
14101
14276
|
return positionA - positionB;
|
|
14102
14277
|
});
|
|
14103
14278
|
};
|
|
@@ -14114,7 +14289,7 @@ const resolveDynamicLabel = (labelConfig, item, defaultLabel) => {
|
|
|
14114
14289
|
const parts = labelKey.split(' is ');
|
|
14115
14290
|
if (parts.length === 2) {
|
|
14116
14291
|
const [conditionKey, conditionValue] = parts;
|
|
14117
|
-
if (
|
|
14292
|
+
if (item?.[conditionKey] === conditionValue) {
|
|
14118
14293
|
return labelConfig[labelKey];
|
|
14119
14294
|
}
|
|
14120
14295
|
}
|
|
@@ -19093,7 +19268,11 @@ function Map$3(_ref) {
|
|
|
19093
19268
|
siderTitle = "Mine Description",
|
|
19094
19269
|
renderTooltip = () => [],
|
|
19095
19270
|
renderTooltipTags = () => {},
|
|
19096
|
-
mapConfig = {
|
|
19271
|
+
mapConfig = {
|
|
19272
|
+
maxZoom: 18,
|
|
19273
|
+
center: [13, -15],
|
|
19274
|
+
zoom: 5
|
|
19275
|
+
},
|
|
19097
19276
|
emptyDescriptionText = "No description provided",
|
|
19098
19277
|
tooltipAsText = false,
|
|
19099
19278
|
primaryLink = false,
|
|
@@ -34533,6 +34712,7 @@ const EditForm = _ref => {
|
|
|
34533
34712
|
}, id);
|
|
34534
34713
|
}
|
|
34535
34714
|
};
|
|
34715
|
+
console.log("values", values);
|
|
34536
34716
|
return /*#__PURE__*/jsxRuntime.jsxs(EditProvider, {
|
|
34537
34717
|
t: t,
|
|
34538
34718
|
isReview: isReview,
|
package/package.json
CHANGED
|
@@ -103,7 +103,7 @@ function Map({
|
|
|
103
103
|
siderTitle = "Mine Description",
|
|
104
104
|
renderTooltip = () => [],
|
|
105
105
|
renderTooltipTags = () => {},
|
|
106
|
-
mapConfig = {},
|
|
106
|
+
mapConfig = { maxZoom: 18, center: [13, -15], zoom: 5 },
|
|
107
107
|
emptyDescriptionText = "No description provided",
|
|
108
108
|
tooltipAsText = false,
|
|
109
109
|
primaryLink = false,
|
|
@@ -134,7 +134,7 @@ function Map({
|
|
|
134
134
|
t,
|
|
135
135
|
app,
|
|
136
136
|
renderTooltip,
|
|
137
|
-
|
|
137
|
+
renderTooltipTags,
|
|
138
138
|
onClickLink,
|
|
139
139
|
link,
|
|
140
140
|
mapConfig,
|
|
@@ -1,75 +1,75 @@
|
|
|
1
1
|
/* eslint-disable react/jsx-filename-extension */
|
|
2
|
-
import
|
|
3
|
-
import DynamicForm from
|
|
4
|
-
import ThemeLayout from
|
|
5
|
-
import { Form } from
|
|
6
|
-
import { useCallback, useState } from
|
|
7
|
-
import { storyData } from
|
|
2
|
+
import "./_index.scss";
|
|
3
|
+
import DynamicForm from "./index.jsx";
|
|
4
|
+
import ThemeLayout from "../ThemeLayout";
|
|
5
|
+
import { Form } from "antd";
|
|
6
|
+
import { useCallback, useState } from "react";
|
|
7
|
+
import { storyData } from "./storyConfig.js";
|
|
8
8
|
// import Modal from '../Modal/index';
|
|
9
9
|
// import { Drawer } from 'antd';
|
|
10
10
|
|
|
11
11
|
const EForm = () => {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
12
|
+
const [MainForm] = Form.useForm();
|
|
13
|
+
const [ajaxForms, setAjaxForms] = useState({});
|
|
14
|
+
const [ajaxOptions, setAjaxOptions] = useState({});
|
|
15
|
+
const [open, setOpen] = useState(true);
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
const changeAjaxForms = useCallback((key, value) => {
|
|
18
|
+
setAjaxForms((prev) => ({ ...prev, [key]: value }));
|
|
19
|
+
}, []);
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
21
|
+
const changeAjaxOptions = useCallback((key, value) => {
|
|
22
|
+
setAjaxOptions((prev) => ({ ...prev, [key]: value }));
|
|
23
|
+
}, []);
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
25
|
+
return (
|
|
26
|
+
<div>
|
|
27
|
+
<DynamicForm
|
|
28
|
+
alertErrorsConfig={{
|
|
29
|
+
country: {
|
|
30
|
+
message: "Error Test",
|
|
31
|
+
onClose: () => alert(1),
|
|
32
|
+
},
|
|
33
|
+
}}
|
|
34
|
+
goTo={() => {}}
|
|
35
|
+
ajaxForms={ajaxForms}
|
|
36
|
+
changeAjaxForms={changeAjaxForms}
|
|
37
|
+
ajaxOptions={ajaxOptions}
|
|
38
|
+
user={{ language: "en" }}
|
|
39
|
+
changeAjaxOptions={changeAjaxOptions}
|
|
40
|
+
app="sbg"
|
|
41
|
+
query={null}
|
|
42
|
+
MainForm={MainForm}
|
|
43
|
+
form={storyData.form}
|
|
44
|
+
data={storyData.data}
|
|
45
|
+
getAppHeader={storyData.getAppHeader}
|
|
46
|
+
getApiBaseUrl={storyData.getApiBaseUrl}
|
|
47
|
+
submit={(payload) => {
|
|
48
|
+
console.log("submit", payload);
|
|
49
|
+
setOpen(false);
|
|
50
|
+
}}
|
|
51
|
+
staticWidth="720px"
|
|
52
|
+
/>
|
|
53
|
+
</div>
|
|
54
|
+
);
|
|
55
|
+
};
|
|
56
56
|
|
|
57
57
|
export default {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
}
|
|
58
|
+
title: "Form/DynamicForm",
|
|
59
|
+
component: DynamicForm,
|
|
60
|
+
tags: ["autodocs"],
|
|
61
|
+
decorators: [
|
|
62
|
+
() => (
|
|
63
|
+
<div style={{ margin: "3em" }}>
|
|
64
|
+
<ThemeLayout>
|
|
65
|
+
<EForm />
|
|
66
|
+
</ThemeLayout>
|
|
67
|
+
</div>
|
|
68
|
+
),
|
|
69
|
+
],
|
|
70
|
+
};
|
|
71
71
|
|
|
72
72
|
export const Primary = {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
73
|
+
name: "Edit Form",
|
|
74
|
+
args: {},
|
|
75
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const getApiBaseUrl = () => "http://192.168.4.
|
|
1
|
+
const getApiBaseUrl = () => "http://192.168.4.252:3022";
|
|
2
2
|
|
|
3
3
|
const getAppHeader = () => ({
|
|
4
|
-
Application: "
|
|
4
|
+
Application: "nashiriki",
|
|
5
5
|
Language: "en",
|
|
6
6
|
});
|
|
7
7
|
|
|
@@ -12,115 +12,95 @@ export const storyData = {
|
|
|
12
12
|
form: {
|
|
13
13
|
id: "identification",
|
|
14
14
|
position: 1,
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
|
|
16
|
+
areaOfInfluence: {
|
|
17
|
+
_id: "68d699bcab72f002b8f04a9e",
|
|
18
|
+
id: "d9db4b4d-a7bb-43d7-bdeb-e64bb38d41d1",
|
|
19
|
+
dataId: "areaOfInfluence",
|
|
19
20
|
section: "identification",
|
|
20
|
-
type: "
|
|
21
|
+
type: "drawTerritory",
|
|
21
22
|
meta: {
|
|
22
|
-
|
|
23
|
+
comment: true,
|
|
23
24
|
notApplicable: false,
|
|
24
25
|
notAvailable: false,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
mandatory: true,
|
|
28
|
-
disableEdit: {
|
|
29
|
-
create: false,
|
|
30
|
-
edit: true,
|
|
31
|
-
},
|
|
26
|
+
mandatory: false,
|
|
27
|
+
group: "identification",
|
|
32
28
|
},
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
29
|
+
|
|
30
|
+
position: 6,
|
|
31
|
+
description:
|
|
32
|
+
"The area of influence is the area where actions of this armed group are happening",
|
|
33
|
+
scope: ["armedGroups", "location", "conflictArea"],
|
|
34
|
+
label: "Perimeter",
|
|
35
|
+
createdAt: "2025-09-26T13:48:44.363Z",
|
|
36
|
+
updatedAt: "2025-09-26T13:48:44.363Z",
|
|
38
37
|
__v: 0,
|
|
39
38
|
},
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
39
|
+
|
|
40
|
+
locationId: {
|
|
41
|
+
_id: "68d699bcab72f002b8f04ab8",
|
|
42
|
+
id: "956303f0-7a0f-40e1-ba9d-21df5079a833",
|
|
43
|
+
dataId: "locationId",
|
|
44
44
|
section: "identification",
|
|
45
|
-
type: "
|
|
45
|
+
type: "ajaxSelect",
|
|
46
46
|
meta: {
|
|
47
|
-
entity: "Location",
|
|
48
|
-
namespace: "location",
|
|
49
|
-
formScope: "activityMine",
|
|
50
|
-
path: "associatedMine",
|
|
51
|
-
maxRepeat: 1,
|
|
52
47
|
comment: false,
|
|
53
|
-
createUserVersion: false,
|
|
54
|
-
linkOptions: {
|
|
55
|
-
global: true,
|
|
56
|
-
},
|
|
57
48
|
notApplicable: false,
|
|
58
|
-
notAvailable:
|
|
59
|
-
|
|
60
|
-
path: "associatedSubjects",
|
|
61
|
-
nature: "activity",
|
|
62
|
-
},
|
|
63
|
-
ajaxOptionsKey: "id",
|
|
64
|
-
mandatory: true,
|
|
65
|
-
versioning: true,
|
|
66
|
-
disableEdit: {
|
|
67
|
-
create: false,
|
|
68
|
-
edit: true,
|
|
69
|
-
},
|
|
70
|
-
tableKeys: ["datastakeId", "locationId"],
|
|
71
|
-
optionsView: {
|
|
72
|
-
editInputType: "ajaxSelect",
|
|
73
|
-
editInputKey: "locationId",
|
|
74
|
-
onViewInputType: "table",
|
|
75
|
-
},
|
|
76
|
-
application: "sbg",
|
|
77
|
-
noAddNew: true,
|
|
78
|
-
call: 'LOCATION::getOptions({\n "ownAccount": "true",\n "category": "mineSite"\n })::{\n "label": "name",\n "name": "name",\n "value": "_id",\n "datastakeId": "datastakeId",\n "gps": "gps",\n "_id": "_id",\n "id": "id",\n "parent": "parent",\n "administrativeLevel1": "administrativeLevel1",\n "administrativeLevel2": "administrativeLevel2",\n "category":"category",\n "users": "users",\n "country": "country"\n }::["datastakeId", "gps", "administrativeLevel1", "administrativeLevel2", "category","parent", "_id"]',
|
|
79
|
-
},
|
|
80
|
-
position: 2,
|
|
81
|
-
scope: ["modalActivity", "activityInfo", "modalFromMineSection"],
|
|
82
|
-
label: {
|
|
83
|
-
"scope is modalActivity": "Mine",
|
|
84
|
-
"scope not modalActivity": "Associated Mine",
|
|
85
|
-
},
|
|
86
|
-
createdAt: "2025-08-08T15:54:02.839Z",
|
|
87
|
-
updatedAt: "2025-08-08T15:54:02.839Z",
|
|
88
|
-
__v: 0,
|
|
89
|
-
},
|
|
90
|
-
type: {
|
|
91
|
-
_id: "68961d98fb2b209b19efa495",
|
|
92
|
-
id: "8e421077-c542-46c0-a515-151cf2741f7d",
|
|
93
|
-
dataId: "type",
|
|
94
|
-
section: "identification",
|
|
95
|
-
type: "select",
|
|
96
|
-
meta: {
|
|
49
|
+
notAvailable: true,
|
|
50
|
+
application: "nashiriki",
|
|
97
51
|
group: "identification",
|
|
98
|
-
notApplicable: false,
|
|
99
|
-
notAvailable: false,
|
|
100
|
-
comment: false,
|
|
101
|
-
versioning: true,
|
|
102
52
|
mandatory: true,
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
53
|
+
onNewSetValueKey: "name",
|
|
54
|
+
store: {
|
|
55
|
+
location: {
|
|
56
|
+
path: "name",
|
|
57
|
+
global: true,
|
|
58
|
+
},
|
|
107
59
|
},
|
|
60
|
+
call: 'LOCATION::getOptions({\n "country": "country",\n "category": "category",\n "administrativeLevel1": "administrativeLevel1",\n "administrativeLevel2": "administrativeLevel2"\n })::{\n "label": "name",\n "value": "_id",\n "datastakeId": "datastakeId",\n "gps": "gps",\n "_id": "_id",\n "parent": "parent",\n "administrativeLevel1": "administrativeLevel1",\n "administrativeLevel2": "administrativeLevel2",\n "category":"category",\n "users": "users",\n "country": "country"\n }::["datastakeId", "gps", "administrativeLevel1", "administrativeLevel2", "category", "parent", "country", "_id"]',
|
|
108
61
|
},
|
|
109
|
-
position:
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
62
|
+
position: 5,
|
|
63
|
+
dataLink: {
|
|
64
|
+
entity: "Location",
|
|
65
|
+
createUserVersion: true,
|
|
66
|
+
createNew: true,
|
|
67
|
+
collection: "nashiriki.global_location",
|
|
68
|
+
formNamespace: "location",
|
|
69
|
+
keys: [
|
|
70
|
+
"name",
|
|
71
|
+
"country",
|
|
72
|
+
"category",
|
|
73
|
+
"administrativeLevel1",
|
|
74
|
+
"administrativeLevel2",
|
|
75
|
+
],
|
|
76
|
+
},
|
|
77
|
+
rules: [
|
|
113
78
|
{
|
|
114
|
-
|
|
115
|
-
|
|
79
|
+
required: true,
|
|
80
|
+
message: "errors::field is required",
|
|
116
81
|
},
|
|
117
82
|
],
|
|
118
|
-
|
|
119
|
-
|
|
83
|
+
scope: [
|
|
84
|
+
"nashirikiOperatorLocation",
|
|
85
|
+
"nashirikiWorkerLocation",
|
|
86
|
+
"modalNashiriki",
|
|
87
|
+
"locationAssociatedVillage",
|
|
88
|
+
"locationAssociatedExportTown",
|
|
89
|
+
"workerPlaceOfBirth",
|
|
90
|
+
"armedGroups",
|
|
91
|
+
"locationSupplierTrade",
|
|
92
|
+
"modal",
|
|
93
|
+
"location",
|
|
94
|
+
"conflictArea",
|
|
95
|
+
],
|
|
96
|
+
label: "Name of the location",
|
|
97
|
+
tableLabel: "Name",
|
|
98
|
+
createdAt: "2025-09-26T13:48:44.502Z",
|
|
99
|
+
updatedAt: "2025-09-26T13:48:44.502Z",
|
|
120
100
|
__v: 0,
|
|
121
101
|
},
|
|
122
102
|
label: "Identification",
|
|
123
|
-
subTitle: "
|
|
103
|
+
subTitle: "Identification",
|
|
124
104
|
},
|
|
125
105
|
},
|
|
126
106
|
data: {
|
|
@@ -101,13 +101,15 @@ export const useHeader = ({
|
|
|
101
101
|
: [..._extraButtons];
|
|
102
102
|
|
|
103
103
|
const mainCont = useRef();
|
|
104
|
-
const addedHeaderCont = useRef();
|
|
105
104
|
const buttonCont = useRef();
|
|
106
105
|
const [mainContWidth, setMainContWidth] = useState(600);
|
|
107
106
|
const [buttonContWidth, setButtonContWidth] = useState(0);
|
|
108
107
|
const hasSupportText = !!supportText?.length;
|
|
109
108
|
const hasTags = !!tags?.length;
|
|
110
|
-
const hasButtons =
|
|
109
|
+
const hasButtons = useMemo(
|
|
110
|
+
() => !!(actionButtons?.length || extraButtons?.length),
|
|
111
|
+
[actionButtons, extraButtons],
|
|
112
|
+
);
|
|
111
113
|
|
|
112
114
|
useEffect(() => {
|
|
113
115
|
const mainContObserver = new ResizeObserver((entries) => {
|
|
@@ -120,6 +122,8 @@ export const useHeader = ({
|
|
|
120
122
|
});
|
|
121
123
|
|
|
122
124
|
mainContObserver.observe(mainCont.current);
|
|
125
|
+
|
|
126
|
+
|
|
123
127
|
let buttonContObserver;
|
|
124
128
|
|
|
125
129
|
if (hasButtons) {
|
|
@@ -134,6 +138,7 @@ export const useHeader = ({
|
|
|
134
138
|
}
|
|
135
139
|
|
|
136
140
|
if (hasButtons) {
|
|
141
|
+
console.log("button observer before", buttonCont.current);
|
|
137
142
|
buttonContObserver.observe(buttonCont.current);
|
|
138
143
|
}
|
|
139
144
|
|
|
@@ -150,6 +155,8 @@ export const useHeader = ({
|
|
|
150
155
|
[mainContWidth, buttonContWidth],
|
|
151
156
|
);
|
|
152
157
|
|
|
158
|
+
console.log({ buttonContWidth, mainContWidth, maxWidth });
|
|
159
|
+
|
|
153
160
|
const renderMainCont = () => (
|
|
154
161
|
<div>
|
|
155
162
|
<div className={formatClassname(["main-cont flex", className])} ref={mainCont}>
|