diff --git a/Changelog.md b/Changelog.md index 96f9ba4f1c0f35e13ad53f1a1f3956b391942450..d80611e28feeaea646af29a2bfa6cf9e705e344b 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.63] - 2024-10-08 +- Minor text change to the survey landing page +- Prevent publishing a survey year which doesn't have a mapped publishing function + ## [0.62] - 2024-10-02 - Minor text changes to the survey - Add Let's Encrypt to the certificate provider list in the survey (removing some unused providers) diff --git a/compendium-frontend/src/survey/Landing.tsx b/compendium-frontend/src/survey/Landing.tsx index ee50b8d88ff35583cf04a95e6ab63fd0144be07b..f0160e32216f5cd14ece0b6651dc31fdb15f4d61 100644 --- a/compendium-frontend/src/survey/Landing.tsx +++ b/compendium-frontend/src/survey/Landing.tsx @@ -167,7 +167,7 @@ function Landing(): ReactElement { <div className="wordwrap pt-4" style={{ maxWidth: '75rem' }}> <p style={{ textAlign: "left" }}> Hello, - <br />Welcome to the GÉANT Compendium Survey. (N)REN Compendium administrators can login via Single Sign On (SSO) <a href="/login">here</a>, which will complete their registration to fill in the 2023 Compendium survey. + <br />Welcome to the GÉANT Compendium Survey. (N)REN Compendium administrators can login via Single Sign On (SSO) <a href="/login">here</a>, which will complete their registration to fill in the latest Compendium survey. This will send a notification to the Compendium administration team and they will assign you to your (N)REN. <br />Once this step has been completed, you will receive an email from the administration team. We aim to get back to you the same working day, but sometimes may take a little longer. <br />If you are not sure whether you are a Compendium Administrator for your (N)REN, please contact your GÉANT Partner Relations relationship manager. diff --git a/compendium_v2/publishers/survey_publisher.py b/compendium_v2/publishers/survey_publisher.py index 789fa18fbcc0fe22f6f730cafcfa50b84080885a..a2a0cdff0fb719aca5dee317c8955d5a63792e40 100644 --- a/compendium_v2/publishers/survey_publisher.py +++ b/compendium_v2/publishers/survey_publisher.py @@ -561,7 +561,10 @@ def publish(year): 2023: _map_2023 } - mapping_function = question_mapping.get(year, _map_2023) # default to 2023 publisher, useful for testing + mapping_function = question_mapping.get(year) + + if not mapping_function: + raise ValueError(f"No publishing function found for the {year} survey.") for response in responses: mapping_function(response.nren, response.answers) diff --git a/compendium_v2/routes/survey.py b/compendium_v2/routes/survey.py index adeb56066579e92d34e190a71057edb2707ff0b1..0734c98447ea9b96a0ae0f2194242bf49a5b804b 100644 --- a/compendium_v2/routes/survey.py +++ b/compendium_v2/routes/survey.py @@ -252,7 +252,10 @@ def preview_survey(year) -> Any: if year < 2023: return {'message': 'The 2023 survey is the first that can be published from this application'}, 400 - publish(year) + try: + publish(year) + except ValueError as e: + return {'message': str(e)}, 400 preview = db.session.scalar(select(PreviewYear).where(PreviewYear.year == year)) if not preview: @@ -283,7 +286,10 @@ def publish_survey(year) -> Any: if year < 2023: return {'message': 'The 2023 survey is the first that can be published from this application'}, 400 - publish(year) + try: + publish(year) + except ValueError as e: + return {'message': str(e)}, 400 db.session.execute(delete(PreviewYear).where(PreviewYear.year == year)) diff --git a/compendium_v2/static/bundle.js b/compendium_v2/static/bundle.js index d0082d706fd3b76874248de8e4f9ccec4b7f6939..8a74ec2450efe8c218f815d86ffa1f6daef7f239 100644 --- a/compendium_v2/static/bundle.js +++ b/compendium_v2/static/bundle.js @@ -169,4 +169,4 @@ to { > * { pointer-events: auto; } -`,jO=({reverseOrder:e,position:n="top-center",toastOptions:r,gutter:o,children:i,containerStyle:s,containerClassName:a})=>{let{toasts:l,handlers:u}=(e=>{let{toasts:n,pausedAt:r}=((e={})=>{let[n,r]=(0,t.useState)(cO);(0,t.useEffect)((()=>(uO.push(r),()=>{let e=uO.indexOf(r);e>-1&&uO.splice(e,1)})),[n]);let o=n.toasts.map((t=>{var n,r;return{...e,...e[t.type],...t,duration:t.duration||(null==(n=e[t.type])?void 0:n.duration)||(null==e?void 0:e.duration)||dO[t.type],style:{...e.style,...null==(r=e[t.type])?void 0:r.style,...t.style}}}));return{...n,toasts:o}})(e);(0,t.useEffect)((()=>{if(r)return;let e=Date.now(),t=n.map((t=>{if(t.duration===1/0)return;let n=(t.duration||0)+t.pauseDuration-(e-t.createdAt);if(!(n<0))return setTimeout((()=>fO.dismiss(t.id)),n);t.visible&&fO.dismiss(t.id)}));return()=>{t.forEach((e=>e&&clearTimeout(e)))}}),[n,r]);let o=(0,t.useCallback)((()=>{r&&pO({type:6,time:Date.now()})}),[r]),i=(0,t.useCallback)(((e,t)=>{let{reverseOrder:r=!1,gutter:o=8,defaultPosition:i}=t||{},s=n.filter((t=>(t.position||i)===(e.position||i)&&t.height)),a=s.findIndex((t=>t.id===e.id)),l=s.filter(((e,t)=>t<a&&e.visible)).length;return s.filter((e=>e.visible)).slice(...r?[l+1]:[0,l]).reduce(((e,t)=>e+(t.height||0)+o),0)}),[n]);return{toasts:n,handlers:{updateHeight:mO,startPause:gO,endPause:o,calculateOffset:i}}})(r);return t.createElement("div",{style:{position:"fixed",zIndex:9999,top:16,left:16,right:16,bottom:16,pointerEvents:"none",...s},className:a,onMouseEnter:u.startPause,onMouseLeave:u.endPause},l.map((r=>{let s=r.position||n,a=((e,t)=>{let n=e.includes("top"),r=n?{top:0}:{bottom:0},o=e.includes("center")?{justifyContent:"center"}:e.includes("right")?{justifyContent:"flex-end"}:{};return{left:0,right:0,display:"flex",position:"absolute",transition:iO()?void 0:"all 230ms cubic-bezier(.21,1.02,.73,1)",transform:`translateY(${t*(n?1:-1)}px)`,...r,...o}})(s,u.calculateOffset(r,{reverseOrder:e,gutter:o,defaultPosition:n}));return t.createElement(MO,{id:r.id,key:r.id,onHeightUpdate:u.updateHeight,className:r.visible?LO:"",style:a},"custom"===r.type?rO(r.message,r):i?i(r):t.createElement(NO,{toast:r,position:s}))})))},FO=fO,BO=function(e){return e.Unverified="unverified",e.Verified="verified",e.Edited="edited",e}({}),qO=function(e){return e.not_started="not started",e.started="started",e.completed="completed",e}({}),HO=function(e){return e.closed="closed",e.open="open",e.preview="preview",e.published="published",e}({});function zO(){return QO.apply(this,arguments)}function QO(){return(QO=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/survey/list");case 3:return t=e.sent,e.next=6,t.json();case 6:return n=e.sent,e.abrupt("return",n);case 10:return e.prev=10,e.t0=e.catch(0),e.abrupt("return",[]);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function UO(){return WO.apply(this,arguments)}function WO(){return(WO=Fu(qu().mark((function e(){var t,n,r;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/survey/active/year");case 3:return t=e.sent,e.next=6,t.json();case 6:if(!("year"in(n=e.sent))){e.next=12;break}return r=n.year,e.abrupt("return",r.toString());case 12:return console.log("Invalid response format: Failed fetching active survey year."),e.abrupt("return","");case 14:e.next=20;break;case 16:return e.prev=16,e.t0=e.catch(0),console.error("Failed fetching active survey year:",e.t0),e.abrupt("return","");case 20:case"end":return e.stop()}}),e,null,[[0,16]])})))).apply(this,arguments)}const $O=t.forwardRef((({bsPrefix:e,variant:t,animation:n="border",size:r,as:o="div",className:i,...s},a)=>{const l=`${e=kt(e,"spinner")}-${n}`;return(0,_t.jsx)(o,{ref:a,...s,className:Tt()(i,l,r&&`${l}-${r}`,t&&`text-${t}`)})}));$O.displayName="Spinner";const GO=$O;function JO(e){var n=e.text,r=e.helpText,o=e.onClick,i=e.enabled,s=Cn((0,t.useState)(!1),2),a=s[0],l=s[1],u=function(){var e=Fu(qu().mark((function e(){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!a){e.next=2;break}return e.abrupt("return");case 2:return l(!0),e.prev=3,e.next=6,o();case 6:return e.prev=6,l(!1),e.finish(6);case 9:case"end":return e.stop()}}),e,null,[[3,,6,9]])})));return function(){return e.apply(this,arguments)}}();return t.createElement(Ru,{onClick:u,disabled:!i,style:{pointerEvents:"auto",marginLeft:".5rem"},title:r},a&&t.createElement(GO,{as:"span",animation:"border",size:"sm",role:"status","aria-hidden":"true"}),n)}const YO=function(){var e=Cn((0,t.useState)([]),2),n=e[0],r=e[1],o=(0,t.useRef)(!1);function i(e,t,n){return s.apply(this,arguments)}function s(){return(s=Fu(qu().mark((function e(t,n,o){var i,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch(t,{method:"POST"});case 3:return i=e.sent,e.next=6,i.json();case 6:s=e.sent,i.ok?(FO(o),zO().then((function(e){r(e)}))):FO(n+s.message),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),FO(n+e.t0.message);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function a(){return(a=Fu(qu().mark((function e(){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,i("/api/survey/new","Failed creating new survey: ","Created new survey");case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function l(e,t){return u.apply(this,arguments)}function u(){return(u=Fu(qu().mark((function e(t,n){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!o.current){e.next=3;break}return FO("Wait for status update to be finished..."),e.abrupt("return");case 3:return o.current=!0,e.next=6,i("/api/survey/"+n+"/"+t,"Error while updating "+t+" survey status to "+n+": ",t+" survey status updated to "+n);case 6:o.current=!1;case 7:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function c(){return(c=Fu(qu().mark((function e(t,n){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,i("/api/response/unlock/"+t+"/"+n,"Error while unlocking "+n+" "+t+" survey response: ",n+" "+t+" survey response unlocked");case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}(0,t.useEffect)((function(){zO().then((function(e){r(e)}))}),[]);var p=n.length>0&&n.every((function(e){return e.status==HO.published})),d=Ge(),h=window.location.origin+"/data?preview";return t.createElement("div",null,t.createElement(jO,null),t.createElement(Ru,{onClick:function(){return a.apply(this,arguments)},disabled:!p,style:{pointerEvents:"auto"},title:"Create a new survey for the next year. Only possible if all current surveys are published."},"start new survey"),t.createElement(BS,null,n.map((function(e){return t.createElement(BS.Item,{eventKey:e.year.toString(),key:e.year},t.createElement(BS.Header,null,e.year," - ",e.status),t.createElement(BS.Body,null,t.createElement("div",{style:{marginLeft:".5rem"}},t.createElement(Ru,{style:{marginLeft:".5rem"},onClick:function(){return d("/survey/admin/inspect/".concat(e.year))},title:"Open the survey for inspection with all questions visible and any visibleIf logic added to the title."},"Inspect Survey"),t.createElement(Ru,{style:{marginLeft:".5rem"},onClick:function(){return d("/survey/admin/try/".concat(e.year))},title:"Open the survey exactly as the nrens will see it, but without any nren data."},"Try Survey"),t.createElement(JO,{text:"Mark as open",helpText:"Allow the NRENs to respond to this survey. Only 1 survey may be open at a time, and (pre)-published surveys cannot be opened anymore.",enabled:e.status==HO.closed,onClick:function(){return l(e.year,"open")}}),t.createElement(JO,{text:"Mark as closed",helpText:"Do not allow the NRENs to respond to this survey anymore. Only surveys with status open can be closed.",enabled:e.status==HO.open,onClick:function(){return l(e.year,"close")}}),t.createElement(JO,{text:"Preview results",helpText:"Publish all completed survey responses to the compendium website for preview by admins. This is only possible if the survey is closed or previewed already.",enabled:e.status==HO.closed||e.status==HO.preview,onClick:function(){return l(e.year,"preview")}}),t.createElement(JO,{text:"Publish results",helpText:"Publish or re-publish all completed survey responses to the compendium website. This is only possible if the survey is in preview or published already.",enabled:e.status==HO.preview||e.status==HO.published,onClick:function(){return l(e.year,"publish")}}),e.status==HO.preview&&t.createElement("span",null," Preview link: ",t.createElement("a",{href:h},h))),t.createElement(Wx,null,t.createElement("tbody",null,e.responses.map((function(n){return t.createElement("tr",{key:n.nren},t.createElement("td",null,n.nren),t.createElement("td",null,n.status),t.createElement("td",null,n.lock_description),t.createElement("td",null,t.createElement(Ru,{onClick:function(){return d("/survey/response/".concat(e.year,"/").concat(n.nren))},style:{pointerEvents:"auto"},title:"Open the responses of the NREN."},"open"),t.createElement(Ru,{onClick:function(){return function(e,t){return c.apply(this,arguments)}(e.year,n.nren)},disabled:""==n.lock_description,style:{pointerEvents:"auto"},title:"Remove the lock from the survey so that another person can open the survey for editing. WARNING: The person that currently has the lock will not be abe to save their changes anymore once someone else starts editing!"},"remove lock")))}))))))}))))};function KO(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function XO(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?KO(Object(n),!0).forEach((function(t){Pn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):KO(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ZO(){return(ZO=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/user/list");case 3:return t=e.sent,e.next=6,t.json();case 6:return n=e.sent,e.abrupt("return",n);case 10:return e.prev=10,e.t0=e.catch(0),e.abrupt("return",[]);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function eT(){return(eT=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/nren/list");case 3:return t=e.sent,e.next=6,t.json();case 6:return n=e.sent,e.abrupt("return",n);case 10:return e.prev=10,e.t0=e.catch(0),e.abrupt("return",[]);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}var tT=function(){var e=Fu(qu().mark((function e(t,n){var r,o,i,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=XO({id:t},n),o={method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)},e.next=4,fetch("/api/user/".concat(t),o);case 4:return i=e.sent,e.next=7,i.json();case 7:if(s=e.sent,i.ok){e.next=10;break}throw new Error(s.message);case 10:return e.abrupt("return",s.user);case 11:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),nT=function(e,t){return e.permissions.active&&!t.permissions.active?-1:!e.permissions.active&&t.permissions.active?1:e.permissions.active&&t.permissions.active?"admin"===e.role&&"admin"!==t.role?1:"admin"!==e.role&&"admin"===t.role?-1:e.name.localeCompare(t.name):e.name.localeCompare(t.name)};const rT=function(){var e=Cn((0,t.useState)([]),2),n=e[0],r=e[1],o=Cn((0,t.useState)([]),2),i=o[0],s=o[1],a=(0,t.useContext)(Qu).user,l=Cn((0,t.useState)({idx:-1,asc:!0}),2),u=l[0],c=l[1],p=Cn((0,t.useState)([]),2),d=p[0],h=p[1];(0,t.useEffect)((function(){(function(){return ZO.apply(this,arguments)})().then((function(e){r(e),h(e.sort(nT))})),function(){return eT.apply(this,arguments)}().then((function(e){s(e.sort((function(e,t){return e.name.localeCompare(t.name)})))}))}),[]),(0,t.useEffect)((function(){h(bn(n.sort(nT)))}),[n]);for(var f=function(e,t){var o=n.findIndex((function(e){return e.id===t.id})),i=bn(n),s=e.target.name,a={};a[s]="active"===s?e.target.checked:e.target.value,tT(t.id,a).then((function(e){i[o]=e,r(i)})).catch((function(e){alert(e.message)}))},m=function(e){var t;if(e===u.idx||(5===e||0===e)&&-1===u.idx)return 5!==e&&0!==e||(e=-1),c({idx:e,asc:!u.asc}),void h(bn(d.reverse()));0===e?(t=nT,c({idx:-1,asc:!0})):1===e?(t=function(e,t){return e.permissions.active&&!t.permissions.active?-1:!e.permissions.active&&t.permissions.active?1:0},c({idx:e,asc:!0})):2===e?(t=function(e,t){return e.role.localeCompare(t.role)},c({idx:e,asc:!0})):3===e?(t=function(e,t){return e.email.localeCompare(t.email)},c({idx:e,asc:!0})):4===e?(t=function(e,t){return e.name.localeCompare(t.name)},c({idx:e,asc:!0})):5===e?(t=nT,c({idx:-1,asc:!0})):6===e?(t=function(e,t){return 0===e.nrens.length&&0===t.nrens.length?0:0===e.nrens.length?-1:0===t.nrens.length?1:e.nrens[0].localeCompare(t.nrens[0])},c({idx:e,asc:!0})):(t=nT,c({idx:e,asc:!0})),h(n.sort(t))},g={},y=0;y<=6;y++)g[y]=u.idx===y?{"aria-sort":u.asc?"ascending":"descending"}:null;return t.createElement(Lt,{style:{maxWidth:"90vw"}},t.createElement(Ft,null,t.createElement("h1",null," User Management Page"),t.createElement(Wx,null,t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",jC({},g[0],{onClick:function(){return m(0)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Id"),t.createElement("th",jC({},g[1],{onClick:function(){return m(1)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Active"),t.createElement("th",jC({},g[2],{onClick:function(){return m(2)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Role"),t.createElement("th",jC({},g[3],{onClick:function(){return m(3)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Email"),t.createElement("th",jC({},g[4],{onClick:function(){return m(4)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Full Name"),t.createElement("th",jC({},g[5],{onClick:function(){return m(5)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"OIDC Sub"),t.createElement("th",jC({},g[6],{onClick:function(){return m(6)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"NREN"))),t.createElement("tbody",null,d.map((function(e){return t.createElement("tr",{key:e.id},t.createElement("td",{style:{border:"1px dotted #ddd"}},e.id),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.id==a.id?"Active":t.createElement("input",{type:"checkbox",name:"active",checked:e.permissions.active,onChange:function(t){return f(t,e)}})),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.id==a.id?e.role.charAt(0).toUpperCase()+e.role.slice(1):t.createElement("select",{name:"role",defaultValue:e.role,onChange:function(t){return f(t,e)}},t.createElement("option",{value:"admin"},"Admin"),t.createElement("option",{value:"user"},"User"),t.createElement("option",{value:"observer"},"Observer"))),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.email),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.name),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.oidc_sub),t.createElement("td",{style:{border:"1px dotted #ddd"}},t.createElement("select",{name:"nren",multiple:!1,value:e.nrens.length>0?(n=e.nrens[0],null===(r=i.find((function(e){return e.id==n||e.name==n})))||void 0===r?void 0:r.id):"",onChange:function(t){return f(t,e)}},t.createElement("option",{value:""},"Select NREN"),i.map((function(e){return t.createElement("option",{key:"nren_"+e.id,value:e.id},e.name)})))));var n,r}))))))};var oT=o(522),iT=o(755);function sT(e,t){if(0==t.column.indexValue&&"item"in t.row){var n,r,o=t.row.item;void 0!==o.customDescription&&(null===(n=t.htmlElement.parentElement)||void 0===n||n.children[0].children[0].setAttribute("description",o.customDescription),null===(r=t.htmlElement.parentElement)||void 0===r||r.children[0].children[0].classList.add("survey-tooltip"))}}function aT(e){var t=e[0];if(void 0===t||null==t||""==t)return!0;try{return!!new URL(t)}catch(e){return!1}}function lT(e,t){t.question.hideCheckboxLabels&&(t.cssClasses.root+=" hidden-checkbox-labels")}function uT(e,t){var n,r='[data-name="'+t.question.name+'"]',o=null===(n=document.querySelector(r))||void 0===n?void 0:n.querySelector("h5");o&&!o.classList.contains("sv-header-flex")&&t.question.updateElementCss()}function cT(e,t,n){var r;n.verificationStatus.set(e.name,t);var o=document.createElement("button");o.type="button",o.className="sv-action-bar-item verification",o.innerHTML=t,t==BO.Unverified?(o.innerHTML="No change from previous year",o.className+=" verification-required",o.onclick=function(){"display"!=n.mode&&(e.validate(),cT(e,BO.Verified,n))}):(o.innerHTML="Answer updated",o.className+=" verification-ok");var i='[data-name="'+e.name+'"]',s=null===(r=document.querySelector(i))||void 0===r?void 0:r.querySelector("h5"),a=null==s?void 0:s.querySelector(".verification");a?a.replaceWith(o):null==s||s.appendChild(o)}const pT=function(e){var n=e.surveyModel,r=(0,t.useCallback)((function(e,t){var r=n.verificationStatus.get(t.question.name);r&&cT(t.question,r,n)}),[n]),o=(0,t.useCallback)((function(e,t){n.verificationStatus.get(t.question.name)==BO.Unverified&&cT(t.question,BO.Edited,n)}),[n]);return oT.FunctionFactory.Instance.hasFunction("validateWebsiteUrl")||oT.FunctionFactory.Instance.register("validateWebsiteUrl",aT),n.css.question.title.includes("sv-header-flex")||(n.css.question.title="sv-title sv-question__title sv-header-flex",n.css.question.titleOnError="sv-question__title--error sv-error-color-fix"),n.onAfterRenderQuestion.hasFunc(r)||(n.onAfterRenderQuestion.add(r),n.onAfterRenderQuestion.add(uT)),n.onValueChanged.hasFunc(o)||n.onValueChanged.add(o),n.onUpdateQuestionCssClasses.hasFunc(lT)||n.onUpdateQuestionCssClasses.add(lT),n.onMatrixAfterCellRender.hasFunc(sT)||n.onMatrixAfterCellRender.add(sT),t.createElement(iT.Survey,{model:n})};function dT(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function hT(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?dT(Object(n),!0).forEach((function(t){Pn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):dT(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const fT=function(e){var n=e.surveyModel,r=e.pageNoSetter,o=Cn((0,t.useState)([]),2),i=o[0],s=o[1],a=function(e){return!(null===e.value||void 0===e.value||""===e.value||"checkbox"===e.getType()&&0==e.value.length||"multipletext"===e.getType()&&(1===Object.keys(e.value).length&&void 0===Object.values(e.value)[0]||0===Object.keys(e.value).length))};(0,t.useEffect)((function(){var e=function(e){if(e&&e.pages){var t=[];e.pages.forEach((function(n){var r=n.questions.filter((function(e){return e.startWithNewLine})),o=r.length,i=r.filter(a).length,s=o-i,l=i/o;t.push({completionPercentage:100*l,unansweredPercentage:s/o*100,totalPages:e.pages.length,pageTitle:n.title})})),s(t)}};n.onValueChanged.add((function(t){e(t)})),e(n)}),[n]);var l={height:"0.5rem",transition:"width 0.3s ease"};return t.createElement(Lt,{className:"survey-progress"},t.createElement(Ft,null,i.map((function(e,o){return t.createElement(qt,{xs:12,md:!0,key:o,onClick:function(){return r(o)},style:{cursor:"pointer",margin:"0.5rem"}},t.createElement("div",null,t.createElement("span",{style:{whiteSpace:"nowrap",fontSize:"1.5rem",marginRight:"0.25rem",fontWeight:"bold",color:"#2db394"}},o+1),t.createElement("span",{style:hT({whiteSpace:"nowrap"},n.currentPageNo==o&&{fontWeight:"bold"})},e.pageTitle),t.createElement("div",{style:{display:"flex",flexWrap:"wrap"}},t.createElement("div",{style:hT(hT({},l),{},{width:"".concat(e.completionPercentage,"%"),backgroundColor:"#262261"})}),t.createElement("div",{style:hT(hT({},l),{},{width:"".concat(e.unansweredPercentage,"%"),backgroundColor:"#cdcdcd"})}))))}))))},mT=function(e){var n=e.surveyModel,r=e.surveyActions,o=e.year,i=e.nren,s=e.children,a=Cn((0,t.useState)(0),2),l=a[0],u=a[1],c=Cn((0,t.useState)(!1),2),p=c[0],d=c[1],h=Cn((0,t.useState)(""),2),f=h[0],m=h[1],g=Cn((0,t.useState)(""),2),y=g[0],v=g[1],b=(0,t.useContext)(Qu).user,C=(0,t.useCallback)((function(){d("edit"==n.mode),m(n.lockedBy),u(n.currentPageNo),v(n.status)}),[n]);(0,t.useEffect)((function(){C()}),[C]);var w=function(e){u(e),n.currentPageNo=e},x=function(){w(n.currentPageNo+1)},E=function(){var e=Fu(qu().mark((function e(t){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,r[t]();case 2:C();case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),P=function(e,t){return S(e,(function(){return E(t)}))},S=function(e,n){return t.createElement("button",{className:"sv-btn sv-btn--navigation",onClick:n},e)},O="Save and stop editing",T="Save progress",_="Start editing",V="Complete Survey",R=function(){return t.createElement("div",{className:"survey-edit-buttons-block"},!p&&!f&&n.editAllowed&&P(_,"startEdit"),!p&&f&&f==b.name&&P("Discard any unsaved changes and release your lock","releaseLock"),p&&y==qO.started&&P(T,"save"),p&&y==qO.started&&P(O,"saveAndStopEdit"),p&&l===n.visiblePages.length-1&&P(V,"complete"),l!==n.visiblePages.length-1&&S("Next Section",x))};return parseInt(o),t.createElement(Lt,null,t.createElement(Ft,{className:"survey-content"},t.createElement("h2",null,t.createElement("span",{className:"survey-title"},o," Compendium Survey "),t.createElement("span",{className:"survey-title-nren"}," ",i," "),t.createElement("span",null," - ",y)),t.createElement("p",{style:{marginTop:"1rem",textAlign:"justify"}},t.createElement("p",null,"To get started, click “",_,"” to end read-only mode. Different people from your NREN (Compendium administrators) can contribute to the survey if needed, but agreement should be reached internally before completing the survey as the administration team will treat responses as a single source of truth from the NREN. You can start editing only when nobody else from your NREN is currently working on the survey."),t.createElement("p",null,t.createElement("b",null,"In a small change, the survey now asks about this calendar year, i.e. ",o)," (or the current financial year if your budget or staffing data does not match the calendar year). For network questions, please provide data from the 12 months preceding you answering the question. Where available, the survey questions are pre-filled with answers from the previous survey. You can edit the pre-filled answer to provide new information, or press the “no change from previous year” button."),t.createElement("p",null,"Press the “",T,"“ or “",O,"“ button to save all answers in the survey. When you reach the last section of the survey (Services), you will find a “",V,"“ button which saves all answers in the survey and lets the Compendium team know that your answers are ready to be published. As long as the survey remains open, any Compendium administrator from your NREN can add answers or amend existing ones, even after using the “",V,"“ button."),t.createElement("p",null,"Some fields require specific data, such as numerical data, valid http-addresses, and in some questions, the answer has to add up to 100%. If an answer does not fulfil the set criteria, the question will turn pink and an error message will appear. Fields can be left blank if you prefer not to answer a question. If you notice any errors after the survey was closed, please contact us for correcting those.")),t.createElement("p",null,"Thank you for taking the time to fill in the ",o," Compendium Survey. Any questions or requests can be sent to ",t.createElement("a",{href:"mailto:Partner-Relations@geant.org"},t.createElement("span",null,"Partner-Relations@geant.org"))),p&&t.createElement(t.Fragment,null,t.createElement("br",null),t.createElement("b",null,"Remember to click “",O,"” before leaving the page."))),t.createElement(Ft,null,R()),t.createElement(Ft,{className:"survey-content"},!p&&t.createElement("div",{className:"survey-edit-explainer"},!f&&n.editAllowed&&"The survey is in read-only mode; click the “Start editing“ button to begin editing the answers.",!f&&!n.editAllowed&&"The survey is in read-only mode and can not be edited by you.",f&&f!=b.name&&"The survey is in read-only mode and currently being edited by: "+f+". To start editing the survey, ask them to complete their edits.",f&&f==b.name&&'The survey is in read-only mode because you started editing in another tab, browser or device. To start editing the survey, either complete those edits or click the "Discard any unsaved changes" button.')),t.createElement(Ft,null,t.createElement(fT,{surveyModel:n,pageNoSetter:w}),s),t.createElement(Ft,null,R()))},gT=function(e){var n=e.when,r=e.onPageExit;return function(e){let{router:n,basename:r}=rt(tt.UseBlocker),o=ot(nt.UseBlocker),[i,s]=t.useState(""),a=t.useCallback((t=>{if("/"===r)return e();let{currentLocation:n,nextLocation:o,historyAction:i}=t;return e((je({},n,{pathname:A(n.pathname,r)||n.pathname}),je({},o,{pathname:A(o.pathname,r)||o.pathname})))}),[r,e]);t.useEffect((()=>{let e=String(++st);return s(e),()=>n.deleteBlocker(e)}),[n]),t.useEffect((()=>{""!==i&&n.getBlocker(i,a)}),[n,i,a]),i&&o.blockers.has(i)&&o.blockers.get(i)}((function(){if(n()){var t=window.confirm(e.message);return t&&r(),!t}return!1})),t.createElement("div",null)};oT.Serializer.addProperty("itemvalue","customDescription:text"),oT.Serializer.addProperty("question","hideCheckboxLabels:boolean");const yT=function(e){var n=e.loadFrom,r=Cn((0,t.useState)(),2),o=r[0],i=r[1],s=function(){let{matches:e}=t.useContext(ze),n=e[e.length-1];return n?n.params:{}}(),a=s.year,l=s.nren,u=Cn((0,t.useState)("loading survey..."),2),c=u[0],p=u[1],d=An().trackPageView,h=(0,t.useCallback)((function(e){return e.preventDefault(),e.returnValue=""}),[]),f=(0,t.useCallback)((function(){window.navigator.sendBeacon("/api/response/unlock/"+a+"/"+l)}),[]),m=(0,t.useCallback)((function(){window.navigator.sendBeacon("/api/response/unlock/"+a+"/"+l),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f)}),[]);if((0,t.useEffect)((function(){function e(){return(e=Fu(qu().mark((function e(){var t,r,o,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(n+a+(l?"/"+l:""));case 2:return t=e.sent,e.next=5,t.json();case 5:if(r=e.sent,t.ok){e.next=12;break}if(!("message"in r)){e.next=11;break}throw new Error(r.message);case 11:throw new Error("Request failed with status ".concat(t.status));case 12:for(s in(o=new oT.Model(r.model)).setVariable("surveyyear",a),o.setVariable("previousyear",parseInt(a)-1),o.showNavigationButtons=!1,o.requiredText="",o.verificationStatus=new Map,r.verification_status)o.verificationStatus.set(s,r.verification_status[s]);o.data=r.data,o.clearIncorrectValues(!0),o.currentPageNo=r.page,o.mode=r.mode,o.lockedBy=r.locked_by,o.status=r.status,o.editAllowed=r.edit_allowed,i(o);case 27:case"end":return e.stop()}}),e)})))).apply(this,arguments)}(function(){return e.apply(this,arguments)})().catch((function(e){return p("Error when loading survey: "+e.message)})).then((function(){d({documentTitle:"Survey for ".concat(l," (").concat(a,")")})}))}),[]),!o)return t.createElement(t.Fragment,null,c);var g,y,v,b,C,w=function(){var e=Fu(qu().mark((function e(t,n){var r,i,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(l){e.next=2;break}return e.abrupt("return","Saving not available in inpect/try mode");case 2:return r={lock_uuid:t.lockUUID,new_state:n,data:t.data,page:t.currentPageNo,verification_status:Object.fromEntries(t.verificationStatus)},e.prev=3,e.next=6,fetch("/api/response/save/"+a+"/"+l,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(r)});case 6:return i=e.sent,e.next=9,i.json();case 9:if(s=e.sent,i.ok){e.next=12;break}return e.abrupt("return",s.message);case 12:o.mode=s.mode,o.lockedBy=s.locked_by,o.status=s.status,e.next=20;break;case 17:return e.prev=17,e.t0=e.catch(3),e.abrupt("return","Unknown Error: "+e.t0.message);case 20:case"end":return e.stop()}}),e,null,[[3,17]])})));return function(t,n){return e.apply(this,arguments)}}(),x=function(e){var t="",n=function(e,n){e.verificationStatus.get(n.name)==BO.Unverified&&(""==t&&(t=n.name),n.error='Please verify that last years data is correct by editing the answer or pressing the "No change from previous year" button!')};o.onValidateQuestion.add(n);var r=e();return o.onValidateQuestion.remove(n),r||FO("Validation failed!"),r},E={save:(C=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w(o,"editing");case 2:t=e.sent,FO(t?"Failed saving survey: "+t:"Survey saved!");case 4:case"end":return e.stop()}}),e)}))),function(){return C.apply(this,arguments)}),complete:(b=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!x(o.validate.bind(o,!0,!0))){e.next=6;break}return e.next=4,w(o,"completed");case 4:(t=e.sent)?FO("Failed completing survey: "+t):(FO("Survey completed!"),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f));case 6:case"end":return e.stop()}}),e)}))),function(){return b.apply(this,arguments)}),saveAndStopEdit:(v=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w(o,"readonly");case 2:(t=e.sent)?FO("Failed saving survey: "+t):(FO("Survey saved!"),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f));case 4:case"end":return e.stop()}}),e)}))),function(){return v.apply(this,arguments)}),startEdit:(y=Fu(qu().mark((function e(){var t,n,r;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("/api/response/lock/"+a+"/"+l,{method:"POST"});case 2:return t=e.sent,e.next=5,t.json();case 5:if(n=e.sent,t.ok){e.next=9;break}return FO("Failed starting edit: "+n.message),e.abrupt("return");case 9:for(r in addEventListener("pagehide",f),addEventListener("beforeunload",h,{capture:!0}),n.verification_status)o.verificationStatus.set(r,n.verification_status[r]);o.data=n.data,o.clearIncorrectValues(!0),o.mode=n.mode,o.lockedBy=n.locked_by,o.lockUUID=n.lock_uuid,o.status=n.status;case 18:case"end":return e.stop()}}),e)}))),function(){return y.apply(this,arguments)}),releaseLock:(g=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("/api/response/unlock/"+a+"/"+l,{method:"POST"});case 2:return t=e.sent,e.next=5,t.json();case 5:if(n=e.sent,t.ok){e.next=9;break}return FO("Failed releasing lock: "+n.message),e.abrupt("return");case 9:o.mode=n.mode,o.lockedBy=n.locked_by,o.status=n.status;case 12:case"end":return e.stop()}}),e)}))),function(){return g.apply(this,arguments)}),validatePage:function(){x(o.validatePage.bind(o))&&FO("Page validation successful!")}};return t.createElement(Lt,{className:"survey-container"},t.createElement(jO,null),t.createElement(gT,{message:"Are you sure you want to leave this page? Information you've entered may not be saved.",when:function(){return"edit"==o.mode&&!!l},onPageExit:m}),t.createElement(mT,{surveyModel:o,surveyActions:E,year:a,nren:l},t.createElement(pT,{surveyModel:o})))},vT=function(){var e=An().trackPageView,n=(0,t.useContext)(Qu).user,r=Ge(),o=!!n.id,i=!!o&&!!n.nrens.length,s=i?n.nrens[0]:"",a=!!o&&n.permissions.admin,l=!!o&&"observer"===n.role,u=Cn((0,t.useState)(null),2),c=u[0],p=u[1];(0,t.useEffect)((function(){var t=function(){var e=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,UO();case 2:t=e.sent,p(t);case 4:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();t(),e({documentTitle:"GEANT Survey Landing Page"})}),[e]);var d=function(){var e=Cn((0,t.useState)(),2),n=e[0],r=e[1];return(0,t.useEffect)((function(){zO().then((function(e){r(e[0])}))}),[]),t.createElement(Wx,{striped:!0,bordered:!0,responsive:!0},t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",null,"(N)REN"),t.createElement("th",null,"Link"),t.createElement("th",null,"Survey Status"))),t.createElement("tbody",null,n&&n.responses.map((function(e){return t.createElement("tr",{key:e.nren},t.createElement("td",null,e.nren),t.createElement("td",null,t.createElement(Et,{to:"/survey/response/".concat(n.year,"/").concat(e.nren)},t.createElement("span",null,"Navigate to survey"))),t.createElement("td",null,e.status))}))))};return t.createElement(Lt,{className:"py-5 grey-container"},t.createElement(Ft,null,t.createElement("div",{className:"center-text"},t.createElement("h1",{className:"geant-header"},"THE GÉANT COMPENDIUM OF NRENS SURVEY"),t.createElement("div",{className:"wordwrap pt-4",style:{maxWidth:"75rem"}},t.createElement("p",{style:{textAlign:"left"}},"Hello,",t.createElement("br",null),"Welcome to the GÉANT Compendium Survey. (N)REN Compendium administrators can login via Single Sign On (SSO) ",t.createElement("a",{href:"/login"},"here"),", which will complete their registration to fill in the 2023 Compendium survey. This will send a notification to the Compendium administration team and they will assign you to your (N)REN.",t.createElement("br",null),"Once this step has been completed, you will receive an email from the administration team. We aim to get back to you the same working day, but sometimes may take a little longer.",t.createElement("br",null),"If you are not sure whether you are a Compendium Administrator for your (N)REN, please contact your GÉANT Partner Relations relationship manager.",t.createElement("br",null),"Thank you."),t.createElement("span",null,"Current registration status:"),t.createElement("br",null),t.createElement("br",null),a?t.createElement("ul",null,t.createElement("li",null,t.createElement("span",null,"You are logged in as a Compendium Administrator")),t.createElement("li",null,t.createElement("span",null,"Click ",t.createElement(Et,{to:"/survey/admin/surveys"},"here")," to access the survey management page.")),t.createElement("li",null,t.createElement("span",null,"Click ",t.createElement(Et,{to:"/survey/admin/users"},"here")," to access the user management page.")),t.createElement("li",null,t.createElement("span",null,"Click ",t.createElement("a",{href:"#",onClick:function(){fetch("/api/data-download").then((function(e){if(!e.ok)throw new Error("Network response was not ok");return e.json()})).then((function(e){var t=function(e){var t=Py.book_new();e.forEach((function(e){var n=Py.json_to_sheet(e.data);e.meta&&function(e,t,n){for(var r,o=Py.decode_range(null!==(r=e["!ref"])&&void 0!==r?r:""),i=-1,s=o.s.c;s<=o.e.c;s++){var a=e[Py.encode_cell({r:o.s.r,c:s})];if(a&&"string"==typeof a.v&&a.v===t){i=s;break}}if(-1!==i)for(var l=o.s.r+1;l<=o.e.r;++l){var u=Py.encode_cell({r:l,c:i});e[u]&&"n"===e[u].t&&(e[u].z=n)}else console.error("Column '".concat(t,"' not found."))}(n,e.meta.columnName,e.meta.format),Py.book_append_sheet(t,n,e.name)}));for(var n=fy(t,{bookType:"xlsx",type:"binary"}),r=new ArrayBuffer(n.length),o=new Uint8Array(r),i=0;i<n.length;i++)o[i]=255&n.charCodeAt(i);return new Blob([r],{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8"})}(e),n=document.createElement("a");n.href=URL.createObjectURL(t),n.download="data.xlsx",document.body.appendChild(n),n.click(),document.body.removeChild(n)})).catch((function(e){console.error("Error fetching data:",e)}))}},"here")," to do the full data download."))):t.createElement("ul",null,c&&!a&&!l&&i&&function(){try{return r("/survey/response/".concat(c,"/").concat(s)),t.createElement("li",null,"Redirecting to survey...")}catch(e){return console.error("Error navigating:",e),null}}(),o?t.createElement("li",null,t.createElement("span",null,"You are logged in")):t.createElement("li",null,t.createElement("span",null,"You are not logged in")),o&&!l&&!i&&t.createElement("li",null,t.createElement("span",null,"Your access to the survey has not yet been approved")),o&&!l&&!i&&t.createElement("li",null,t.createElement("span",null,"Once you have been approved, you will immediately be directed to the relevant survey upon visiting this page")),o&&l&&t.createElement("li",null,t.createElement("span",null,"You have read-only access to the following surveys:"))),o&&l&&t.createElement(d,null)))))};var bT,CT=(bT=[{path:"/budget",element:t.createElement(sx,null)},{path:"/funding",element:t.createElement(Qx,null)},{path:"/data/employment",element:t.createElement(eE,null)},{path:"/data/roles",element:t.createElement(eE,{roles:!0})},{path:"/employee-count",element:t.createElement(nE,null)},{path:"/charging",element:t.createElement(Gx,null)},{path:"/suborganisations",element:t.createElement(rE,null)},{path:"/parentorganisation",element:t.createElement(oE,null)},{path:"/ec-projects",element:t.createElement(iE,null)},{path:"/policy",element:t.createElement(uE,null)},{path:"/traffic-volume",element:t.createElement(nP,null)},{path:"/data",element:t.createElement(ux,null)},{path:"/institutions-urls",element:t.createElement(dE,null)},{path:"/connected-proportion",element:t.createElement(TE,{connectivity_category:fE.ConnectedProportion.toString()})},{path:"/connectivity-level",element:t.createElement(TE,{connectivity_category:fE.ConnectivityLevel.toString()})},{path:"/connectivity-growth",element:t.createElement(TE,{connectivity_category:fE.ConnectivityGrowth.toString()})},{path:"/connection-carrier",element:t.createElement(TE,{connectivity_category:fE.ConnectionCarrier.toString()})},{path:"/connectivity-load",element:t.createElement(TE,{connectivity_category:fE.ConnectivityLoad.toString()})},{path:"/commercial-charging-level",element:t.createElement(TE,{connectivity_category:fE.CommercialChargingLevel.toString()})},{path:"/commercial-connectivity",element:t.createElement(TE,{connectivity_category:fE.CommercialConnectivity.toString()})},{path:"/network-services",element:t.createElement(vE,{category:hE.network_services})},{path:"/isp-support-services",element:t.createElement(vE,{category:hE.isp_support})},{path:"/security-services",element:t.createElement(vE,{category:hE.security})},{path:"/identity-services",element:t.createElement(vE,{category:hE.identity})},{path:"/collaboration-services",element:t.createElement(vE,{category:hE.collaboration})},{path:"/multimedia-services",element:t.createElement(vE,{category:hE.multimedia})},{path:"/storage-and-hosting-services",element:t.createElement(vE,{category:hE.storage_and_hosting})},{path:"/professional-services",element:t.createElement(vE,{category:hE.professional_services})},{path:"/fibre-light",element:t.createElement(_E,null)},{path:"/monitoring-tools",element:t.createElement(VE,null)},{path:"/pert-team",element:t.createElement(RE,null)},{path:"/passive-monitoring",element:t.createElement(IE,null)},{path:"/alien-wave",element:t.createElement(kE,null)},{path:"/alien-wave-internal",element:t.createElement(AE,null)},{path:"/ops-automation",element:t.createElement(DE,null)},{path:"/network-automation",element:t.createElement(NE,null)},{path:"/traffic-stats",element:t.createElement(ME,null)},{path:"/weather-map",element:t.createElement(LE,null)},{path:"/network-map",element:t.createElement(jE,null)},{path:"/nfv",element:t.createElement(FE,null)},{path:"/certificate-provider",element:t.createElement(BE,null)},{path:"/siem-vendors",element:t.createElement(qE,null)},{path:"/capacity-largest-link",element:t.createElement(zE,null)},{path:"/capacity-core-ip",element:t.createElement(UE,null)},{path:"/non-rne-peers",element:t.createElement($E,null)},{path:"/iru-duration",element:t.createElement(JE,null)},{path:"/iru-duration",element:t.createElement(JE,null)},{path:"/audits",element:t.createElement(YE,null)},{path:"/business-continuity",element:t.createElement(KE,null)},{path:"/crisis-management",element:t.createElement(ZE,null)},{path:"/crisis-exercise",element:t.createElement(XE,null)},{path:"/security-control",element:t.createElement(eP,null)},{path:"survey/admin/surveys",element:t.createElement(YO,null)},{path:"survey/admin/users",element:t.createElement(rT,null)},{path:"survey/admin/inspect/:year",element:t.createElement(yT,{loadFrom:"/api/response/inspect/"})},{path:"survey/admin/try/:year",element:t.createElement(yT,{loadFrom:"/api/response/try/"})},{path:"survey/response/:year/:nren",element:t.createElement(yT,{loadFrom:"/api/response/load/"})},{path:"survey/*",element:t.createElement(vT,null)},{path:"*",element:t.createElement(Dn,null)}],function(t){const n=t.window?t.window:"undefined"!=typeof window?window:void 0,r=void 0!==n&&void 0!==n.document&&void 0!==n.document.createElement,o=!r;let i;if(u(t.routes.length>0,"You must provide a non-empty routes array to createRouter"),t.mapRouteProperties)i=t.mapRouteProperties;else if(t.detectErrorBoundary){let e=t.detectErrorBoundary;i=t=>({hasErrorBoundary:e(t)})}else i=te;let s,l,p,h={},f=y(t.routes,i,void 0,h),g=t.basename||"/",C=t.unstable_dataStrategy||pe,w=t.unstable_patchRoutesOnMiss,x=a({v7_fetcherPersist:!1,v7_normalizeFormMethod:!1,v7_partialHydration:!1,v7_prependBasename:!1,v7_relativeSplatPath:!1,unstable_skipActionErrorRevalidation:!1},t.future),E=null,P=new Set,S=null,O=null,T=null,_=null!=t.hydrationData,V=v(f,t.history.location,g),R=null;if(null==V&&!w){let e=xe(404,{pathname:t.history.location.pathname}),{matches:n,route:r}=we(f);V=n,R={[r.id]:e}}if(V&&w&&ct(V,f,t.history.location.pathname).active&&(V=null),V)if(V.some((e=>e.route.lazy)))l=!1;else if(V.some((e=>e.route.loader)))if(x.v7_partialHydration){let e=t.hydrationData?t.hydrationData.loaderData:null,n=t.hydrationData?t.hydrationData.errors:null,r=t=>!t.route.loader||("function"!=typeof t.route.loader||!0!==t.route.loader.hydrate)&&(e&&void 0!==e[t.route.id]||n&&void 0!==n[t.route.id]);if(n){let e=V.findIndex((e=>void 0!==n[e.route.id]));l=V.slice(0,e+1).every(r)}else l=V.every(r)}else l=null!=t.hydrationData;else l=!0;else l=!1,V=[];let I,k={historyAction:t.history.action,location:t.history.location,matches:V,initialized:l,navigation:K,restoreScrollPosition:null==t.hydrationData&&null,preventScrollReset:!1,revalidation:"idle",loaderData:t.hydrationData&&t.hydrationData.loaderData||{},actionData:t.hydrationData&&t.hydrationData.actionData||null,errors:t.hydrationData&&t.hydrationData.errors||R,fetchers:new Map,blockers:new Map},D=e.Pop,N=!1,M=!1,L=new Map,j=null,F=!1,B=!1,q=[],Q=[],U=new Map,W=0,$=-1,G=new Map,se=new Set,ae=new Map,me=new Map,ge=new Set,Pe=new Map,ke=new Map,je=new Map,Fe=!1;function Be(e,t){void 0===t&&(t={}),k=a({},k,e);let n=[],r=[];x.v7_fetcherPersist&&k.fetchers.forEach(((e,t)=>{"idle"===e.state&&(ge.has(t)?r.push(t):n.push(t))})),[...P].forEach((e=>e(k,{deletedFetchers:r,unstable_viewTransitionOpts:t.viewTransitionOpts,unstable_flushSync:!0===t.flushSync}))),x.v7_fetcherPersist&&(n.forEach((e=>k.fetchers.delete(e))),r.forEach((e=>Ke(e))))}function qe(n,r,o){var i,l;let u,{flushSync:c}=void 0===o?{}:o,p=null!=k.actionData&&null!=k.navigation.formMethod&&Ve(k.navigation.formMethod)&&"loading"===k.navigation.state&&!0!==(null==(i=n.state)?void 0:i._isRedirect);u=r.actionData?Object.keys(r.actionData).length>0?r.actionData:null:p?k.actionData:null;let d=r.loaderData?ve(k.loaderData,r.loaderData,r.matches||[],r.errors):k.loaderData,h=k.blockers;h.size>0&&(h=new Map(h),h.forEach(((e,t)=>h.set(t,Z))));let m,g=!0===N||null!=k.navigation.formMethod&&Ve(k.navigation.formMethod)&&!0!==(null==(l=n.state)?void 0:l._isRedirect);if(s&&(f=s,s=void 0),F||D===e.Pop||(D===e.Push?t.history.push(n,n.state):D===e.Replace&&t.history.replace(n,n.state)),D===e.Pop){let e=L.get(k.location.pathname);e&&e.has(n.pathname)?m={currentLocation:k.location,nextLocation:n}:L.has(n.pathname)&&(m={currentLocation:n,nextLocation:k.location})}else if(M){let e=L.get(k.location.pathname);e?e.add(n.pathname):(e=new Set([n.pathname]),L.set(k.location.pathname,e)),m={currentLocation:k.location,nextLocation:n}}Be(a({},r,{actionData:u,loaderData:d,historyAction:D,location:n,initialized:!0,navigation:K,revalidation:"idle",restoreScrollPosition:ut(n,r.matches||k.matches),preventScrollReset:g,blockers:h}),{viewTransitionOpts:m,flushSync:!0===c}),D=e.Pop,N=!1,M=!1,F=!1,B=!1,q=[],Q=[]}async function He(n,r,o){I&&I.abort(),I=null,D=n,F=!0===(o&&o.startUninterruptedRevalidation),function(e,t){if(S&&T){let n=lt(e,t);S[n]=T()}}(k.location,k.matches),N=!0===(o&&o.preventScrollReset),M=!0===(o&&o.enableViewTransition);let i=s||f,l=o&&o.overrideNavigation,u=v(i,r,g),c=!0===(o&&o.flushSync),p=ct(u,i,r.pathname);if(p.active&&p.matches&&(u=p.matches),!u){let{error:e,notFoundMatches:t,route:n}=it(r.pathname);return void qe(r,{matches:t,loaderData:{},errors:{[n.id]:e}},{flushSync:c})}if(k.initialized&&!B&&function(e,t){return e.pathname===t.pathname&&e.search===t.search&&(""===e.hash?""!==t.hash:e.hash===t.hash||""!==t.hash)}(k.location,r)&&!(o&&o.submission&&Ve(o.submission.formMethod)))return void qe(r,{matches:u},{flushSync:c});I=new AbortController;let d,h=fe(t.history,r,I.signal,o&&o.submission);if(o&&o.pendingError)d=[Ce(u).route.id,{type:m.error,error:o.pendingError}];else if(o&&o.submission&&Ve(o.submission.formMethod)){let n=await async function(t,n,r,o,i,s){void 0===s&&(s={}),$e();let a,l=function(e,t){return{state:"submitting",location:e,formMethod:t.formMethod,formAction:t.formAction,formEncType:t.formEncType,formData:t.formData,json:t.json,text:t.text}}(n,r);if(Be({navigation:l},{flushSync:!0===s.flushSync}),i){let e=await pt(o,n.pathname,t.signal);if("aborted"===e.type)return{shortCircuited:!0};if("error"===e.type){let{error:t,notFoundMatches:r,route:o}=st(n.pathname,e);return{matches:r,pendingActionResult:[o.id,{type:m.error,error:t}]}}if(!e.matches){let{notFoundMatches:e,error:t,route:r}=it(n.pathname);return{matches:e,pendingActionResult:[r.id,{type:m.error,error:t}]}}o=e.matches}let u=Ae(o,n);if(u.route.action||u.route.lazy){if(a=(await Ue("action",t,[u],o))[0],t.signal.aborted)return{shortCircuited:!0}}else a={type:m.error,error:xe(405,{method:t.method,pathname:n.pathname,routeId:u.route.id})};if(Te(a)){let e;return e=s&&null!=s.replace?s.replace:he(a.response.headers.get("Location"),new URL(t.url),g)===k.location.pathname+k.location.search,await Qe(t,a,{submission:r,replace:e}),{shortCircuited:!0}}if(Se(a))throw xe(400,{type:"defer-action"});if(Oe(a)){let t=Ce(o,u.route.id);return!0!==(s&&s.replace)&&(D=e.Push),{matches:o,pendingActionResult:[t.route.id,a]}}return{matches:o,pendingActionResult:[u.route.id,a]}}(h,r,o.submission,u,p.active,{replace:o.replace,flushSync:c});if(n.shortCircuited)return;if(n.pendingActionResult){let[e,t]=n.pendingActionResult;if(Oe(t)&&z(t.error)&&404===t.error.status)return I=null,void qe(r,{matches:n.matches,loaderData:{},errors:{[e]:t.error}})}u=n.matches||u,d=n.pendingActionResult,l=Ne(r,o.submission),c=!1,p.active=!1,h=fe(t.history,h.url,h.signal)}let{shortCircuited:y,matches:b,loaderData:C,errors:w}=await async function(e,n,r,o,i,l,u,c,p,d,h){let m=i||Ne(n,l),y=l||u||De(m),v=!(F||x.v7_partialHydration&&p);if(o){if(v){let e=ze(h);Be(a({navigation:m},void 0!==e?{actionData:e}:{}),{flushSync:d})}let t=await pt(r,n.pathname,e.signal);if("aborted"===t.type)return{shortCircuited:!0};if("error"===t.type){let{error:e,notFoundMatches:r,route:o}=st(n.pathname,t);return{matches:r,loaderData:{},errors:{[o.id]:e}}}if(!t.matches){let{error:e,notFoundMatches:t,route:r}=it(n.pathname);return{matches:t,loaderData:{},errors:{[r.id]:e}}}r=t.matches}let b=s||f,[C,w]=ie(t.history,k,r,y,n,x.v7_partialHydration&&!0===p,x.unstable_skipActionErrorRevalidation,B,q,Q,ge,ae,se,b,g,h);if(at((e=>!(r&&r.some((t=>t.route.id===e)))||C&&C.some((t=>t.route.id===e)))),$=++W,0===C.length&&0===w.length){let e=et();return qe(n,a({matches:r,loaderData:{},errors:h&&Oe(h[1])?{[h[0]]:h[1].error}:null},be(h),e?{fetchers:new Map(k.fetchers)}:{}),{flushSync:d}),{shortCircuited:!0}}if(v){let e={};if(!o){e.navigation=m;let t=ze(h);void 0!==t&&(e.actionData=t)}w.length>0&&(e.fetchers=function(e){return e.forEach((e=>{let t=k.fetchers.get(e.key),n=Me(void 0,t?t.data:void 0);k.fetchers.set(e.key,n)})),new Map(k.fetchers)}(w)),Be(e,{flushSync:d})}w.forEach((e=>{U.has(e.key)&&Xe(e.key),e.controller&&U.set(e.key,e.controller)}));let E=()=>w.forEach((e=>Xe(e.key)));I&&I.signal.addEventListener("abort",E);let{loaderResults:P,fetcherResults:S}=await We(k.matches,r,C,w,e);if(e.signal.aborted)return{shortCircuited:!0};I&&I.signal.removeEventListener("abort",E),w.forEach((e=>U.delete(e.key)));let O=Ee([...P,...S]);if(O){if(O.idx>=C.length){let e=w[O.idx-C.length].key;se.add(e)}return await Qe(e,O.result,{replace:c}),{shortCircuited:!0}}let{loaderData:T,errors:_}=ye(k,r,C,P,h,w,S,Pe);Pe.forEach(((e,t)=>{e.subscribe((n=>{(n||e.done)&&Pe.delete(t)}))})),x.v7_partialHydration&&p&&k.errors&&Object.entries(k.errors).filter((e=>{let[t]=e;return!C.some((e=>e.route.id===t))})).forEach((e=>{let[t,n]=e;_=Object.assign(_||{},{[t]:n})}));let V=et(),R=tt($),A=V||R||w.length>0;return a({matches:r,loaderData:T,errors:_},A?{fetchers:new Map(k.fetchers)}:{})}(h,r,u,p.active,l,o&&o.submission,o&&o.fetcherSubmission,o&&o.replace,o&&!0===o.initialHydration,c,d);y||(I=null,qe(r,a({matches:b||u},be(d),{loaderData:C,errors:w})))}function ze(e){return e&&!Oe(e[1])?{[e[0]]:e[1].data}:k.actionData?0===Object.keys(k.actionData).length?null:k.actionData:void 0}async function Qe(o,i,s){let{submission:l,fetcherSubmission:c,replace:p}=void 0===s?{}:s;i.response.headers.has("X-Remix-Revalidate")&&(B=!0);let h=i.response.headers.get("Location");u(h,"Expected a Location header on the redirect Response"),h=he(h,new URL(o.url),g);let f=d(k.location,h,{_isRedirect:!0});if(r){let e=!1;if(i.response.headers.has("X-Remix-Reload-Document"))e=!0;else if(ee.test(h)){const r=t.history.createURL(h);e=r.origin!==n.location.origin||null==A(r.pathname,g)}if(e)return void(p?n.location.replace(h):n.location.assign(h))}I=null;let m=!0===p?e.Replace:e.Push,{formMethod:y,formAction:v,formEncType:b}=k.navigation;!l&&!c&&y&&v&&b&&(l=De(k.navigation));let C=l||c;if(Y.has(i.response.status)&&C&&Ve(C.formMethod))await He(m,f,{submission:a({},C,{formAction:h}),preventScrollReset:N});else{let e=Ne(f,l);await He(m,f,{overrideNavigation:e,fetcherSubmission:c,preventScrollReset:N})}}async function Ue(e,t,n,r){try{let o=await async function(e,t,n,r,o,i,s,l){let c=r.reduce(((e,t)=>e.add(t.route.id)),new Set),p=new Set,d=await e({matches:o.map((e=>{let r=c.has(e.route.id);return a({},e,{shouldLoad:r,resolve:o=>(p.add(e.route.id),r?async function(e,t,n,r,o,i,s){let a,l,c=r=>{let o,a=new Promise(((e,t)=>o=t));l=()=>o(),t.signal.addEventListener("abort",l);let u,c=o=>"function"!=typeof r?Promise.reject(new Error('You cannot call the handler for a route which defines a boolean "'+e+'" [routeId: '+n.route.id+"]")):r({request:t,params:n.params,context:s},...void 0!==o?[o]:[]);return u=i?i((e=>c(e))):(async()=>{try{return{type:"data",result:await c()}}catch(e){return{type:"error",result:e}}})(),Promise.race([u,a])};try{let i=n.route[e];if(n.route.lazy)if(i){let e,[t]=await Promise.all([c(i).catch((t=>{e=t})),ce(n.route,o,r)]);if(void 0!==e)throw e;a=t}else{if(await ce(n.route,o,r),i=n.route[e],!i){if("action"===e){let e=new URL(t.url),r=e.pathname+e.search;throw xe(405,{method:t.method,pathname:r,routeId:n.route.id})}return{type:m.data,result:void 0}}a=await c(i)}else{if(!i){let e=new URL(t.url);throw xe(404,{pathname:e.pathname+e.search})}a=await c(i)}u(void 0!==a.result,"You defined "+("action"===e?"an action":"a loader")+' for route "'+n.route.id+"\" but didn't return anything from your `"+e+"` function. Please return a value or `null`.")}catch(e){return{type:m.error,result:e}}finally{l&&t.signal.removeEventListener("abort",l)}return a}(t,n,e,i,s,o,l):Promise.resolve({type:m.data,result:void 0}))})})),request:n,params:o[0].params,context:l});return o.forEach((e=>u(p.has(e.route.id),'`match.resolve()` was not called for route id "'+e.route.id+'". You must call `match.resolve()` on every match passed to `dataStrategy` to ensure all routes are properly loaded.'))),d.filter(((e,t)=>c.has(o[t].route.id)))}(C,e,t,n,r,h,i);return await Promise.all(o.map(((e,o)=>{if(function(e){return _e(e.result)&&J.has(e.result.status)}(e)){let i=e.result;return{type:m.redirect,response:de(i,t,n[o].route.id,r,g,x.v7_relativeSplatPath)}}return async function(e){let{result:t,type:n,status:r}=e;if(_e(t)){let e;try{let n=t.headers.get("Content-Type");e=n&&/\bapplication\/json\b/.test(n)?null==t.body?null:await t.json():await t.text()}catch(e){return{type:m.error,error:e}}return n===m.error?{type:m.error,error:new H(t.status,t.statusText,e),statusCode:t.status,headers:t.headers}:{type:m.data,data:e,statusCode:t.status,headers:t.headers}}return n===m.error?{type:m.error,error:t,statusCode:z(t)?t.status:r}:function(e){let t=e;return t&&"object"==typeof t&&"object"==typeof t.data&&"function"==typeof t.subscribe&&"function"==typeof t.cancel&&"function"==typeof t.resolveData}(t)?{type:m.deferred,deferredData:t,statusCode:null==(o=t.init)?void 0:o.status,headers:(null==(i=t.init)?void 0:i.headers)&&new Headers(t.init.headers)}:{type:m.data,data:t,statusCode:r};var o,i}(e)})))}catch(e){return n.map((()=>({type:m.error,error:e})))}}async function We(e,n,r,o,i){let[s,...a]=await Promise.all([r.length?Ue("loader",i,r,n):[],...o.map((e=>e.matches&&e.match&&e.controller?Ue("loader",fe(t.history,e.path,e.controller.signal),[e.match],e.matches).then((e=>e[0])):Promise.resolve({type:m.error,error:xe(404,{pathname:e.path})})))]);return await Promise.all([Re(e,r,s,s.map((()=>i.signal)),!1,k.loaderData),Re(e,o.map((e=>e.match)),a,o.map((e=>e.controller?e.controller.signal:null)),!0)]),{loaderResults:s,fetcherResults:a}}function $e(){B=!0,q.push(...at()),ae.forEach(((e,t)=>{U.has(t)&&(Q.push(t),Xe(t))}))}function Ge(e,t,n){void 0===n&&(n={}),k.fetchers.set(e,t),Be({fetchers:new Map(k.fetchers)},{flushSync:!0===(n&&n.flushSync)})}function Je(e,t,n,r){void 0===r&&(r={});let o=Ce(k.matches,t);Ke(e),Be({errors:{[o.route.id]:n},fetchers:new Map(k.fetchers)},{flushSync:!0===(r&&r.flushSync)})}function Ye(e){return x.v7_fetcherPersist&&(me.set(e,(me.get(e)||0)+1),ge.has(e)&&ge.delete(e)),k.fetchers.get(e)||X}function Ke(e){let t=k.fetchers.get(e);!U.has(e)||t&&"loading"===t.state&&G.has(e)||Xe(e),ae.delete(e),G.delete(e),se.delete(e),ge.delete(e),k.fetchers.delete(e)}function Xe(e){let t=U.get(e);u(t,"Expected fetch controller: "+e),t.abort(),U.delete(e)}function Ze(e){for(let t of e){let e=Le(Ye(t).data);k.fetchers.set(t,e)}}function et(){let e=[],t=!1;for(let n of se){let r=k.fetchers.get(n);u(r,"Expected fetcher: "+n),"loading"===r.state&&(se.delete(n),e.push(n),t=!0)}return Ze(e),t}function tt(e){let t=[];for(let[n,r]of G)if(r<e){let e=k.fetchers.get(n);u(e,"Expected fetcher: "+n),"loading"===e.state&&(Xe(n),G.delete(n),t.push(n))}return Ze(t),t.length>0}function nt(e){k.blockers.delete(e),ke.delete(e)}function rt(e,t){let n=k.blockers.get(e)||Z;u("unblocked"===n.state&&"blocked"===t.state||"blocked"===n.state&&"blocked"===t.state||"blocked"===n.state&&"proceeding"===t.state||"blocked"===n.state&&"unblocked"===t.state||"proceeding"===n.state&&"unblocked"===t.state,"Invalid blocker state transition: "+n.state+" -> "+t.state);let r=new Map(k.blockers);r.set(e,t),Be({blockers:r})}function ot(e){let{currentLocation:t,nextLocation:n,historyAction:r}=e;if(0===ke.size)return;ke.size>1&&c(!1,"A router only supports one blocker at a time");let o=Array.from(ke.entries()),[i,s]=o[o.length-1],a=k.blockers.get(i);return a&&"proceeding"===a.state?void 0:s({currentLocation:t,nextLocation:n,historyAction:r})?i:void 0}function it(e){let t=xe(404,{pathname:e}),n=s||f,{matches:r,route:o}=we(n);return at(),{notFoundMatches:r,route:o,error:t}}function st(e,t){let n=t.partialMatches,r=n[n.length-1].route;return{notFoundMatches:n,route:r,error:xe(400,{type:"route-discovery",routeId:r.id,pathname:e,message:null!=t.error&&"message"in t.error?t.error:String(t.error)})}}function at(e){let t=[];return Pe.forEach(((n,r)=>{e&&!e(r)||(n.cancel(),t.push(r),Pe.delete(r))})),t}function lt(e,t){if(O){return O(e,t.map((e=>function(e,t){let{route:n,pathname:r,params:o}=e;return{id:n.id,pathname:r,params:o,data:t[n.id],handle:n.handle}}(e,k.loaderData))))||e.key}return e.key}function ut(e,t){if(S){let n=lt(e,t),r=S[n];if("number"==typeof r)return r}return null}function ct(e,t,n){if(w){if(!e)return{active:!0,matches:b(t,n,g,!0)||[]};{let r=e[e.length-1].route;if(r.path&&("*"===r.path||r.path.endsWith("/*")))return{active:!0,matches:b(t,n,g,!0)}}}return{active:!1,matches:null}}async function pt(e,t,n){let r=e,o=r.length>0?r[r.length-1].route:null;for(;;){let e=null==s,a=s||f;try{await le(w,t,r,a,h,i,je,n)}catch(e){return{type:"error",error:e,partialMatches:r}}finally{e&&(f=[...f])}if(n.aborted)return{type:"aborted"};let l=v(a,t,g),u=!1;if(l){let e=l[l.length-1].route;if(e.index)return{type:"success",matches:l};if(e.path&&e.path.length>0){if("*"!==e.path)return{type:"success",matches:l};u=!0}}let c=b(a,t,g,!0);if(!c||r.map((e=>e.route.id)).join("-")===c.map((e=>e.route.id)).join("-"))return{type:"success",matches:u?l:null};if(r=c,o=r[r.length-1].route,"*"===o.path)return{type:"success",matches:r}}}return p={get basename(){return g},get future(){return x},get state(){return k},get routes(){return f},get window(){return n},initialize:function(){if(E=t.history.listen((e=>{let{action:n,location:r,delta:o}=e;if(Fe)return void(Fe=!1);c(0===ke.size||null!=o,"You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.");let i=ot({currentLocation:k.location,nextLocation:r,historyAction:n});return i&&null!=o?(Fe=!0,t.history.go(-1*o),void rt(i,{state:"blocked",location:r,proceed(){rt(i,{state:"proceeding",proceed:void 0,reset:void 0,location:r}),t.history.go(o)},reset(){let e=new Map(k.blockers);e.set(i,Z),Be({blockers:e})}})):He(n,r)})),r){!function(e,t){try{let n=e.sessionStorage.getItem(ne);if(n){let e=JSON.parse(n);for(let[n,r]of Object.entries(e||{}))r&&Array.isArray(r)&&t.set(n,new Set(r||[]))}}catch(e){}}(n,L);let e=()=>function(e,t){if(t.size>0){let n={};for(let[e,r]of t)n[e]=[...r];try{e.sessionStorage.setItem(ne,JSON.stringify(n))}catch(e){c(!1,"Failed to save applied view transitions in sessionStorage ("+e+").")}}}(n,L);n.addEventListener("pagehide",e),j=()=>n.removeEventListener("pagehide",e)}return k.initialized||He(e.Pop,k.location,{initialHydration:!0}),p},subscribe:function(e){return P.add(e),()=>P.delete(e)},enableScrollRestoration:function(e,t,n){if(S=e,T=t,O=n||null,!_&&k.navigation===K){_=!0;let e=ut(k.location,k.matches);null!=e&&Be({restoreScrollPosition:e})}return()=>{S=null,T=null,O=null}},navigate:async function n(r,o){if("number"==typeof r)return void t.history.go(r);let i=re(k.location,k.matches,g,x.v7_prependBasename,r,x.v7_relativeSplatPath,null==o?void 0:o.fromRouteId,null==o?void 0:o.relative),{path:s,submission:l,error:u}=oe(x.v7_normalizeFormMethod,!1,i,o),c=k.location,p=d(k.location,s,o&&o.state);p=a({},p,t.history.encodeLocation(p));let h=o&&null!=o.replace?o.replace:void 0,f=e.Push;!0===h?f=e.Replace:!1===h||null!=l&&Ve(l.formMethod)&&l.formAction===k.location.pathname+k.location.search&&(f=e.Replace);let m=o&&"preventScrollReset"in o?!0===o.preventScrollReset:void 0,y=!0===(o&&o.unstable_flushSync),v=ot({currentLocation:c,nextLocation:p,historyAction:f});if(!v)return await He(f,p,{submission:l,pendingError:u,preventScrollReset:m,replace:o&&o.replace,enableViewTransition:o&&o.unstable_viewTransition,flushSync:y});rt(v,{state:"blocked",location:p,proceed(){rt(v,{state:"proceeding",proceed:void 0,reset:void 0,location:p}),n(r,o)},reset(){let e=new Map(k.blockers);e.set(v,Z),Be({blockers:e})}})},fetch:function(e,n,r,i){if(o)throw new Error("router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.");U.has(e)&&Xe(e);let a=!0===(i&&i.unstable_flushSync),l=s||f,c=re(k.location,k.matches,g,x.v7_prependBasename,r,x.v7_relativeSplatPath,n,null==i?void 0:i.relative),p=v(l,c,g),d=ct(p,l,c);if(d.active&&d.matches&&(p=d.matches),!p)return void Je(e,n,xe(404,{pathname:c}),{flushSync:a});let{path:h,submission:m,error:y}=oe(x.v7_normalizeFormMethod,!0,c,i);if(y)return void Je(e,n,y,{flushSync:a});let b=Ae(p,h);N=!0===(i&&i.preventScrollReset),m&&Ve(m.formMethod)?async function(e,n,r,o,i,a,l,c){function p(t){if(!t.route.action&&!t.route.lazy){let t=xe(405,{method:c.formMethod,pathname:r,routeId:n});return Je(e,n,t,{flushSync:l}),!0}return!1}if($e(),ae.delete(e),!a&&p(o))return;let d=k.fetchers.get(e);Ge(e,function(e,t){return{state:"submitting",formMethod:e.formMethod,formAction:e.formAction,formEncType:e.formEncType,formData:e.formData,json:e.json,text:e.text,data:t?t.data:void 0}}(c,d),{flushSync:l});let h=new AbortController,m=fe(t.history,r,h.signal,c);if(a){let t=await pt(i,r,m.signal);if("aborted"===t.type)return;if("error"===t.type){let{error:o}=st(r,t);return void Je(e,n,o,{flushSync:l})}if(!t.matches)return void Je(e,n,xe(404,{pathname:r}),{flushSync:l});if(p(o=Ae(i=t.matches,r)))return}U.set(e,h);let y=W,b=(await Ue("action",m,[o],i))[0];if(m.signal.aborted)return void(U.get(e)===h&&U.delete(e));if(x.v7_fetcherPersist&&ge.has(e)){if(Te(b)||Oe(b))return void Ge(e,Le(void 0))}else{if(Te(b))return U.delete(e),$>y?void Ge(e,Le(void 0)):(se.add(e),Ge(e,Me(c)),Qe(m,b,{fetcherSubmission:c}));if(Oe(b))return void Je(e,n,b.error)}if(Se(b))throw xe(400,{type:"defer-action"});let C=k.navigation.location||k.location,w=fe(t.history,C,h.signal),E=s||f,P="idle"!==k.navigation.state?v(E,k.navigation.location,g):k.matches;u(P,"Didn't find any matches after fetcher action");let S=++W;G.set(e,S);let O=Me(c,b.data);k.fetchers.set(e,O);let[T,_]=ie(t.history,k,P,c,C,!1,x.unstable_skipActionErrorRevalidation,B,q,Q,ge,ae,se,E,g,[o.route.id,b]);_.filter((t=>t.key!==e)).forEach((e=>{let t=e.key,n=k.fetchers.get(t),r=Me(void 0,n?n.data:void 0);k.fetchers.set(t,r),U.has(t)&&Xe(t),e.controller&&U.set(t,e.controller)})),Be({fetchers:new Map(k.fetchers)});let V=()=>_.forEach((e=>Xe(e.key)));h.signal.addEventListener("abort",V);let{loaderResults:R,fetcherResults:A}=await We(k.matches,P,T,_,w);if(h.signal.aborted)return;h.signal.removeEventListener("abort",V),G.delete(e),U.delete(e),_.forEach((e=>U.delete(e.key)));let N=Ee([...R,...A]);if(N){if(N.idx>=T.length){let e=_[N.idx-T.length].key;se.add(e)}return Qe(w,N.result)}let{loaderData:M,errors:L}=ye(k,k.matches,T,R,void 0,_,A,Pe);if(k.fetchers.has(e)){let t=Le(b.data);k.fetchers.set(e,t)}tt(S),"loading"===k.navigation.state&&S>$?(u(D,"Expected pending action"),I&&I.abort(),qe(k.navigation.location,{matches:P,loaderData:M,errors:L,fetchers:new Map(k.fetchers)})):(Be({errors:L,loaderData:ve(k.loaderData,M,P,L),fetchers:new Map(k.fetchers)}),B=!1)}(e,n,h,b,p,d.active,a,m):(ae.set(e,{routeId:n,path:h}),async function(e,n,r,o,i,s,a,l){let c=k.fetchers.get(e);Ge(e,Me(l,c?c.data:void 0),{flushSync:a});let p=new AbortController,d=fe(t.history,r,p.signal);if(s){let t=await pt(i,r,d.signal);if("aborted"===t.type)return;if("error"===t.type){let{error:o}=st(r,t);return void Je(e,n,o,{flushSync:a})}if(!t.matches)return void Je(e,n,xe(404,{pathname:r}),{flushSync:a});o=Ae(i=t.matches,r)}U.set(e,p);let h=W,f=(await Ue("loader",d,[o],i))[0];if(Se(f)&&(f=await Ie(f,d.signal,!0)||f),U.get(e)===p&&U.delete(e),!d.signal.aborted){if(!ge.has(e))return Te(f)?$>h?void Ge(e,Le(void 0)):(se.add(e),void await Qe(d,f)):void(Oe(f)?Je(e,n,f.error):(u(!Se(f),"Unhandled fetcher deferred data"),Ge(e,Le(f.data))));Ge(e,Le(void 0))}}(e,n,h,b,p,d.active,a,m))},revalidate:function(){$e(),Be({revalidation:"loading"}),"submitting"!==k.navigation.state&&("idle"!==k.navigation.state?He(D||k.historyAction,k.navigation.location,{overrideNavigation:k.navigation}):He(k.historyAction,k.location,{startUninterruptedRevalidation:!0}))},createHref:e=>t.history.createHref(e),encodeLocation:e=>t.history.encodeLocation(e),getFetcher:Ye,deleteFetcher:function(e){if(x.v7_fetcherPersist){let t=(me.get(e)||0)-1;t<=0?(me.delete(e),ge.add(e)):me.set(e,t)}else Ke(e);Be({fetchers:new Map(k.fetchers)})},dispose:function(){E&&E(),j&&j(),P.clear(),I&&I.abort(),k.fetchers.forEach(((e,t)=>Ke(t))),k.blockers.forEach(((e,t)=>nt(t)))},getBlocker:function(e,t){let n=k.blockers.get(e)||Z;return ke.get(e)!==t&&ke.set(e,t),n},deleteBlocker:nt,patchRoutes:function(e,t){let n=null==s;ue(e,t,s||f,h,i),n&&(f=[...f],Be({}))},_internalFetchControllers:U,_internalActiveDeferreds:Pe,_internalSetRoutes:function(e){h={},s=y(e,i,void 0,h)}},p}({basename:void 0,future:ut({},void 0,{v7_prependBasename:!0}),history:function(t){return void 0===t&&(t={}),function(t,n,r,o){void 0===o&&(o={});let{window:i=document.defaultView,v5Compat:s=!1}=o,c=i.history,f=e.Pop,m=null,g=y();function y(){return(c.state||{idx:null}).idx}function v(){f=e.Pop;let t=y(),n=null==t?null:t-g;g=t,m&&m({action:f,location:C.location,delta:n})}function b(e){let t="null"!==i.location.origin?i.location.origin:i.location.href,n="string"==typeof e?e:h(e);return n=n.replace(/ $/,"%20"),u(t,"No window.location.(origin|href) available to create URL for href: "+n),new URL(n,t)}null==g&&(g=0,c.replaceState(a({},c.state,{idx:g}),""));let C={get action(){return f},get location(){return t(i,c)},listen(e){if(m)throw new Error("A history only accepts one active listener");return i.addEventListener(l,v),m=e,()=>{i.removeEventListener(l,v),m=null}},createHref:e=>n(i,e),createURL:b,encodeLocation(e){let t=b(e);return{pathname:t.pathname,search:t.search,hash:t.hash}},push:function(t,n){f=e.Push;let o=d(C.location,t,n);r&&r(o,t),g=y()+1;let a=p(o,g),l=C.createHref(o);try{c.pushState(a,"",l)}catch(e){if(e instanceof DOMException&&"DataCloneError"===e.name)throw e;i.location.assign(l)}s&&m&&m({action:f,location:C.location,delta:1})},replace:function(t,n){f=e.Replace;let o=d(C.location,t,n);r&&r(o,t),g=y();let i=p(o,g),a=C.createHref(o);c.replaceState(i,"",a),s&&m&&m({action:f,location:C.location,delta:0})},go:e=>c.go(e)};return C}((function(e,t){let{pathname:n,search:r,hash:o}=e.location;return d("",{pathname:n,search:r,hash:o},t.state&&t.state.usr||null,t.state&&t.state.key||"default")}),(function(e,t){return"string"==typeof t?t:h(t)}),null,t)}({window:void 0}),hydrationData:function(){var e;let t=null==(e=window)?void 0:e.__staticRouterHydrationData;return t&&t.errors&&(t=ut({},t,{errors:dt(t.errors)})),t}(),routes:bT,mapRouteProperties:function(e){let n={hasErrorBoundary:null!=e.ErrorBoundary||null!=e.errorElement};return e.Component&&Object.assign(n,{element:t.createElement(e.Component),Component:void 0}),e.HydrateFallback&&Object.assign(n,{hydrateFallbackElement:t.createElement(e.HydrateFallback),HydrateFallback:void 0}),e.ErrorBoundary&&Object.assign(n,{errorElement:t.createElement(e.ErrorBoundary),ErrorBoundary:void 0}),n},unstable_dataStrategy:void 0,unstable_patchRoutesOnMiss:void 0,window:void 0}).initialize());const wT=function(){return t.createElement("div",{className:"app"},t.createElement(lE,null,t.createElement(Mn,null),t.createElement(bt,{router:CT}),t.createElement(vS,null)),t.createElement(Fn,null))};var xT=document.getElementById("root");(0,r.H)(xT).render(t.createElement(t.StrictMode,null,t.createElement(wT,null)))})()})(); \ No newline at end of file +`,jO=({reverseOrder:e,position:n="top-center",toastOptions:r,gutter:o,children:i,containerStyle:s,containerClassName:a})=>{let{toasts:l,handlers:u}=(e=>{let{toasts:n,pausedAt:r}=((e={})=>{let[n,r]=(0,t.useState)(cO);(0,t.useEffect)((()=>(uO.push(r),()=>{let e=uO.indexOf(r);e>-1&&uO.splice(e,1)})),[n]);let o=n.toasts.map((t=>{var n,r;return{...e,...e[t.type],...t,duration:t.duration||(null==(n=e[t.type])?void 0:n.duration)||(null==e?void 0:e.duration)||dO[t.type],style:{...e.style,...null==(r=e[t.type])?void 0:r.style,...t.style}}}));return{...n,toasts:o}})(e);(0,t.useEffect)((()=>{if(r)return;let e=Date.now(),t=n.map((t=>{if(t.duration===1/0)return;let n=(t.duration||0)+t.pauseDuration-(e-t.createdAt);if(!(n<0))return setTimeout((()=>fO.dismiss(t.id)),n);t.visible&&fO.dismiss(t.id)}));return()=>{t.forEach((e=>e&&clearTimeout(e)))}}),[n,r]);let o=(0,t.useCallback)((()=>{r&&pO({type:6,time:Date.now()})}),[r]),i=(0,t.useCallback)(((e,t)=>{let{reverseOrder:r=!1,gutter:o=8,defaultPosition:i}=t||{},s=n.filter((t=>(t.position||i)===(e.position||i)&&t.height)),a=s.findIndex((t=>t.id===e.id)),l=s.filter(((e,t)=>t<a&&e.visible)).length;return s.filter((e=>e.visible)).slice(...r?[l+1]:[0,l]).reduce(((e,t)=>e+(t.height||0)+o),0)}),[n]);return{toasts:n,handlers:{updateHeight:mO,startPause:gO,endPause:o,calculateOffset:i}}})(r);return t.createElement("div",{style:{position:"fixed",zIndex:9999,top:16,left:16,right:16,bottom:16,pointerEvents:"none",...s},className:a,onMouseEnter:u.startPause,onMouseLeave:u.endPause},l.map((r=>{let s=r.position||n,a=((e,t)=>{let n=e.includes("top"),r=n?{top:0}:{bottom:0},o=e.includes("center")?{justifyContent:"center"}:e.includes("right")?{justifyContent:"flex-end"}:{};return{left:0,right:0,display:"flex",position:"absolute",transition:iO()?void 0:"all 230ms cubic-bezier(.21,1.02,.73,1)",transform:`translateY(${t*(n?1:-1)}px)`,...r,...o}})(s,u.calculateOffset(r,{reverseOrder:e,gutter:o,defaultPosition:n}));return t.createElement(MO,{id:r.id,key:r.id,onHeightUpdate:u.updateHeight,className:r.visible?LO:"",style:a},"custom"===r.type?rO(r.message,r):i?i(r):t.createElement(NO,{toast:r,position:s}))})))},FO=fO,BO=function(e){return e.Unverified="unverified",e.Verified="verified",e.Edited="edited",e}({}),qO=function(e){return e.not_started="not started",e.started="started",e.completed="completed",e}({}),HO=function(e){return e.closed="closed",e.open="open",e.preview="preview",e.published="published",e}({});function zO(){return QO.apply(this,arguments)}function QO(){return(QO=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/survey/list");case 3:return t=e.sent,e.next=6,t.json();case 6:return n=e.sent,e.abrupt("return",n);case 10:return e.prev=10,e.t0=e.catch(0),e.abrupt("return",[]);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function UO(){return WO.apply(this,arguments)}function WO(){return(WO=Fu(qu().mark((function e(){var t,n,r;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/survey/active/year");case 3:return t=e.sent,e.next=6,t.json();case 6:if(!("year"in(n=e.sent))){e.next=12;break}return r=n.year,e.abrupt("return",r.toString());case 12:return console.log("Invalid response format: Failed fetching active survey year."),e.abrupt("return","");case 14:e.next=20;break;case 16:return e.prev=16,e.t0=e.catch(0),console.error("Failed fetching active survey year:",e.t0),e.abrupt("return","");case 20:case"end":return e.stop()}}),e,null,[[0,16]])})))).apply(this,arguments)}const $O=t.forwardRef((({bsPrefix:e,variant:t,animation:n="border",size:r,as:o="div",className:i,...s},a)=>{const l=`${e=kt(e,"spinner")}-${n}`;return(0,_t.jsx)(o,{ref:a,...s,className:Tt()(i,l,r&&`${l}-${r}`,t&&`text-${t}`)})}));$O.displayName="Spinner";const GO=$O;function JO(e){var n=e.text,r=e.helpText,o=e.onClick,i=e.enabled,s=Cn((0,t.useState)(!1),2),a=s[0],l=s[1],u=function(){var e=Fu(qu().mark((function e(){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!a){e.next=2;break}return e.abrupt("return");case 2:return l(!0),e.prev=3,e.next=6,o();case 6:return e.prev=6,l(!1),e.finish(6);case 9:case"end":return e.stop()}}),e,null,[[3,,6,9]])})));return function(){return e.apply(this,arguments)}}();return t.createElement(Ru,{onClick:u,disabled:!i,style:{pointerEvents:"auto",marginLeft:".5rem"},title:r},a&&t.createElement(GO,{as:"span",animation:"border",size:"sm",role:"status","aria-hidden":"true"}),n)}const YO=function(){var e=Cn((0,t.useState)([]),2),n=e[0],r=e[1],o=(0,t.useRef)(!1);function i(e,t,n){return s.apply(this,arguments)}function s(){return(s=Fu(qu().mark((function e(t,n,o){var i,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch(t,{method:"POST"});case 3:return i=e.sent,e.next=6,i.json();case 6:s=e.sent,i.ok?(FO(o),zO().then((function(e){r(e)}))):FO(n+s.message),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),FO(n+e.t0.message);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function a(){return(a=Fu(qu().mark((function e(){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,i("/api/survey/new","Failed creating new survey: ","Created new survey");case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function l(e,t){return u.apply(this,arguments)}function u(){return(u=Fu(qu().mark((function e(t,n){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!o.current){e.next=3;break}return FO("Wait for status update to be finished..."),e.abrupt("return");case 3:return o.current=!0,e.next=6,i("/api/survey/"+n+"/"+t,"Error while updating "+t+" survey status to "+n+": ",t+" survey status updated to "+n);case 6:o.current=!1;case 7:case"end":return e.stop()}}),e)})))).apply(this,arguments)}function c(){return(c=Fu(qu().mark((function e(t,n){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,i("/api/response/unlock/"+t+"/"+n,"Error while unlocking "+n+" "+t+" survey response: ",n+" "+t+" survey response unlocked");case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}(0,t.useEffect)((function(){zO().then((function(e){r(e)}))}),[]);var p=n.length>0&&n.every((function(e){return e.status==HO.published})),d=Ge(),h=window.location.origin+"/data?preview";return t.createElement("div",null,t.createElement(jO,null),t.createElement(Ru,{onClick:function(){return a.apply(this,arguments)},disabled:!p,style:{pointerEvents:"auto"},title:"Create a new survey for the next year. Only possible if all current surveys are published."},"start new survey"),t.createElement(BS,null,n.map((function(e){return t.createElement(BS.Item,{eventKey:e.year.toString(),key:e.year},t.createElement(BS.Header,null,e.year," - ",e.status),t.createElement(BS.Body,null,t.createElement("div",{style:{marginLeft:".5rem"}},t.createElement(Ru,{style:{marginLeft:".5rem"},onClick:function(){return d("/survey/admin/inspect/".concat(e.year))},title:"Open the survey for inspection with all questions visible and any visibleIf logic added to the title."},"Inspect Survey"),t.createElement(Ru,{style:{marginLeft:".5rem"},onClick:function(){return d("/survey/admin/try/".concat(e.year))},title:"Open the survey exactly as the nrens will see it, but without any nren data."},"Try Survey"),t.createElement(JO,{text:"Mark as open",helpText:"Allow the NRENs to respond to this survey. Only 1 survey may be open at a time, and (pre)-published surveys cannot be opened anymore.",enabled:e.status==HO.closed,onClick:function(){return l(e.year,"open")}}),t.createElement(JO,{text:"Mark as closed",helpText:"Do not allow the NRENs to respond to this survey anymore. Only surveys with status open can be closed.",enabled:e.status==HO.open,onClick:function(){return l(e.year,"close")}}),t.createElement(JO,{text:"Preview results",helpText:"Publish all completed survey responses to the compendium website for preview by admins. This is only possible if the survey is closed or previewed already.",enabled:e.status==HO.closed||e.status==HO.preview,onClick:function(){return l(e.year,"preview")}}),t.createElement(JO,{text:"Publish results",helpText:"Publish or re-publish all completed survey responses to the compendium website. This is only possible if the survey is in preview or published already.",enabled:e.status==HO.preview||e.status==HO.published,onClick:function(){return l(e.year,"publish")}}),e.status==HO.preview&&t.createElement("span",null," Preview link: ",t.createElement("a",{href:h},h))),t.createElement(Wx,null,t.createElement("tbody",null,e.responses.map((function(n){return t.createElement("tr",{key:n.nren},t.createElement("td",null,n.nren),t.createElement("td",null,n.status),t.createElement("td",null,n.lock_description),t.createElement("td",null,t.createElement(Ru,{onClick:function(){return d("/survey/response/".concat(e.year,"/").concat(n.nren))},style:{pointerEvents:"auto"},title:"Open the responses of the NREN."},"open"),t.createElement(Ru,{onClick:function(){return function(e,t){return c.apply(this,arguments)}(e.year,n.nren)},disabled:""==n.lock_description,style:{pointerEvents:"auto"},title:"Remove the lock from the survey so that another person can open the survey for editing. WARNING: The person that currently has the lock will not be abe to save their changes anymore once someone else starts editing!"},"remove lock")))}))))))}))))};function KO(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function XO(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?KO(Object(n),!0).forEach((function(t){Pn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):KO(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ZO(){return(ZO=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/user/list");case 3:return t=e.sent,e.next=6,t.json();case 6:return n=e.sent,e.abrupt("return",n);case 10:return e.prev=10,e.t0=e.catch(0),e.abrupt("return",[]);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function eT(){return(eT=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,fetch("/api/nren/list");case 3:return t=e.sent,e.next=6,t.json();case 6:return n=e.sent,e.abrupt("return",n);case 10:return e.prev=10,e.t0=e.catch(0),e.abrupt("return",[]);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}var tT=function(){var e=Fu(qu().mark((function e(t,n){var r,o,i,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=XO({id:t},n),o={method:"PUT",headers:{"Content-Type":"application/json"},body:JSON.stringify(r)},e.next=4,fetch("/api/user/".concat(t),o);case 4:return i=e.sent,e.next=7,i.json();case 7:if(s=e.sent,i.ok){e.next=10;break}throw new Error(s.message);case 10:return e.abrupt("return",s.user);case 11:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),nT=function(e,t){return e.permissions.active&&!t.permissions.active?-1:!e.permissions.active&&t.permissions.active?1:e.permissions.active&&t.permissions.active?"admin"===e.role&&"admin"!==t.role?1:"admin"!==e.role&&"admin"===t.role?-1:e.name.localeCompare(t.name):e.name.localeCompare(t.name)};const rT=function(){var e=Cn((0,t.useState)([]),2),n=e[0],r=e[1],o=Cn((0,t.useState)([]),2),i=o[0],s=o[1],a=(0,t.useContext)(Qu).user,l=Cn((0,t.useState)({idx:-1,asc:!0}),2),u=l[0],c=l[1],p=Cn((0,t.useState)([]),2),d=p[0],h=p[1];(0,t.useEffect)((function(){(function(){return ZO.apply(this,arguments)})().then((function(e){r(e),h(e.sort(nT))})),function(){return eT.apply(this,arguments)}().then((function(e){s(e.sort((function(e,t){return e.name.localeCompare(t.name)})))}))}),[]),(0,t.useEffect)((function(){h(bn(n.sort(nT)))}),[n]);for(var f=function(e,t){var o=n.findIndex((function(e){return e.id===t.id})),i=bn(n),s=e.target.name,a={};a[s]="active"===s?e.target.checked:e.target.value,tT(t.id,a).then((function(e){i[o]=e,r(i)})).catch((function(e){alert(e.message)}))},m=function(e){var t;if(e===u.idx||(5===e||0===e)&&-1===u.idx)return 5!==e&&0!==e||(e=-1),c({idx:e,asc:!u.asc}),void h(bn(d.reverse()));0===e?(t=nT,c({idx:-1,asc:!0})):1===e?(t=function(e,t){return e.permissions.active&&!t.permissions.active?-1:!e.permissions.active&&t.permissions.active?1:0},c({idx:e,asc:!0})):2===e?(t=function(e,t){return e.role.localeCompare(t.role)},c({idx:e,asc:!0})):3===e?(t=function(e,t){return e.email.localeCompare(t.email)},c({idx:e,asc:!0})):4===e?(t=function(e,t){return e.name.localeCompare(t.name)},c({idx:e,asc:!0})):5===e?(t=nT,c({idx:-1,asc:!0})):6===e?(t=function(e,t){return 0===e.nrens.length&&0===t.nrens.length?0:0===e.nrens.length?-1:0===t.nrens.length?1:e.nrens[0].localeCompare(t.nrens[0])},c({idx:e,asc:!0})):(t=nT,c({idx:e,asc:!0})),h(n.sort(t))},g={},y=0;y<=6;y++)g[y]=u.idx===y?{"aria-sort":u.asc?"ascending":"descending"}:null;return t.createElement(Lt,{style:{maxWidth:"90vw"}},t.createElement(Ft,null,t.createElement("h1",null," User Management Page"),t.createElement(Wx,null,t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",jC({},g[0],{onClick:function(){return m(0)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Id"),t.createElement("th",jC({},g[1],{onClick:function(){return m(1)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Active"),t.createElement("th",jC({},g[2],{onClick:function(){return m(2)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Role"),t.createElement("th",jC({},g[3],{onClick:function(){return m(3)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Email"),t.createElement("th",jC({},g[4],{onClick:function(){return m(4)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Full Name"),t.createElement("th",jC({},g[5],{onClick:function(){return m(5)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"OIDC Sub"),t.createElement("th",jC({},g[6],{onClick:function(){return m(6)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"NREN"))),t.createElement("tbody",null,d.map((function(e){return t.createElement("tr",{key:e.id},t.createElement("td",{style:{border:"1px dotted #ddd"}},e.id),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.id==a.id?"Active":t.createElement("input",{type:"checkbox",name:"active",checked:e.permissions.active,onChange:function(t){return f(t,e)}})),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.id==a.id?e.role.charAt(0).toUpperCase()+e.role.slice(1):t.createElement("select",{name:"role",defaultValue:e.role,onChange:function(t){return f(t,e)}},t.createElement("option",{value:"admin"},"Admin"),t.createElement("option",{value:"user"},"User"),t.createElement("option",{value:"observer"},"Observer"))),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.email),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.name),t.createElement("td",{style:{border:"1px dotted #ddd"}},e.oidc_sub),t.createElement("td",{style:{border:"1px dotted #ddd"}},t.createElement("select",{name:"nren",multiple:!1,value:e.nrens.length>0?(n=e.nrens[0],null===(r=i.find((function(e){return e.id==n||e.name==n})))||void 0===r?void 0:r.id):"",onChange:function(t){return f(t,e)}},t.createElement("option",{value:""},"Select NREN"),i.map((function(e){return t.createElement("option",{key:"nren_"+e.id,value:e.id},e.name)})))));var n,r}))))))};var oT=o(522),iT=o(755);function sT(e,t){if(0==t.column.indexValue&&"item"in t.row){var n,r,o=t.row.item;void 0!==o.customDescription&&(null===(n=t.htmlElement.parentElement)||void 0===n||n.children[0].children[0].setAttribute("description",o.customDescription),null===(r=t.htmlElement.parentElement)||void 0===r||r.children[0].children[0].classList.add("survey-tooltip"))}}function aT(e){var t=e[0];if(void 0===t||null==t||""==t)return!0;try{return!!new URL(t)}catch(e){return!1}}function lT(e,t){t.question.hideCheckboxLabels&&(t.cssClasses.root+=" hidden-checkbox-labels")}function uT(e,t){var n,r='[data-name="'+t.question.name+'"]',o=null===(n=document.querySelector(r))||void 0===n?void 0:n.querySelector("h5");o&&!o.classList.contains("sv-header-flex")&&t.question.updateElementCss()}function cT(e,t,n){var r;n.verificationStatus.set(e.name,t);var o=document.createElement("button");o.type="button",o.className="sv-action-bar-item verification",o.innerHTML=t,t==BO.Unverified?(o.innerHTML="No change from previous year",o.className+=" verification-required",o.onclick=function(){"display"!=n.mode&&(e.validate(),cT(e,BO.Verified,n))}):(o.innerHTML="Answer updated",o.className+=" verification-ok");var i='[data-name="'+e.name+'"]',s=null===(r=document.querySelector(i))||void 0===r?void 0:r.querySelector("h5"),a=null==s?void 0:s.querySelector(".verification");a?a.replaceWith(o):null==s||s.appendChild(o)}const pT=function(e){var n=e.surveyModel,r=(0,t.useCallback)((function(e,t){var r=n.verificationStatus.get(t.question.name);r&&cT(t.question,r,n)}),[n]),o=(0,t.useCallback)((function(e,t){n.verificationStatus.get(t.question.name)==BO.Unverified&&cT(t.question,BO.Edited,n)}),[n]);return oT.FunctionFactory.Instance.hasFunction("validateWebsiteUrl")||oT.FunctionFactory.Instance.register("validateWebsiteUrl",aT),n.css.question.title.includes("sv-header-flex")||(n.css.question.title="sv-title sv-question__title sv-header-flex",n.css.question.titleOnError="sv-question__title--error sv-error-color-fix"),n.onAfterRenderQuestion.hasFunc(r)||(n.onAfterRenderQuestion.add(r),n.onAfterRenderQuestion.add(uT)),n.onValueChanged.hasFunc(o)||n.onValueChanged.add(o),n.onUpdateQuestionCssClasses.hasFunc(lT)||n.onUpdateQuestionCssClasses.add(lT),n.onMatrixAfterCellRender.hasFunc(sT)||n.onMatrixAfterCellRender.add(sT),t.createElement(iT.Survey,{model:n})};function dT(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function hT(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?dT(Object(n),!0).forEach((function(t){Pn(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):dT(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const fT=function(e){var n=e.surveyModel,r=e.pageNoSetter,o=Cn((0,t.useState)([]),2),i=o[0],s=o[1],a=function(e){return!(null===e.value||void 0===e.value||""===e.value||"checkbox"===e.getType()&&0==e.value.length||"multipletext"===e.getType()&&(1===Object.keys(e.value).length&&void 0===Object.values(e.value)[0]||0===Object.keys(e.value).length))};(0,t.useEffect)((function(){var e=function(e){if(e&&e.pages){var t=[];e.pages.forEach((function(n){var r=n.questions.filter((function(e){return e.startWithNewLine})),o=r.length,i=r.filter(a).length,s=o-i,l=i/o;t.push({completionPercentage:100*l,unansweredPercentage:s/o*100,totalPages:e.pages.length,pageTitle:n.title})})),s(t)}};n.onValueChanged.add((function(t){e(t)})),e(n)}),[n]);var l={height:"0.5rem",transition:"width 0.3s ease"};return t.createElement(Lt,{className:"survey-progress"},t.createElement(Ft,null,i.map((function(e,o){return t.createElement(qt,{xs:12,md:!0,key:o,onClick:function(){return r(o)},style:{cursor:"pointer",margin:"0.5rem"}},t.createElement("div",null,t.createElement("span",{style:{whiteSpace:"nowrap",fontSize:"1.5rem",marginRight:"0.25rem",fontWeight:"bold",color:"#2db394"}},o+1),t.createElement("span",{style:hT({whiteSpace:"nowrap"},n.currentPageNo==o&&{fontWeight:"bold"})},e.pageTitle),t.createElement("div",{style:{display:"flex",flexWrap:"wrap"}},t.createElement("div",{style:hT(hT({},l),{},{width:"".concat(e.completionPercentage,"%"),backgroundColor:"#262261"})}),t.createElement("div",{style:hT(hT({},l),{},{width:"".concat(e.unansweredPercentage,"%"),backgroundColor:"#cdcdcd"})}))))}))))},mT=function(e){var n=e.surveyModel,r=e.surveyActions,o=e.year,i=e.nren,s=e.children,a=Cn((0,t.useState)(0),2),l=a[0],u=a[1],c=Cn((0,t.useState)(!1),2),p=c[0],d=c[1],h=Cn((0,t.useState)(""),2),f=h[0],m=h[1],g=Cn((0,t.useState)(""),2),y=g[0],v=g[1],b=(0,t.useContext)(Qu).user,C=(0,t.useCallback)((function(){d("edit"==n.mode),m(n.lockedBy),u(n.currentPageNo),v(n.status)}),[n]);(0,t.useEffect)((function(){C()}),[C]);var w=function(e){u(e),n.currentPageNo=e},x=function(){w(n.currentPageNo+1)},E=function(){var e=Fu(qu().mark((function e(t){return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,r[t]();case 2:C();case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),P=function(e,t){return S(e,(function(){return E(t)}))},S=function(e,n){return t.createElement("button",{className:"sv-btn sv-btn--navigation",onClick:n},e)},O="Save and stop editing",T="Save progress",_="Start editing",V="Complete Survey",R=function(){return t.createElement("div",{className:"survey-edit-buttons-block"},!p&&!f&&n.editAllowed&&P(_,"startEdit"),!p&&f&&f==b.name&&P("Discard any unsaved changes and release your lock","releaseLock"),p&&y==qO.started&&P(T,"save"),p&&y==qO.started&&P(O,"saveAndStopEdit"),p&&l===n.visiblePages.length-1&&P(V,"complete"),l!==n.visiblePages.length-1&&S("Next Section",x))};return parseInt(o),t.createElement(Lt,null,t.createElement(Ft,{className:"survey-content"},t.createElement("h2",null,t.createElement("span",{className:"survey-title"},o," Compendium Survey "),t.createElement("span",{className:"survey-title-nren"}," ",i," "),t.createElement("span",null," - ",y)),t.createElement("p",{style:{marginTop:"1rem",textAlign:"justify"}},t.createElement("p",null,"To get started, click “",_,"” to end read-only mode. Different people from your NREN (Compendium administrators) can contribute to the survey if needed, but agreement should be reached internally before completing the survey as the administration team will treat responses as a single source of truth from the NREN. You can start editing only when nobody else from your NREN is currently working on the survey."),t.createElement("p",null,t.createElement("b",null,"In a small change, the survey now asks about this calendar year, i.e. ",o)," (or the current financial year if your budget or staffing data does not match the calendar year). For network questions, please provide data from the 12 months preceding you answering the question. Where available, the survey questions are pre-filled with answers from the previous survey. You can edit the pre-filled answer to provide new information, or press the “no change from previous year” button."),t.createElement("p",null,"Press the “",T,"“ or “",O,"“ button to save all answers in the survey. When you reach the last section of the survey (Services), you will find a “",V,"“ button which saves all answers in the survey and lets the Compendium team know that your answers are ready to be published. As long as the survey remains open, any Compendium administrator from your NREN can add answers or amend existing ones, even after using the “",V,"“ button."),t.createElement("p",null,"Some fields require specific data, such as numerical data, valid http-addresses, and in some questions, the answer has to add up to 100%. If an answer does not fulfil the set criteria, the question will turn pink and an error message will appear. Fields can be left blank if you prefer not to answer a question. If you notice any errors after the survey was closed, please contact us for correcting those.")),t.createElement("p",null,"Thank you for taking the time to fill in the ",o," Compendium Survey. Any questions or requests can be sent to ",t.createElement("a",{href:"mailto:Partner-Relations@geant.org"},t.createElement("span",null,"Partner-Relations@geant.org"))),p&&t.createElement(t.Fragment,null,t.createElement("br",null),t.createElement("b",null,"Remember to click “",O,"” before leaving the page."))),t.createElement(Ft,null,R()),t.createElement(Ft,{className:"survey-content"},!p&&t.createElement("div",{className:"survey-edit-explainer"},!f&&n.editAllowed&&"The survey is in read-only mode; click the “Start editing“ button to begin editing the answers.",!f&&!n.editAllowed&&"The survey is in read-only mode and can not be edited by you.",f&&f!=b.name&&"The survey is in read-only mode and currently being edited by: "+f+". To start editing the survey, ask them to complete their edits.",f&&f==b.name&&'The survey is in read-only mode because you started editing in another tab, browser or device. To start editing the survey, either complete those edits or click the "Discard any unsaved changes" button.')),t.createElement(Ft,null,t.createElement(fT,{surveyModel:n,pageNoSetter:w}),s),t.createElement(Ft,null,R()))},gT=function(e){var n=e.when,r=e.onPageExit;return function(e){let{router:n,basename:r}=rt(tt.UseBlocker),o=ot(nt.UseBlocker),[i,s]=t.useState(""),a=t.useCallback((t=>{if("/"===r)return e();let{currentLocation:n,nextLocation:o,historyAction:i}=t;return e((je({},n,{pathname:A(n.pathname,r)||n.pathname}),je({},o,{pathname:A(o.pathname,r)||o.pathname})))}),[r,e]);t.useEffect((()=>{let e=String(++st);return s(e),()=>n.deleteBlocker(e)}),[n]),t.useEffect((()=>{""!==i&&n.getBlocker(i,a)}),[n,i,a]),i&&o.blockers.has(i)&&o.blockers.get(i)}((function(){if(n()){var t=window.confirm(e.message);return t&&r(),!t}return!1})),t.createElement("div",null)};oT.Serializer.addProperty("itemvalue","customDescription:text"),oT.Serializer.addProperty("question","hideCheckboxLabels:boolean");const yT=function(e){var n=e.loadFrom,r=Cn((0,t.useState)(),2),o=r[0],i=r[1],s=function(){let{matches:e}=t.useContext(ze),n=e[e.length-1];return n?n.params:{}}(),a=s.year,l=s.nren,u=Cn((0,t.useState)("loading survey..."),2),c=u[0],p=u[1],d=An().trackPageView,h=(0,t.useCallback)((function(e){return e.preventDefault(),e.returnValue=""}),[]),f=(0,t.useCallback)((function(){window.navigator.sendBeacon("/api/response/unlock/"+a+"/"+l)}),[]),m=(0,t.useCallback)((function(){window.navigator.sendBeacon("/api/response/unlock/"+a+"/"+l),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f)}),[]);if((0,t.useEffect)((function(){function e(){return(e=Fu(qu().mark((function e(){var t,r,o,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch(n+a+(l?"/"+l:""));case 2:return t=e.sent,e.next=5,t.json();case 5:if(r=e.sent,t.ok){e.next=12;break}if(!("message"in r)){e.next=11;break}throw new Error(r.message);case 11:throw new Error("Request failed with status ".concat(t.status));case 12:for(s in(o=new oT.Model(r.model)).setVariable("surveyyear",a),o.setVariable("previousyear",parseInt(a)-1),o.showNavigationButtons=!1,o.requiredText="",o.verificationStatus=new Map,r.verification_status)o.verificationStatus.set(s,r.verification_status[s]);o.data=r.data,o.clearIncorrectValues(!0),o.currentPageNo=r.page,o.mode=r.mode,o.lockedBy=r.locked_by,o.status=r.status,o.editAllowed=r.edit_allowed,i(o);case 27:case"end":return e.stop()}}),e)})))).apply(this,arguments)}(function(){return e.apply(this,arguments)})().catch((function(e){return p("Error when loading survey: "+e.message)})).then((function(){d({documentTitle:"Survey for ".concat(l," (").concat(a,")")})}))}),[]),!o)return t.createElement(t.Fragment,null,c);var g,y,v,b,C,w=function(){var e=Fu(qu().mark((function e(t,n){var r,i,s;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(l){e.next=2;break}return e.abrupt("return","Saving not available in inpect/try mode");case 2:return r={lock_uuid:t.lockUUID,new_state:n,data:t.data,page:t.currentPageNo,verification_status:Object.fromEntries(t.verificationStatus)},e.prev=3,e.next=6,fetch("/api/response/save/"+a+"/"+l,{method:"POST",headers:{"Content-Type":"application/json; charset=utf-8"},body:JSON.stringify(r)});case 6:return i=e.sent,e.next=9,i.json();case 9:if(s=e.sent,i.ok){e.next=12;break}return e.abrupt("return",s.message);case 12:o.mode=s.mode,o.lockedBy=s.locked_by,o.status=s.status,e.next=20;break;case 17:return e.prev=17,e.t0=e.catch(3),e.abrupt("return","Unknown Error: "+e.t0.message);case 20:case"end":return e.stop()}}),e,null,[[3,17]])})));return function(t,n){return e.apply(this,arguments)}}(),x=function(e){var t="",n=function(e,n){e.verificationStatus.get(n.name)==BO.Unverified&&(""==t&&(t=n.name),n.error='Please verify that last years data is correct by editing the answer or pressing the "No change from previous year" button!')};o.onValidateQuestion.add(n);var r=e();return o.onValidateQuestion.remove(n),r||FO("Validation failed!"),r},E={save:(C=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w(o,"editing");case 2:t=e.sent,FO(t?"Failed saving survey: "+t:"Survey saved!");case 4:case"end":return e.stop()}}),e)}))),function(){return C.apply(this,arguments)}),complete:(b=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!x(o.validate.bind(o,!0,!0))){e.next=6;break}return e.next=4,w(o,"completed");case 4:(t=e.sent)?FO("Failed completing survey: "+t):(FO("Survey completed!"),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f));case 6:case"end":return e.stop()}}),e)}))),function(){return b.apply(this,arguments)}),saveAndStopEdit:(v=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,w(o,"readonly");case 2:(t=e.sent)?FO("Failed saving survey: "+t):(FO("Survey saved!"),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f));case 4:case"end":return e.stop()}}),e)}))),function(){return v.apply(this,arguments)}),startEdit:(y=Fu(qu().mark((function e(){var t,n,r;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("/api/response/lock/"+a+"/"+l,{method:"POST"});case 2:return t=e.sent,e.next=5,t.json();case 5:if(n=e.sent,t.ok){e.next=9;break}return FO("Failed starting edit: "+n.message),e.abrupt("return");case 9:for(r in addEventListener("pagehide",f),addEventListener("beforeunload",h,{capture:!0}),n.verification_status)o.verificationStatus.set(r,n.verification_status[r]);o.data=n.data,o.clearIncorrectValues(!0),o.mode=n.mode,o.lockedBy=n.locked_by,o.lockUUID=n.lock_uuid,o.status=n.status;case 18:case"end":return e.stop()}}),e)}))),function(){return y.apply(this,arguments)}),releaseLock:(g=Fu(qu().mark((function e(){var t,n;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,fetch("/api/response/unlock/"+a+"/"+l,{method:"POST"});case 2:return t=e.sent,e.next=5,t.json();case 5:if(n=e.sent,t.ok){e.next=9;break}return FO("Failed releasing lock: "+n.message),e.abrupt("return");case 9:o.mode=n.mode,o.lockedBy=n.locked_by,o.status=n.status;case 12:case"end":return e.stop()}}),e)}))),function(){return g.apply(this,arguments)}),validatePage:function(){x(o.validatePage.bind(o))&&FO("Page validation successful!")}};return t.createElement(Lt,{className:"survey-container"},t.createElement(jO,null),t.createElement(gT,{message:"Are you sure you want to leave this page? Information you've entered may not be saved.",when:function(){return"edit"==o.mode&&!!l},onPageExit:m}),t.createElement(mT,{surveyModel:o,surveyActions:E,year:a,nren:l},t.createElement(pT,{surveyModel:o})))},vT=function(){var e=An().trackPageView,n=(0,t.useContext)(Qu).user,r=Ge(),o=!!n.id,i=!!o&&!!n.nrens.length,s=i?n.nrens[0]:"",a=!!o&&n.permissions.admin,l=!!o&&"observer"===n.role,u=Cn((0,t.useState)(null),2),c=u[0],p=u[1];(0,t.useEffect)((function(){var t=function(){var e=Fu(qu().mark((function e(){var t;return qu().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,UO();case 2:t=e.sent,p(t);case 4:case"end":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();t(),e({documentTitle:"GEANT Survey Landing Page"})}),[e]);var d=function(){var e=Cn((0,t.useState)(),2),n=e[0],r=e[1];return(0,t.useEffect)((function(){zO().then((function(e){r(e[0])}))}),[]),t.createElement(Wx,{striped:!0,bordered:!0,responsive:!0},t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",null,"(N)REN"),t.createElement("th",null,"Link"),t.createElement("th",null,"Survey Status"))),t.createElement("tbody",null,n&&n.responses.map((function(e){return t.createElement("tr",{key:e.nren},t.createElement("td",null,e.nren),t.createElement("td",null,t.createElement(Et,{to:"/survey/response/".concat(n.year,"/").concat(e.nren)},t.createElement("span",null,"Navigate to survey"))),t.createElement("td",null,e.status))}))))};return t.createElement(Lt,{className:"py-5 grey-container"},t.createElement(Ft,null,t.createElement("div",{className:"center-text"},t.createElement("h1",{className:"geant-header"},"THE GÉANT COMPENDIUM OF NRENS SURVEY"),t.createElement("div",{className:"wordwrap pt-4",style:{maxWidth:"75rem"}},t.createElement("p",{style:{textAlign:"left"}},"Hello,",t.createElement("br",null),"Welcome to the GÉANT Compendium Survey. (N)REN Compendium administrators can login via Single Sign On (SSO) ",t.createElement("a",{href:"/login"},"here"),", which will complete their registration to fill in the latest Compendium survey. This will send a notification to the Compendium administration team and they will assign you to your (N)REN.",t.createElement("br",null),"Once this step has been completed, you will receive an email from the administration team. We aim to get back to you the same working day, but sometimes may take a little longer.",t.createElement("br",null),"If you are not sure whether you are a Compendium Administrator for your (N)REN, please contact your GÉANT Partner Relations relationship manager.",t.createElement("br",null),"Thank you."),t.createElement("span",null,"Current registration status:"),t.createElement("br",null),t.createElement("br",null),a?t.createElement("ul",null,t.createElement("li",null,t.createElement("span",null,"You are logged in as a Compendium Administrator")),t.createElement("li",null,t.createElement("span",null,"Click ",t.createElement(Et,{to:"/survey/admin/surveys"},"here")," to access the survey management page.")),t.createElement("li",null,t.createElement("span",null,"Click ",t.createElement(Et,{to:"/survey/admin/users"},"here")," to access the user management page.")),t.createElement("li",null,t.createElement("span",null,"Click ",t.createElement("a",{href:"#",onClick:function(){fetch("/api/data-download").then((function(e){if(!e.ok)throw new Error("Network response was not ok");return e.json()})).then((function(e){var t=function(e){var t=Py.book_new();e.forEach((function(e){var n=Py.json_to_sheet(e.data);e.meta&&function(e,t,n){for(var r,o=Py.decode_range(null!==(r=e["!ref"])&&void 0!==r?r:""),i=-1,s=o.s.c;s<=o.e.c;s++){var a=e[Py.encode_cell({r:o.s.r,c:s})];if(a&&"string"==typeof a.v&&a.v===t){i=s;break}}if(-1!==i)for(var l=o.s.r+1;l<=o.e.r;++l){var u=Py.encode_cell({r:l,c:i});e[u]&&"n"===e[u].t&&(e[u].z=n)}else console.error("Column '".concat(t,"' not found."))}(n,e.meta.columnName,e.meta.format),Py.book_append_sheet(t,n,e.name)}));for(var n=fy(t,{bookType:"xlsx",type:"binary"}),r=new ArrayBuffer(n.length),o=new Uint8Array(r),i=0;i<n.length;i++)o[i]=255&n.charCodeAt(i);return new Blob([r],{type:"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8"})}(e),n=document.createElement("a");n.href=URL.createObjectURL(t),n.download="data.xlsx",document.body.appendChild(n),n.click(),document.body.removeChild(n)})).catch((function(e){console.error("Error fetching data:",e)}))}},"here")," to do the full data download."))):t.createElement("ul",null,c&&!a&&!l&&i&&function(){try{return r("/survey/response/".concat(c,"/").concat(s)),t.createElement("li",null,"Redirecting to survey...")}catch(e){return console.error("Error navigating:",e),null}}(),o?t.createElement("li",null,t.createElement("span",null,"You are logged in")):t.createElement("li",null,t.createElement("span",null,"You are not logged in")),o&&!l&&!i&&t.createElement("li",null,t.createElement("span",null,"Your access to the survey has not yet been approved")),o&&!l&&!i&&t.createElement("li",null,t.createElement("span",null,"Once you have been approved, you will immediately be directed to the relevant survey upon visiting this page")),o&&l&&t.createElement("li",null,t.createElement("span",null,"You have read-only access to the following surveys:"))),o&&l&&t.createElement(d,null)))))};var bT,CT=(bT=[{path:"/budget",element:t.createElement(sx,null)},{path:"/funding",element:t.createElement(Qx,null)},{path:"/data/employment",element:t.createElement(eE,null)},{path:"/data/roles",element:t.createElement(eE,{roles:!0})},{path:"/employee-count",element:t.createElement(nE,null)},{path:"/charging",element:t.createElement(Gx,null)},{path:"/suborganisations",element:t.createElement(rE,null)},{path:"/parentorganisation",element:t.createElement(oE,null)},{path:"/ec-projects",element:t.createElement(iE,null)},{path:"/policy",element:t.createElement(uE,null)},{path:"/traffic-volume",element:t.createElement(nP,null)},{path:"/data",element:t.createElement(ux,null)},{path:"/institutions-urls",element:t.createElement(dE,null)},{path:"/connected-proportion",element:t.createElement(TE,{connectivity_category:fE.ConnectedProportion.toString()})},{path:"/connectivity-level",element:t.createElement(TE,{connectivity_category:fE.ConnectivityLevel.toString()})},{path:"/connectivity-growth",element:t.createElement(TE,{connectivity_category:fE.ConnectivityGrowth.toString()})},{path:"/connection-carrier",element:t.createElement(TE,{connectivity_category:fE.ConnectionCarrier.toString()})},{path:"/connectivity-load",element:t.createElement(TE,{connectivity_category:fE.ConnectivityLoad.toString()})},{path:"/commercial-charging-level",element:t.createElement(TE,{connectivity_category:fE.CommercialChargingLevel.toString()})},{path:"/commercial-connectivity",element:t.createElement(TE,{connectivity_category:fE.CommercialConnectivity.toString()})},{path:"/network-services",element:t.createElement(vE,{category:hE.network_services})},{path:"/isp-support-services",element:t.createElement(vE,{category:hE.isp_support})},{path:"/security-services",element:t.createElement(vE,{category:hE.security})},{path:"/identity-services",element:t.createElement(vE,{category:hE.identity})},{path:"/collaboration-services",element:t.createElement(vE,{category:hE.collaboration})},{path:"/multimedia-services",element:t.createElement(vE,{category:hE.multimedia})},{path:"/storage-and-hosting-services",element:t.createElement(vE,{category:hE.storage_and_hosting})},{path:"/professional-services",element:t.createElement(vE,{category:hE.professional_services})},{path:"/fibre-light",element:t.createElement(_E,null)},{path:"/monitoring-tools",element:t.createElement(VE,null)},{path:"/pert-team",element:t.createElement(RE,null)},{path:"/passive-monitoring",element:t.createElement(IE,null)},{path:"/alien-wave",element:t.createElement(kE,null)},{path:"/alien-wave-internal",element:t.createElement(AE,null)},{path:"/ops-automation",element:t.createElement(DE,null)},{path:"/network-automation",element:t.createElement(NE,null)},{path:"/traffic-stats",element:t.createElement(ME,null)},{path:"/weather-map",element:t.createElement(LE,null)},{path:"/network-map",element:t.createElement(jE,null)},{path:"/nfv",element:t.createElement(FE,null)},{path:"/certificate-provider",element:t.createElement(BE,null)},{path:"/siem-vendors",element:t.createElement(qE,null)},{path:"/capacity-largest-link",element:t.createElement(zE,null)},{path:"/capacity-core-ip",element:t.createElement(UE,null)},{path:"/non-rne-peers",element:t.createElement($E,null)},{path:"/iru-duration",element:t.createElement(JE,null)},{path:"/iru-duration",element:t.createElement(JE,null)},{path:"/audits",element:t.createElement(YE,null)},{path:"/business-continuity",element:t.createElement(KE,null)},{path:"/crisis-management",element:t.createElement(ZE,null)},{path:"/crisis-exercise",element:t.createElement(XE,null)},{path:"/security-control",element:t.createElement(eP,null)},{path:"survey/admin/surveys",element:t.createElement(YO,null)},{path:"survey/admin/users",element:t.createElement(rT,null)},{path:"survey/admin/inspect/:year",element:t.createElement(yT,{loadFrom:"/api/response/inspect/"})},{path:"survey/admin/try/:year",element:t.createElement(yT,{loadFrom:"/api/response/try/"})},{path:"survey/response/:year/:nren",element:t.createElement(yT,{loadFrom:"/api/response/load/"})},{path:"survey/*",element:t.createElement(vT,null)},{path:"*",element:t.createElement(Dn,null)}],function(t){const n=t.window?t.window:"undefined"!=typeof window?window:void 0,r=void 0!==n&&void 0!==n.document&&void 0!==n.document.createElement,o=!r;let i;if(u(t.routes.length>0,"You must provide a non-empty routes array to createRouter"),t.mapRouteProperties)i=t.mapRouteProperties;else if(t.detectErrorBoundary){let e=t.detectErrorBoundary;i=t=>({hasErrorBoundary:e(t)})}else i=te;let s,l,p,h={},f=y(t.routes,i,void 0,h),g=t.basename||"/",C=t.unstable_dataStrategy||pe,w=t.unstable_patchRoutesOnMiss,x=a({v7_fetcherPersist:!1,v7_normalizeFormMethod:!1,v7_partialHydration:!1,v7_prependBasename:!1,v7_relativeSplatPath:!1,unstable_skipActionErrorRevalidation:!1},t.future),E=null,P=new Set,S=null,O=null,T=null,_=null!=t.hydrationData,V=v(f,t.history.location,g),R=null;if(null==V&&!w){let e=xe(404,{pathname:t.history.location.pathname}),{matches:n,route:r}=we(f);V=n,R={[r.id]:e}}if(V&&w&&ct(V,f,t.history.location.pathname).active&&(V=null),V)if(V.some((e=>e.route.lazy)))l=!1;else if(V.some((e=>e.route.loader)))if(x.v7_partialHydration){let e=t.hydrationData?t.hydrationData.loaderData:null,n=t.hydrationData?t.hydrationData.errors:null,r=t=>!t.route.loader||("function"!=typeof t.route.loader||!0!==t.route.loader.hydrate)&&(e&&void 0!==e[t.route.id]||n&&void 0!==n[t.route.id]);if(n){let e=V.findIndex((e=>void 0!==n[e.route.id]));l=V.slice(0,e+1).every(r)}else l=V.every(r)}else l=null!=t.hydrationData;else l=!0;else l=!1,V=[];let I,k={historyAction:t.history.action,location:t.history.location,matches:V,initialized:l,navigation:K,restoreScrollPosition:null==t.hydrationData&&null,preventScrollReset:!1,revalidation:"idle",loaderData:t.hydrationData&&t.hydrationData.loaderData||{},actionData:t.hydrationData&&t.hydrationData.actionData||null,errors:t.hydrationData&&t.hydrationData.errors||R,fetchers:new Map,blockers:new Map},D=e.Pop,N=!1,M=!1,L=new Map,j=null,F=!1,B=!1,q=[],Q=[],U=new Map,W=0,$=-1,G=new Map,se=new Set,ae=new Map,me=new Map,ge=new Set,Pe=new Map,ke=new Map,je=new Map,Fe=!1;function Be(e,t){void 0===t&&(t={}),k=a({},k,e);let n=[],r=[];x.v7_fetcherPersist&&k.fetchers.forEach(((e,t)=>{"idle"===e.state&&(ge.has(t)?r.push(t):n.push(t))})),[...P].forEach((e=>e(k,{deletedFetchers:r,unstable_viewTransitionOpts:t.viewTransitionOpts,unstable_flushSync:!0===t.flushSync}))),x.v7_fetcherPersist&&(n.forEach((e=>k.fetchers.delete(e))),r.forEach((e=>Ke(e))))}function qe(n,r,o){var i,l;let u,{flushSync:c}=void 0===o?{}:o,p=null!=k.actionData&&null!=k.navigation.formMethod&&Ve(k.navigation.formMethod)&&"loading"===k.navigation.state&&!0!==(null==(i=n.state)?void 0:i._isRedirect);u=r.actionData?Object.keys(r.actionData).length>0?r.actionData:null:p?k.actionData:null;let d=r.loaderData?ve(k.loaderData,r.loaderData,r.matches||[],r.errors):k.loaderData,h=k.blockers;h.size>0&&(h=new Map(h),h.forEach(((e,t)=>h.set(t,Z))));let m,g=!0===N||null!=k.navigation.formMethod&&Ve(k.navigation.formMethod)&&!0!==(null==(l=n.state)?void 0:l._isRedirect);if(s&&(f=s,s=void 0),F||D===e.Pop||(D===e.Push?t.history.push(n,n.state):D===e.Replace&&t.history.replace(n,n.state)),D===e.Pop){let e=L.get(k.location.pathname);e&&e.has(n.pathname)?m={currentLocation:k.location,nextLocation:n}:L.has(n.pathname)&&(m={currentLocation:n,nextLocation:k.location})}else if(M){let e=L.get(k.location.pathname);e?e.add(n.pathname):(e=new Set([n.pathname]),L.set(k.location.pathname,e)),m={currentLocation:k.location,nextLocation:n}}Be(a({},r,{actionData:u,loaderData:d,historyAction:D,location:n,initialized:!0,navigation:K,revalidation:"idle",restoreScrollPosition:ut(n,r.matches||k.matches),preventScrollReset:g,blockers:h}),{viewTransitionOpts:m,flushSync:!0===c}),D=e.Pop,N=!1,M=!1,F=!1,B=!1,q=[],Q=[]}async function He(n,r,o){I&&I.abort(),I=null,D=n,F=!0===(o&&o.startUninterruptedRevalidation),function(e,t){if(S&&T){let n=lt(e,t);S[n]=T()}}(k.location,k.matches),N=!0===(o&&o.preventScrollReset),M=!0===(o&&o.enableViewTransition);let i=s||f,l=o&&o.overrideNavigation,u=v(i,r,g),c=!0===(o&&o.flushSync),p=ct(u,i,r.pathname);if(p.active&&p.matches&&(u=p.matches),!u){let{error:e,notFoundMatches:t,route:n}=it(r.pathname);return void qe(r,{matches:t,loaderData:{},errors:{[n.id]:e}},{flushSync:c})}if(k.initialized&&!B&&function(e,t){return e.pathname===t.pathname&&e.search===t.search&&(""===e.hash?""!==t.hash:e.hash===t.hash||""!==t.hash)}(k.location,r)&&!(o&&o.submission&&Ve(o.submission.formMethod)))return void qe(r,{matches:u},{flushSync:c});I=new AbortController;let d,h=fe(t.history,r,I.signal,o&&o.submission);if(o&&o.pendingError)d=[Ce(u).route.id,{type:m.error,error:o.pendingError}];else if(o&&o.submission&&Ve(o.submission.formMethod)){let n=await async function(t,n,r,o,i,s){void 0===s&&(s={}),$e();let a,l=function(e,t){return{state:"submitting",location:e,formMethod:t.formMethod,formAction:t.formAction,formEncType:t.formEncType,formData:t.formData,json:t.json,text:t.text}}(n,r);if(Be({navigation:l},{flushSync:!0===s.flushSync}),i){let e=await pt(o,n.pathname,t.signal);if("aborted"===e.type)return{shortCircuited:!0};if("error"===e.type){let{error:t,notFoundMatches:r,route:o}=st(n.pathname,e);return{matches:r,pendingActionResult:[o.id,{type:m.error,error:t}]}}if(!e.matches){let{notFoundMatches:e,error:t,route:r}=it(n.pathname);return{matches:e,pendingActionResult:[r.id,{type:m.error,error:t}]}}o=e.matches}let u=Ae(o,n);if(u.route.action||u.route.lazy){if(a=(await Ue("action",t,[u],o))[0],t.signal.aborted)return{shortCircuited:!0}}else a={type:m.error,error:xe(405,{method:t.method,pathname:n.pathname,routeId:u.route.id})};if(Te(a)){let e;return e=s&&null!=s.replace?s.replace:he(a.response.headers.get("Location"),new URL(t.url),g)===k.location.pathname+k.location.search,await Qe(t,a,{submission:r,replace:e}),{shortCircuited:!0}}if(Se(a))throw xe(400,{type:"defer-action"});if(Oe(a)){let t=Ce(o,u.route.id);return!0!==(s&&s.replace)&&(D=e.Push),{matches:o,pendingActionResult:[t.route.id,a]}}return{matches:o,pendingActionResult:[u.route.id,a]}}(h,r,o.submission,u,p.active,{replace:o.replace,flushSync:c});if(n.shortCircuited)return;if(n.pendingActionResult){let[e,t]=n.pendingActionResult;if(Oe(t)&&z(t.error)&&404===t.error.status)return I=null,void qe(r,{matches:n.matches,loaderData:{},errors:{[e]:t.error}})}u=n.matches||u,d=n.pendingActionResult,l=Ne(r,o.submission),c=!1,p.active=!1,h=fe(t.history,h.url,h.signal)}let{shortCircuited:y,matches:b,loaderData:C,errors:w}=await async function(e,n,r,o,i,l,u,c,p,d,h){let m=i||Ne(n,l),y=l||u||De(m),v=!(F||x.v7_partialHydration&&p);if(o){if(v){let e=ze(h);Be(a({navigation:m},void 0!==e?{actionData:e}:{}),{flushSync:d})}let t=await pt(r,n.pathname,e.signal);if("aborted"===t.type)return{shortCircuited:!0};if("error"===t.type){let{error:e,notFoundMatches:r,route:o}=st(n.pathname,t);return{matches:r,loaderData:{},errors:{[o.id]:e}}}if(!t.matches){let{error:e,notFoundMatches:t,route:r}=it(n.pathname);return{matches:t,loaderData:{},errors:{[r.id]:e}}}r=t.matches}let b=s||f,[C,w]=ie(t.history,k,r,y,n,x.v7_partialHydration&&!0===p,x.unstable_skipActionErrorRevalidation,B,q,Q,ge,ae,se,b,g,h);if(at((e=>!(r&&r.some((t=>t.route.id===e)))||C&&C.some((t=>t.route.id===e)))),$=++W,0===C.length&&0===w.length){let e=et();return qe(n,a({matches:r,loaderData:{},errors:h&&Oe(h[1])?{[h[0]]:h[1].error}:null},be(h),e?{fetchers:new Map(k.fetchers)}:{}),{flushSync:d}),{shortCircuited:!0}}if(v){let e={};if(!o){e.navigation=m;let t=ze(h);void 0!==t&&(e.actionData=t)}w.length>0&&(e.fetchers=function(e){return e.forEach((e=>{let t=k.fetchers.get(e.key),n=Me(void 0,t?t.data:void 0);k.fetchers.set(e.key,n)})),new Map(k.fetchers)}(w)),Be(e,{flushSync:d})}w.forEach((e=>{U.has(e.key)&&Xe(e.key),e.controller&&U.set(e.key,e.controller)}));let E=()=>w.forEach((e=>Xe(e.key)));I&&I.signal.addEventListener("abort",E);let{loaderResults:P,fetcherResults:S}=await We(k.matches,r,C,w,e);if(e.signal.aborted)return{shortCircuited:!0};I&&I.signal.removeEventListener("abort",E),w.forEach((e=>U.delete(e.key)));let O=Ee([...P,...S]);if(O){if(O.idx>=C.length){let e=w[O.idx-C.length].key;se.add(e)}return await Qe(e,O.result,{replace:c}),{shortCircuited:!0}}let{loaderData:T,errors:_}=ye(k,r,C,P,h,w,S,Pe);Pe.forEach(((e,t)=>{e.subscribe((n=>{(n||e.done)&&Pe.delete(t)}))})),x.v7_partialHydration&&p&&k.errors&&Object.entries(k.errors).filter((e=>{let[t]=e;return!C.some((e=>e.route.id===t))})).forEach((e=>{let[t,n]=e;_=Object.assign(_||{},{[t]:n})}));let V=et(),R=tt($),A=V||R||w.length>0;return a({matches:r,loaderData:T,errors:_},A?{fetchers:new Map(k.fetchers)}:{})}(h,r,u,p.active,l,o&&o.submission,o&&o.fetcherSubmission,o&&o.replace,o&&!0===o.initialHydration,c,d);y||(I=null,qe(r,a({matches:b||u},be(d),{loaderData:C,errors:w})))}function ze(e){return e&&!Oe(e[1])?{[e[0]]:e[1].data}:k.actionData?0===Object.keys(k.actionData).length?null:k.actionData:void 0}async function Qe(o,i,s){let{submission:l,fetcherSubmission:c,replace:p}=void 0===s?{}:s;i.response.headers.has("X-Remix-Revalidate")&&(B=!0);let h=i.response.headers.get("Location");u(h,"Expected a Location header on the redirect Response"),h=he(h,new URL(o.url),g);let f=d(k.location,h,{_isRedirect:!0});if(r){let e=!1;if(i.response.headers.has("X-Remix-Reload-Document"))e=!0;else if(ee.test(h)){const r=t.history.createURL(h);e=r.origin!==n.location.origin||null==A(r.pathname,g)}if(e)return void(p?n.location.replace(h):n.location.assign(h))}I=null;let m=!0===p?e.Replace:e.Push,{formMethod:y,formAction:v,formEncType:b}=k.navigation;!l&&!c&&y&&v&&b&&(l=De(k.navigation));let C=l||c;if(Y.has(i.response.status)&&C&&Ve(C.formMethod))await He(m,f,{submission:a({},C,{formAction:h}),preventScrollReset:N});else{let e=Ne(f,l);await He(m,f,{overrideNavigation:e,fetcherSubmission:c,preventScrollReset:N})}}async function Ue(e,t,n,r){try{let o=await async function(e,t,n,r,o,i,s,l){let c=r.reduce(((e,t)=>e.add(t.route.id)),new Set),p=new Set,d=await e({matches:o.map((e=>{let r=c.has(e.route.id);return a({},e,{shouldLoad:r,resolve:o=>(p.add(e.route.id),r?async function(e,t,n,r,o,i,s){let a,l,c=r=>{let o,a=new Promise(((e,t)=>o=t));l=()=>o(),t.signal.addEventListener("abort",l);let u,c=o=>"function"!=typeof r?Promise.reject(new Error('You cannot call the handler for a route which defines a boolean "'+e+'" [routeId: '+n.route.id+"]")):r({request:t,params:n.params,context:s},...void 0!==o?[o]:[]);return u=i?i((e=>c(e))):(async()=>{try{return{type:"data",result:await c()}}catch(e){return{type:"error",result:e}}})(),Promise.race([u,a])};try{let i=n.route[e];if(n.route.lazy)if(i){let e,[t]=await Promise.all([c(i).catch((t=>{e=t})),ce(n.route,o,r)]);if(void 0!==e)throw e;a=t}else{if(await ce(n.route,o,r),i=n.route[e],!i){if("action"===e){let e=new URL(t.url),r=e.pathname+e.search;throw xe(405,{method:t.method,pathname:r,routeId:n.route.id})}return{type:m.data,result:void 0}}a=await c(i)}else{if(!i){let e=new URL(t.url);throw xe(404,{pathname:e.pathname+e.search})}a=await c(i)}u(void 0!==a.result,"You defined "+("action"===e?"an action":"a loader")+' for route "'+n.route.id+"\" but didn't return anything from your `"+e+"` function. Please return a value or `null`.")}catch(e){return{type:m.error,result:e}}finally{l&&t.signal.removeEventListener("abort",l)}return a}(t,n,e,i,s,o,l):Promise.resolve({type:m.data,result:void 0}))})})),request:n,params:o[0].params,context:l});return o.forEach((e=>u(p.has(e.route.id),'`match.resolve()` was not called for route id "'+e.route.id+'". You must call `match.resolve()` on every match passed to `dataStrategy` to ensure all routes are properly loaded.'))),d.filter(((e,t)=>c.has(o[t].route.id)))}(C,e,t,n,r,h,i);return await Promise.all(o.map(((e,o)=>{if(function(e){return _e(e.result)&&J.has(e.result.status)}(e)){let i=e.result;return{type:m.redirect,response:de(i,t,n[o].route.id,r,g,x.v7_relativeSplatPath)}}return async function(e){let{result:t,type:n,status:r}=e;if(_e(t)){let e;try{let n=t.headers.get("Content-Type");e=n&&/\bapplication\/json\b/.test(n)?null==t.body?null:await t.json():await t.text()}catch(e){return{type:m.error,error:e}}return n===m.error?{type:m.error,error:new H(t.status,t.statusText,e),statusCode:t.status,headers:t.headers}:{type:m.data,data:e,statusCode:t.status,headers:t.headers}}return n===m.error?{type:m.error,error:t,statusCode:z(t)?t.status:r}:function(e){let t=e;return t&&"object"==typeof t&&"object"==typeof t.data&&"function"==typeof t.subscribe&&"function"==typeof t.cancel&&"function"==typeof t.resolveData}(t)?{type:m.deferred,deferredData:t,statusCode:null==(o=t.init)?void 0:o.status,headers:(null==(i=t.init)?void 0:i.headers)&&new Headers(t.init.headers)}:{type:m.data,data:t,statusCode:r};var o,i}(e)})))}catch(e){return n.map((()=>({type:m.error,error:e})))}}async function We(e,n,r,o,i){let[s,...a]=await Promise.all([r.length?Ue("loader",i,r,n):[],...o.map((e=>e.matches&&e.match&&e.controller?Ue("loader",fe(t.history,e.path,e.controller.signal),[e.match],e.matches).then((e=>e[0])):Promise.resolve({type:m.error,error:xe(404,{pathname:e.path})})))]);return await Promise.all([Re(e,r,s,s.map((()=>i.signal)),!1,k.loaderData),Re(e,o.map((e=>e.match)),a,o.map((e=>e.controller?e.controller.signal:null)),!0)]),{loaderResults:s,fetcherResults:a}}function $e(){B=!0,q.push(...at()),ae.forEach(((e,t)=>{U.has(t)&&(Q.push(t),Xe(t))}))}function Ge(e,t,n){void 0===n&&(n={}),k.fetchers.set(e,t),Be({fetchers:new Map(k.fetchers)},{flushSync:!0===(n&&n.flushSync)})}function Je(e,t,n,r){void 0===r&&(r={});let o=Ce(k.matches,t);Ke(e),Be({errors:{[o.route.id]:n},fetchers:new Map(k.fetchers)},{flushSync:!0===(r&&r.flushSync)})}function Ye(e){return x.v7_fetcherPersist&&(me.set(e,(me.get(e)||0)+1),ge.has(e)&&ge.delete(e)),k.fetchers.get(e)||X}function Ke(e){let t=k.fetchers.get(e);!U.has(e)||t&&"loading"===t.state&&G.has(e)||Xe(e),ae.delete(e),G.delete(e),se.delete(e),ge.delete(e),k.fetchers.delete(e)}function Xe(e){let t=U.get(e);u(t,"Expected fetch controller: "+e),t.abort(),U.delete(e)}function Ze(e){for(let t of e){let e=Le(Ye(t).data);k.fetchers.set(t,e)}}function et(){let e=[],t=!1;for(let n of se){let r=k.fetchers.get(n);u(r,"Expected fetcher: "+n),"loading"===r.state&&(se.delete(n),e.push(n),t=!0)}return Ze(e),t}function tt(e){let t=[];for(let[n,r]of G)if(r<e){let e=k.fetchers.get(n);u(e,"Expected fetcher: "+n),"loading"===e.state&&(Xe(n),G.delete(n),t.push(n))}return Ze(t),t.length>0}function nt(e){k.blockers.delete(e),ke.delete(e)}function rt(e,t){let n=k.blockers.get(e)||Z;u("unblocked"===n.state&&"blocked"===t.state||"blocked"===n.state&&"blocked"===t.state||"blocked"===n.state&&"proceeding"===t.state||"blocked"===n.state&&"unblocked"===t.state||"proceeding"===n.state&&"unblocked"===t.state,"Invalid blocker state transition: "+n.state+" -> "+t.state);let r=new Map(k.blockers);r.set(e,t),Be({blockers:r})}function ot(e){let{currentLocation:t,nextLocation:n,historyAction:r}=e;if(0===ke.size)return;ke.size>1&&c(!1,"A router only supports one blocker at a time");let o=Array.from(ke.entries()),[i,s]=o[o.length-1],a=k.blockers.get(i);return a&&"proceeding"===a.state?void 0:s({currentLocation:t,nextLocation:n,historyAction:r})?i:void 0}function it(e){let t=xe(404,{pathname:e}),n=s||f,{matches:r,route:o}=we(n);return at(),{notFoundMatches:r,route:o,error:t}}function st(e,t){let n=t.partialMatches,r=n[n.length-1].route;return{notFoundMatches:n,route:r,error:xe(400,{type:"route-discovery",routeId:r.id,pathname:e,message:null!=t.error&&"message"in t.error?t.error:String(t.error)})}}function at(e){let t=[];return Pe.forEach(((n,r)=>{e&&!e(r)||(n.cancel(),t.push(r),Pe.delete(r))})),t}function lt(e,t){if(O){return O(e,t.map((e=>function(e,t){let{route:n,pathname:r,params:o}=e;return{id:n.id,pathname:r,params:o,data:t[n.id],handle:n.handle}}(e,k.loaderData))))||e.key}return e.key}function ut(e,t){if(S){let n=lt(e,t),r=S[n];if("number"==typeof r)return r}return null}function ct(e,t,n){if(w){if(!e)return{active:!0,matches:b(t,n,g,!0)||[]};{let r=e[e.length-1].route;if(r.path&&("*"===r.path||r.path.endsWith("/*")))return{active:!0,matches:b(t,n,g,!0)}}}return{active:!1,matches:null}}async function pt(e,t,n){let r=e,o=r.length>0?r[r.length-1].route:null;for(;;){let e=null==s,a=s||f;try{await le(w,t,r,a,h,i,je,n)}catch(e){return{type:"error",error:e,partialMatches:r}}finally{e&&(f=[...f])}if(n.aborted)return{type:"aborted"};let l=v(a,t,g),u=!1;if(l){let e=l[l.length-1].route;if(e.index)return{type:"success",matches:l};if(e.path&&e.path.length>0){if("*"!==e.path)return{type:"success",matches:l};u=!0}}let c=b(a,t,g,!0);if(!c||r.map((e=>e.route.id)).join("-")===c.map((e=>e.route.id)).join("-"))return{type:"success",matches:u?l:null};if(r=c,o=r[r.length-1].route,"*"===o.path)return{type:"success",matches:r}}}return p={get basename(){return g},get future(){return x},get state(){return k},get routes(){return f},get window(){return n},initialize:function(){if(E=t.history.listen((e=>{let{action:n,location:r,delta:o}=e;if(Fe)return void(Fe=!1);c(0===ke.size||null!=o,"You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.");let i=ot({currentLocation:k.location,nextLocation:r,historyAction:n});return i&&null!=o?(Fe=!0,t.history.go(-1*o),void rt(i,{state:"blocked",location:r,proceed(){rt(i,{state:"proceeding",proceed:void 0,reset:void 0,location:r}),t.history.go(o)},reset(){let e=new Map(k.blockers);e.set(i,Z),Be({blockers:e})}})):He(n,r)})),r){!function(e,t){try{let n=e.sessionStorage.getItem(ne);if(n){let e=JSON.parse(n);for(let[n,r]of Object.entries(e||{}))r&&Array.isArray(r)&&t.set(n,new Set(r||[]))}}catch(e){}}(n,L);let e=()=>function(e,t){if(t.size>0){let n={};for(let[e,r]of t)n[e]=[...r];try{e.sessionStorage.setItem(ne,JSON.stringify(n))}catch(e){c(!1,"Failed to save applied view transitions in sessionStorage ("+e+").")}}}(n,L);n.addEventListener("pagehide",e),j=()=>n.removeEventListener("pagehide",e)}return k.initialized||He(e.Pop,k.location,{initialHydration:!0}),p},subscribe:function(e){return P.add(e),()=>P.delete(e)},enableScrollRestoration:function(e,t,n){if(S=e,T=t,O=n||null,!_&&k.navigation===K){_=!0;let e=ut(k.location,k.matches);null!=e&&Be({restoreScrollPosition:e})}return()=>{S=null,T=null,O=null}},navigate:async function n(r,o){if("number"==typeof r)return void t.history.go(r);let i=re(k.location,k.matches,g,x.v7_prependBasename,r,x.v7_relativeSplatPath,null==o?void 0:o.fromRouteId,null==o?void 0:o.relative),{path:s,submission:l,error:u}=oe(x.v7_normalizeFormMethod,!1,i,o),c=k.location,p=d(k.location,s,o&&o.state);p=a({},p,t.history.encodeLocation(p));let h=o&&null!=o.replace?o.replace:void 0,f=e.Push;!0===h?f=e.Replace:!1===h||null!=l&&Ve(l.formMethod)&&l.formAction===k.location.pathname+k.location.search&&(f=e.Replace);let m=o&&"preventScrollReset"in o?!0===o.preventScrollReset:void 0,y=!0===(o&&o.unstable_flushSync),v=ot({currentLocation:c,nextLocation:p,historyAction:f});if(!v)return await He(f,p,{submission:l,pendingError:u,preventScrollReset:m,replace:o&&o.replace,enableViewTransition:o&&o.unstable_viewTransition,flushSync:y});rt(v,{state:"blocked",location:p,proceed(){rt(v,{state:"proceeding",proceed:void 0,reset:void 0,location:p}),n(r,o)},reset(){let e=new Map(k.blockers);e.set(v,Z),Be({blockers:e})}})},fetch:function(e,n,r,i){if(o)throw new Error("router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.");U.has(e)&&Xe(e);let a=!0===(i&&i.unstable_flushSync),l=s||f,c=re(k.location,k.matches,g,x.v7_prependBasename,r,x.v7_relativeSplatPath,n,null==i?void 0:i.relative),p=v(l,c,g),d=ct(p,l,c);if(d.active&&d.matches&&(p=d.matches),!p)return void Je(e,n,xe(404,{pathname:c}),{flushSync:a});let{path:h,submission:m,error:y}=oe(x.v7_normalizeFormMethod,!0,c,i);if(y)return void Je(e,n,y,{flushSync:a});let b=Ae(p,h);N=!0===(i&&i.preventScrollReset),m&&Ve(m.formMethod)?async function(e,n,r,o,i,a,l,c){function p(t){if(!t.route.action&&!t.route.lazy){let t=xe(405,{method:c.formMethod,pathname:r,routeId:n});return Je(e,n,t,{flushSync:l}),!0}return!1}if($e(),ae.delete(e),!a&&p(o))return;let d=k.fetchers.get(e);Ge(e,function(e,t){return{state:"submitting",formMethod:e.formMethod,formAction:e.formAction,formEncType:e.formEncType,formData:e.formData,json:e.json,text:e.text,data:t?t.data:void 0}}(c,d),{flushSync:l});let h=new AbortController,m=fe(t.history,r,h.signal,c);if(a){let t=await pt(i,r,m.signal);if("aborted"===t.type)return;if("error"===t.type){let{error:o}=st(r,t);return void Je(e,n,o,{flushSync:l})}if(!t.matches)return void Je(e,n,xe(404,{pathname:r}),{flushSync:l});if(p(o=Ae(i=t.matches,r)))return}U.set(e,h);let y=W,b=(await Ue("action",m,[o],i))[0];if(m.signal.aborted)return void(U.get(e)===h&&U.delete(e));if(x.v7_fetcherPersist&&ge.has(e)){if(Te(b)||Oe(b))return void Ge(e,Le(void 0))}else{if(Te(b))return U.delete(e),$>y?void Ge(e,Le(void 0)):(se.add(e),Ge(e,Me(c)),Qe(m,b,{fetcherSubmission:c}));if(Oe(b))return void Je(e,n,b.error)}if(Se(b))throw xe(400,{type:"defer-action"});let C=k.navigation.location||k.location,w=fe(t.history,C,h.signal),E=s||f,P="idle"!==k.navigation.state?v(E,k.navigation.location,g):k.matches;u(P,"Didn't find any matches after fetcher action");let S=++W;G.set(e,S);let O=Me(c,b.data);k.fetchers.set(e,O);let[T,_]=ie(t.history,k,P,c,C,!1,x.unstable_skipActionErrorRevalidation,B,q,Q,ge,ae,se,E,g,[o.route.id,b]);_.filter((t=>t.key!==e)).forEach((e=>{let t=e.key,n=k.fetchers.get(t),r=Me(void 0,n?n.data:void 0);k.fetchers.set(t,r),U.has(t)&&Xe(t),e.controller&&U.set(t,e.controller)})),Be({fetchers:new Map(k.fetchers)});let V=()=>_.forEach((e=>Xe(e.key)));h.signal.addEventListener("abort",V);let{loaderResults:R,fetcherResults:A}=await We(k.matches,P,T,_,w);if(h.signal.aborted)return;h.signal.removeEventListener("abort",V),G.delete(e),U.delete(e),_.forEach((e=>U.delete(e.key)));let N=Ee([...R,...A]);if(N){if(N.idx>=T.length){let e=_[N.idx-T.length].key;se.add(e)}return Qe(w,N.result)}let{loaderData:M,errors:L}=ye(k,k.matches,T,R,void 0,_,A,Pe);if(k.fetchers.has(e)){let t=Le(b.data);k.fetchers.set(e,t)}tt(S),"loading"===k.navigation.state&&S>$?(u(D,"Expected pending action"),I&&I.abort(),qe(k.navigation.location,{matches:P,loaderData:M,errors:L,fetchers:new Map(k.fetchers)})):(Be({errors:L,loaderData:ve(k.loaderData,M,P,L),fetchers:new Map(k.fetchers)}),B=!1)}(e,n,h,b,p,d.active,a,m):(ae.set(e,{routeId:n,path:h}),async function(e,n,r,o,i,s,a,l){let c=k.fetchers.get(e);Ge(e,Me(l,c?c.data:void 0),{flushSync:a});let p=new AbortController,d=fe(t.history,r,p.signal);if(s){let t=await pt(i,r,d.signal);if("aborted"===t.type)return;if("error"===t.type){let{error:o}=st(r,t);return void Je(e,n,o,{flushSync:a})}if(!t.matches)return void Je(e,n,xe(404,{pathname:r}),{flushSync:a});o=Ae(i=t.matches,r)}U.set(e,p);let h=W,f=(await Ue("loader",d,[o],i))[0];if(Se(f)&&(f=await Ie(f,d.signal,!0)||f),U.get(e)===p&&U.delete(e),!d.signal.aborted){if(!ge.has(e))return Te(f)?$>h?void Ge(e,Le(void 0)):(se.add(e),void await Qe(d,f)):void(Oe(f)?Je(e,n,f.error):(u(!Se(f),"Unhandled fetcher deferred data"),Ge(e,Le(f.data))));Ge(e,Le(void 0))}}(e,n,h,b,p,d.active,a,m))},revalidate:function(){$e(),Be({revalidation:"loading"}),"submitting"!==k.navigation.state&&("idle"!==k.navigation.state?He(D||k.historyAction,k.navigation.location,{overrideNavigation:k.navigation}):He(k.historyAction,k.location,{startUninterruptedRevalidation:!0}))},createHref:e=>t.history.createHref(e),encodeLocation:e=>t.history.encodeLocation(e),getFetcher:Ye,deleteFetcher:function(e){if(x.v7_fetcherPersist){let t=(me.get(e)||0)-1;t<=0?(me.delete(e),ge.add(e)):me.set(e,t)}else Ke(e);Be({fetchers:new Map(k.fetchers)})},dispose:function(){E&&E(),j&&j(),P.clear(),I&&I.abort(),k.fetchers.forEach(((e,t)=>Ke(t))),k.blockers.forEach(((e,t)=>nt(t)))},getBlocker:function(e,t){let n=k.blockers.get(e)||Z;return ke.get(e)!==t&&ke.set(e,t),n},deleteBlocker:nt,patchRoutes:function(e,t){let n=null==s;ue(e,t,s||f,h,i),n&&(f=[...f],Be({}))},_internalFetchControllers:U,_internalActiveDeferreds:Pe,_internalSetRoutes:function(e){h={},s=y(e,i,void 0,h)}},p}({basename:void 0,future:ut({},void 0,{v7_prependBasename:!0}),history:function(t){return void 0===t&&(t={}),function(t,n,r,o){void 0===o&&(o={});let{window:i=document.defaultView,v5Compat:s=!1}=o,c=i.history,f=e.Pop,m=null,g=y();function y(){return(c.state||{idx:null}).idx}function v(){f=e.Pop;let t=y(),n=null==t?null:t-g;g=t,m&&m({action:f,location:C.location,delta:n})}function b(e){let t="null"!==i.location.origin?i.location.origin:i.location.href,n="string"==typeof e?e:h(e);return n=n.replace(/ $/,"%20"),u(t,"No window.location.(origin|href) available to create URL for href: "+n),new URL(n,t)}null==g&&(g=0,c.replaceState(a({},c.state,{idx:g}),""));let C={get action(){return f},get location(){return t(i,c)},listen(e){if(m)throw new Error("A history only accepts one active listener");return i.addEventListener(l,v),m=e,()=>{i.removeEventListener(l,v),m=null}},createHref:e=>n(i,e),createURL:b,encodeLocation(e){let t=b(e);return{pathname:t.pathname,search:t.search,hash:t.hash}},push:function(t,n){f=e.Push;let o=d(C.location,t,n);r&&r(o,t),g=y()+1;let a=p(o,g),l=C.createHref(o);try{c.pushState(a,"",l)}catch(e){if(e instanceof DOMException&&"DataCloneError"===e.name)throw e;i.location.assign(l)}s&&m&&m({action:f,location:C.location,delta:1})},replace:function(t,n){f=e.Replace;let o=d(C.location,t,n);r&&r(o,t),g=y();let i=p(o,g),a=C.createHref(o);c.replaceState(i,"",a),s&&m&&m({action:f,location:C.location,delta:0})},go:e=>c.go(e)};return C}((function(e,t){let{pathname:n,search:r,hash:o}=e.location;return d("",{pathname:n,search:r,hash:o},t.state&&t.state.usr||null,t.state&&t.state.key||"default")}),(function(e,t){return"string"==typeof t?t:h(t)}),null,t)}({window:void 0}),hydrationData:function(){var e;let t=null==(e=window)?void 0:e.__staticRouterHydrationData;return t&&t.errors&&(t=ut({},t,{errors:dt(t.errors)})),t}(),routes:bT,mapRouteProperties:function(e){let n={hasErrorBoundary:null!=e.ErrorBoundary||null!=e.errorElement};return e.Component&&Object.assign(n,{element:t.createElement(e.Component),Component:void 0}),e.HydrateFallback&&Object.assign(n,{hydrateFallbackElement:t.createElement(e.HydrateFallback),HydrateFallback:void 0}),e.ErrorBoundary&&Object.assign(n,{errorElement:t.createElement(e.ErrorBoundary),ErrorBoundary:void 0}),n},unstable_dataStrategy:void 0,unstable_patchRoutesOnMiss:void 0,window:void 0}).initialize());const wT=function(){return t.createElement("div",{className:"app"},t.createElement(lE,null,t.createElement(Mn,null),t.createElement(bt,{router:CT}),t.createElement(vS,null)),t.createElement(Fn,null))};var xT=document.getElementById("root");(0,r.H)(xT).render(t.createElement(t.StrictMode,null,t.createElement(wT,null)))})()})(); \ No newline at end of file diff --git a/setup.py b/setup.py index b0ee38133fe8ace648e50c438c33a7b2435c6cc5..b90ef73c6430c275ebf37561363d2df4c88c2826 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='compendium-v2', - version="0.62", + version="0.63", author='GEANT', author_email='swd@geant.org', description='Flask and React project for displaying '