diff --git a/Changelog.md b/Changelog.md index 23a2249025baf45c6be46fd098e7b58f552a7031..6283647b41634f59053cb89ddc0057f5355fea94 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [0.70] - 2024-12-04 +- Fix issues with rendering of pages/routes that reuse components with different props only + + ## [0.69] - 2024-12-04 - COMP-315: Allow any input for GDPR contacts, instead of requiring a URL - COMP-339: Fix StaffGraph pages to only show NREN/year selection if there's data for the given page diff --git a/compendium-frontend/src/App.tsx b/compendium-frontend/src/App.tsx index c478882b8d7e94de69894533c2b7358bc8829adf..d676ef8b218cd871788036ae54500544bbbd45bf 100644 --- a/compendium-frontend/src/App.tsx +++ b/compendium-frontend/src/App.tsx @@ -71,9 +71,9 @@ import SurveyLanding from "./survey/Landing"; const router = createBrowserRouter([ { path: "/budget", element: <BudgetPage /> }, { path: "/funding", element: <FundingSourcePage /> }, - { path: "/data/employment", element: <StaffGraphPage /> }, + { path: "/data/employment", element: <StaffGraphPage key={'staffgraph'} /> }, { path: "/data/traffic-ratio", element: <TrafficRatioPage /> }, - { path: "/data/roles", element: <StaffGraphPage roles /> }, + { path: "/data/roles", element: <StaffGraphPage roles key={'staffgraphroles'} /> }, { path: "/employee-count", element: <StaffGraphAbsolutePage /> }, { path: "/charging", element: <ChargingStructurePage /> }, { path: "/suborganisations", element: <SubOrganisationPage /> }, @@ -83,21 +83,21 @@ const router = createBrowserRouter([ { path: "/traffic-volume", element: <TrafficVolumePage /> }, { path: "/data", element: <CompendiumData /> }, { path: "/institutions-urls", element: <ConnectedInstitutionsURLsPage /> }, - { path: "/connected-proportion", element: <ConnectedUserPage page={ConnectivityPage.ConnectedProportion} /> }, - { path: "/connectivity-level", element: <ConnectedUserPage page={ConnectivityPage.ConnectivityLevel} /> }, - { path: "/connectivity-growth", element: <ConnectedUserPage page={ConnectivityPage.ConnectivityGrowth} /> }, - { path: "/connection-carrier", element: <ConnectedUserPage page={ConnectivityPage.ConnectionCarrier} /> }, - { path: "/connectivity-load", element: <ConnectedUserPage page={ConnectivityPage.ConnectivityLoad} /> }, - { path: "/commercial-charging-level", element: <ConnectedUserPage page={ConnectivityPage.CommercialChargingLevel} /> }, - { path: "/commercial-connectivity", element: <ConnectedUserPage page={ConnectivityPage.CommercialConnectivity} /> }, - { path: "/network-services", element: <ServicesPage category={ServiceCategory.network_services} /> }, - { path: "/isp-support-services", element: <ServicesPage category={ServiceCategory.isp_support} /> }, - { path: "/security-services", element: <ServicesPage category={ServiceCategory.security} /> }, - { path: "/identity-services", element: <ServicesPage category={ServiceCategory.identity} /> }, - { path: "/collaboration-services", element: <ServicesPage category={ServiceCategory.collaboration} /> }, - { path: "/multimedia-services", element: <ServicesPage category={ServiceCategory.multimedia} /> }, - { path: "/storage-and-hosting-services", element: <ServicesPage category={ServiceCategory.storage_and_hosting} /> }, - { path: "/professional-services", element: <ServicesPage category={ServiceCategory.professional_services} /> }, + { path: "/connected-proportion", element: <ConnectedUserPage page={ConnectivityPage.ConnectedProportion} key={ConnectivityPage.ConnectedProportion} /> }, + { path: "/connectivity-level", element: <ConnectedUserPage page={ConnectivityPage.ConnectivityLevel} key={ConnectivityPage.ConnectivityLevel} /> }, + { path: "/connectivity-growth", element: <ConnectedUserPage page={ConnectivityPage.ConnectivityGrowth} key={ConnectivityPage.ConnectivityGrowth} /> }, + { path: "/connection-carrier", element: <ConnectedUserPage page={ConnectivityPage.ConnectionCarrier} key={ConnectivityPage.ConnectionCarrier} /> }, + { path: "/connectivity-load", element: <ConnectedUserPage page={ConnectivityPage.ConnectivityLoad} key={ConnectivityPage.ConnectivityLoad} /> }, + { path: "/commercial-charging-level", element: <ConnectedUserPage page={ConnectivityPage.CommercialChargingLevel} key={ConnectivityPage.CommercialChargingLevel} /> }, + { path: "/commercial-connectivity", element: <ConnectedUserPage page={ConnectivityPage.CommercialConnectivity} key={ConnectivityPage.CommercialConnectivity} /> }, + { path: "/network-services", element: <ServicesPage category={ServiceCategory.network_services} key={ServiceCategory.network_services} /> }, + { path: "/isp-support-services", element: <ServicesPage category={ServiceCategory.isp_support} key={ServiceCategory.isp_support} /> }, + { path: "/security-services", element: <ServicesPage category={ServiceCategory.security} key={ServiceCategory.security} /> }, + { path: "/identity-services", element: <ServicesPage category={ServiceCategory.identity} key={ServiceCategory.identity} /> }, + { path: "/collaboration-services", element: <ServicesPage category={ServiceCategory.collaboration} key={ServiceCategory.collaboration} /> }, + { path: "/multimedia-services", element: <ServicesPage category={ServiceCategory.multimedia} key={ServiceCategory.multimedia} /> }, + { path: "/storage-and-hosting-services", element: <ServicesPage category={ServiceCategory.storage_and_hosting} key={ServiceCategory.storage_and_hosting} /> }, + { path: "/professional-services", element: <ServicesPage category={ServiceCategory.professional_services} key={ServiceCategory.professional_services} /> }, { path: "/fibre-light", element: <FibreLightPage /> }, { path: "/monitoring-tools", element: <MonitoringToolsPage /> }, { path: "/pert-team", element: <PertTeamPage /> }, diff --git a/compendium-frontend/src/pages/Organization/StaffGraph.tsx b/compendium-frontend/src/pages/Organization/StaffGraph.tsx index db8d861d084edba823ccc70c1009739fc57f4b3c..f67df2258ba592f21091f7434a601385d194ec0a 100644 --- a/compendium-frontend/src/pages/Organization/StaffGraph.tsx +++ b/compendium-frontend/src/pages/Organization/StaffGraph.tsx @@ -114,7 +114,6 @@ function StaffGraphPage({ roles = false }: inputProps) { const selectedData = staffData.filter(data => filterSelection.selectedYears.includes(data.year) && filterSelection.selectedNrens.includes(data.nren) - ); const nrenStaffDataset = createNRENStaffDataset(selectedData, roles, filterSelection.selectedYears[0]); diff --git a/compendium_v2/static/bundle.js b/compendium_v2/static/bundle.js index 968a3eb71020a40bf5e7538880158c176c4a1646..5d6c72de031f11176cf9c22e3abf74f1433be89c 100644 --- a/compendium_v2/static/bundle.js +++ b/compendium_v2/static/bundle.js @@ -169,4 +169,4 @@ to { > * { pointer-events: auto; } -`,$O=({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)(bO);(0,t.useEffect)((()=>(vO.push(r),()=>{let e=vO.indexOf(r);e>-1&&vO.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)||wO[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((()=>EO.dismiss(t.id)),n);t.visible&&EO.dismiss(t.id)}));return()=>{t.forEach((e=>e&&clearTimeout(e)))}}),[n,r]);let o=(0,t.useCallback)((()=>{r&&CO({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:PO,startPause:SO,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:fO()?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(UO,{id:r.id,key:r.id,onHeightUpdate:u.updateHeight,className:r.visible?WO:"",style:a},"custom"===r.type?dO(r.message,r):i?i(r):t.createElement(QO,{toast:r,position:s}))})))},GO=EO,JO=function(e){return e.Unverified="unverified",e.Verified="verified",e.Edited="edited",e}({}),YO=function(e){return e.not_started="not started",e.started="started",e.completed="completed",e}({}),KO=function(e){return e.closed="closed",e.open="open",e.preview="preview",e.published="published",e}({});function XO(){return ZO.apply(this,arguments)}function ZO(){return(ZO=kt(Dt().mark((function e(){var t,n;return Dt().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 eT(){return tT.apply(this,arguments)}function tT(){return(tT=kt(Dt().mark((function e(){var t,n,r;return Dt().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 nT=t.forwardRef((({bsPrefix:e,variant:t,animation:n="border",size:r,as:o="div",className:i,...s},a)=>{const l=`${e=vn(e,"spinner")}-${n}`;return(0,fn.jsx)(o,{ref:a,...s,className:hn()(i,l,r&&`${l}-${r}`,t&&`text-${t}`)})}));nT.displayName="Spinner";const rT=nT;function oT(e){var n=e.text,r=e.helpText,o=e.onClick,i=e.enabled,s=_t((0,t.useState)(!1),2),a=s[0],l=s[1],u=function(){var e=kt(Dt().mark((function e(){return Dt().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(is,{onClick:u,disabled:!i,style:{pointerEvents:"auto",marginLeft:".5rem"},title:r},a&&t.createElement(rT,{as:"span",animation:"border",size:"sm",role:"status","aria-hidden":"true"}),n)}const iT=function(){var e=_t((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=kt(Dt().mark((function e(t,n,o){var i,s;return Dt().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?(GO(o),XO().then((function(e){r(e)}))):GO(n+s.message),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),GO(n+e.t0.message);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function a(){return(a=kt(Dt().mark((function e(){return Dt().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=kt(Dt().mark((function e(t,n){return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!o.current){e.next=3;break}return GO("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=kt(Dt().mark((function e(t,n){return Dt().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(){XO().then((function(e){r(e)}))}),[]);var p=n.length>0&&n.every((function(e){return e.status==KO.published})),d=Ge(),h=window.location.origin+"/data?preview";return t.createElement("div",null,t.createElement($O,null),t.createElement(is,{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(JS,null,n.map((function(e){return t.createElement(JS.Item,{eventKey:e.year.toString(),key:e.year},t.createElement(JS.Header,null,e.year," - ",e.status),t.createElement(JS.Body,null,t.createElement("div",{style:{marginLeft:".5rem"}},t.createElement(is,{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(is,{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(oT,{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==KO.closed,onClick:function(){return l(e.year,"open")}}),t.createElement(oT,{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==KO.open,onClick:function(){return l(e.year,"close")}}),t.createElement(oT,{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==KO.closed||e.status==KO.preview,onClick:function(){return l(e.year,"preview")}}),t.createElement(oT,{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==KO.preview||e.status==KO.published,onClick:function(){return l(e.year,"publish")}}),e.status==KO.preview&&t.createElement("span",null," Preview link: ",t.createElement("a",{href:h},h))),t.createElement(yP,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(is,{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(is,{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 sT(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 aT(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?sT(Object(n),!0).forEach((function(t){Zt(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):sT(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function lT(){return(lT=kt(Dt().mark((function e(){var t,n;return Dt().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 uT(){return(uT=kt(Dt().mark((function e(){var t,n;return Dt().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 cT=function(){var e=kt(Dt().mark((function e(t,n){var r,o,i,s;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=aT({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)}}(),pT=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 dT=function(){var e=_t((0,t.useState)([]),2),n=e[0],r=e[1],o=_t((0,t.useState)([]),2),i=o[0],s=o[1],a=(0,t.useContext)(Lt).user,l=_t((0,t.useState)({idx:-1,asc:!0}),2),u=l[0],c=l[1],p=_t((0,t.useState)([]),2),d=p[0],h=p[1];(0,t.useEffect)((function(){(function(){return lT.apply(this,arguments)})().then((function(e){r(e),h(e.sort(pT))})),function(){return uT.apply(this,arguments)}().then((function(e){s(e.sort((function(e,t){return e.name.localeCompare(t.name)})))}))}),[]),(0,t.useEffect)((function(){h(Jt(n.sort(pT)))}),[n]);for(var f=function(e,t){var o=n.findIndex((function(e){return e.id===t.id})),i=Jt(n),s=e.target.name,a={};a[s]="active"===s?e.target.checked:e.target.value,cT(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(Jt(d.reverse()));0===e?(t=pT,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=pT,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=pT,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(En,{style:{maxWidth:"90vw"}},t.createElement(Sn,null,t.createElement("h1",null," User Management Page"),t.createElement(yP,null,t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",eE({},g[0],{onClick:function(){return m(0)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Id"),t.createElement("th",eE({},g[1],{onClick:function(){return m(1)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Active"),t.createElement("th",eE({},g[2],{onClick:function(){return m(2)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Role"),t.createElement("th",eE({},g[3],{onClick:function(){return m(3)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Email"),t.createElement("th",eE({},g[4],{onClick:function(){return m(4)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Full Name"),t.createElement("th",eE({},g[5],{onClick:function(){return m(5)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"OIDC Sub"),t.createElement("th",eE({},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 hT=o(522),fT=o(755);function mT(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 gT(e,t){t.question.hideCheckboxLabels&&(t.cssClasses.root+=" hidden-checkbox-labels")}function yT(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 vT(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==JO.Unverified?(o.innerHTML="No change from previous year",o.className+=" verification-required",o.onclick=function(){"display"!=n.mode&&(e.validate(),vT(e,JO.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 bT=function(e){var n=e.surveyModel,r=(0,t.useCallback)((function(e,t){var r,o=n.verificationStatus.get(t.question.name),i=null===(r=t.question)||void 0===r?void 0:r.readOnly;o&&!i?vT(t.question,o,n):i&&function(e){var t,n=!!e.visibleIf,r='[data-name="'+e.name+'"]',o=document.querySelector(r),i=null==o?void 0:o.querySelector("h5");if(n)o.style.display="none";else{i&&(i.style.textDecoration="line-through");var s=null===(t=document.querySelector(r))||void 0===t?void 0:t.querySelector(".sv-question__content");s&&(s.style.display="none")}}(t.question)}),[n]),o=(0,t.useCallback)((function(e,t){n.verificationStatus.get(t.question.name)==JO.Unverified&&vT(t.question,JO.Edited,n)}),[n]);return 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(yT)),n.onValueChanged.hasFunc(o)||n.onValueChanged.add(o),n.onUpdateQuestionCssClasses.hasFunc(gT)||n.onUpdateQuestionCssClasses.add(gT),n.onMatrixAfterCellRender.hasFunc(mT)||n.onMatrixAfterCellRender.add(mT),t.createElement(fT.Survey,{model:n})};function CT(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 wT(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?CT(Object(n),!0).forEach((function(t){Zt(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):CT(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const xT=function(e){var n=e.surveyModel,r=e.pageNoSetter,o=_t((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(En,{className:"survey-progress"},t.createElement(Sn,null,i.map((function(e,o){return t.createElement(Tn,{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:wT({whiteSpace:"nowrap"},n.currentPageNo==o&&{fontWeight:"bold"})},e.pageTitle),t.createElement("div",{style:{display:"flex",flexWrap:"wrap"}},t.createElement("div",{style:wT(wT({},l),{},{width:"".concat(e.completionPercentage,"%"),backgroundColor:"#262261"})}),t.createElement("div",{style:wT(wT({},l),{},{width:"".concat(e.unansweredPercentage,"%"),backgroundColor:"#cdcdcd"})}))))}))))},ET=function(e){var n=e.surveyModel,r=e.surveyActions,o=e.year,i=e.nren,s=e.children,a=_t((0,t.useState)(0),2),l=a[0],u=a[1],c=_t((0,t.useState)(!1),2),p=c[0],d=c[1],h=_t((0,t.useState)(""),2),f=h[0],m=h[1],g=_t((0,t.useState)(""),2),y=g[0],v=g[1],b=(0,t.useContext)(Lt).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=kt(Dt().mark((function e(t){return Dt().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==YO.started&&P(T,"save"),p&&y==YO.started&&P(O,"saveAndStopEdit"),p&&l===n.visiblePages.length-1&&P(V,"complete"),l!==n.visiblePages.length-1&&S("Next Section",x))};return t.createElement(En,null,t.createElement(Sn,{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("div",{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(Sn,null,R()),t.createElement(Sn,{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(Sn,null,t.createElement(xT,{surveyModel:n,pageNoSetter:w}),s),t.createElement(Sn,null,R()))},PT=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)};function ST(e){var t=e[0];if(!e[1]&&(void 0===t||null==t))return!0;try{return!!new URL(t)}catch(e){return!1}}hT.Serializer.addProperty("itemvalue","customDescription:text"),hT.Serializer.addProperty("question","hideCheckboxLabels:boolean");const OT=function(e){var n=e.loadFrom,r=_t((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=_t((0,t.useState)("loading survey..."),2),c=u[0],p=u[1];hT.FunctionFactory.Instance.hasFunction("validateWebsiteUrl")||hT.FunctionFactory.Instance.register("validateWebsiteUrl",ST);var d=sr().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=kt(Dt().mark((function e(){var t,r,o,s;return Dt().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 hT.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=kt(Dt().mark((function e(t,n){var r,i,s;return Dt().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=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n="",r=function(e,t){e.verificationStatus.get(t.name)==JO.Unverified&&(""==n&&(n=t.name),t.error='Please verify that last years data is correct by editing the answer or pressing the "No change from previous year" button!')};t&&o.onValidateQuestion.add(r);var i=e();return t&&o.onValidateQuestion.remove(r),i||GO("Validation failed!"),i},E={save:(C=kt(Dt().mark((function e(){var t;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(x(o.validate.bind(o,!0,!0),!1)){e.next=4;break}return GO("Please correct the invalid fields before saving!"),e.abrupt("return");case 4:return e.next=6,w(o,"editing");case 6:t=e.sent,GO(t?"Failed saving survey: "+t:"Survey saved!");case 8:case"end":return e.stop()}}),e)}))),function(){return C.apply(this,arguments)}),complete:(b=kt(Dt().mark((function e(){var t;return Dt().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)?GO("Failed completing survey: "+t):(GO("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=kt(Dt().mark((function e(){var t;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(x(o.validate.bind(o,!0,!0),!1)){e.next=4;break}return GO("Please correct the invalid fields before saving."),e.abrupt("return");case 4:return e.next=6,w(o,"readonly");case 6:(t=e.sent)?GO("Failed saving survey: "+t):(GO("Survey saved!"),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f));case 8:case"end":return e.stop()}}),e)}))),function(){return v.apply(this,arguments)}),startEdit:(y=kt(Dt().mark((function e(){var t,n,r;return Dt().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 GO("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]);if(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,x(o.validate.bind(o,!0,!0),!1)){e.next=22;break}return GO("Some fields are invalid, please correct them."),e.abrupt("return");case 22:case"end":return e.stop()}}),e)}))),function(){return y.apply(this,arguments)}),releaseLock:(g=kt(Dt().mark((function e(){var t,n;return Dt().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 GO("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))&&GO("Page validation successful!")}};return t.createElement(En,{className:"survey-container"},t.createElement($O,null),t.createElement(PT,{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(ET,{surveyModel:o,surveyActions:E,year:a,nren:l},t.createElement(bT,{surveyModel:o})))},TT=function(){var e=sr().trackPageView,n=(0,t.useContext)(Lt).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=_t((0,t.useState)(null),2),c=u[0],p=u[1];(0,t.useEffect)((function(){var t=function(){var e=kt(Dt().mark((function e(){var t;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,eT();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=_t((0,t.useState)(),2),n=e[0],r=e[1];return(0,t.useEffect)((function(){XO().then((function(e){r(e[0])}))}),[]),t.createElement(yP,{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(En,{className:"py-5 grey-container"},t.createElement(Sn,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=cC.book_new();e.forEach((function(e){var n=cC.json_to_sheet(e.data);e.meta&&function(e,t,n){for(var r,o=cC.decode_range(null!==(r=e["!ref"])&&void 0!==r?r:""),i=-1,s=o.s.c;s<=o.e.c;s++){var a=e[cC.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=cC.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),cC.book_append_sheet(t,n,e.name)}));for(var n=eC(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 _T,VT=(_T=[{path:"/budget",element:t.createElement(DE,null)},{path:"/funding",element:t.createElement(mP,null)},{path:"/data/employment",element:t.createElement(SP,null)},{path:"/data/traffic-ratio",element:t.createElement(ES,null)},{path:"/data/roles",element:t.createElement(SP,{roles:!0})},{path:"/employee-count",element:t.createElement(TP,null)},{path:"/charging",element:t.createElement(bP,null)},{path:"/suborganisations",element:t.createElement(RP,null)},{path:"/parentorganisation",element:t.createElement(IP,null)},{path:"/ec-projects",element:t.createElement(kP,null)},{path:"/policy",element:t.createElement(AP,null)},{path:"/traffic-volume",element:t.createElement(wS,null)},{path:"/data",element:t.createElement(kr,null)},{path:"/institutions-urls",element:t.createElement($P,null)},{path:"/connected-proportion",element:t.createElement(KP,{page:pn.ConnectedProportion})},{path:"/connectivity-level",element:t.createElement(KP,{page:pn.ConnectivityLevel})},{path:"/connectivity-growth",element:t.createElement(KP,{page:pn.ConnectivityGrowth})},{path:"/connection-carrier",element:t.createElement(KP,{page:pn.ConnectionCarrier})},{path:"/connectivity-load",element:t.createElement(KP,{page:pn.ConnectivityLoad})},{path:"/commercial-charging-level",element:t.createElement(KP,{page:pn.CommercialChargingLevel})},{path:"/commercial-connectivity",element:t.createElement(KP,{page:pn.CommercialConnectivity})},{path:"/network-services",element:t.createElement(TS,{category:cn.network_services})},{path:"/isp-support-services",element:t.createElement(TS,{category:cn.isp_support})},{path:"/security-services",element:t.createElement(TS,{category:cn.security})},{path:"/identity-services",element:t.createElement(TS,{category:cn.identity})},{path:"/collaboration-services",element:t.createElement(TS,{category:cn.collaboration})},{path:"/multimedia-services",element:t.createElement(TS,{category:cn.multimedia})},{path:"/storage-and-hosting-services",element:t.createElement(TS,{category:cn.storage_and_hosting})},{path:"/professional-services",element:t.createElement(TS,{category:cn.professional_services})},{path:"/fibre-light",element:t.createElement(XP,null)},{path:"/monitoring-tools",element:t.createElement(ZP,null)},{path:"/pert-team",element:t.createElement(eS,null)},{path:"/passive-monitoring",element:t.createElement(tS,null)},{path:"/alien-wave",element:t.createElement(nS,null)},{path:"/alien-wave-internal",element:t.createElement(rS,null)},{path:"/ops-automation",element:t.createElement(oS,null)},{path:"/network-automation",element:t.createElement(iS,null)},{path:"/traffic-stats",element:t.createElement(sS,null)},{path:"/weather-map",element:t.createElement(aS,null)},{path:"/network-map",element:t.createElement(lS,null)},{path:"/nfv",element:t.createElement(uS,null)},{path:"/certificate-provider",element:t.createElement(cS,null)},{path:"/siem-vendors",element:t.createElement(pS,null)},{path:"/capacity-largest-link",element:t.createElement(hS,null)},{path:"/capacity-core-ip",element:t.createElement(mS,null)},{path:"/non-rne-peers",element:t.createElement(yS,null)},{path:"/iru-duration",element:t.createElement(bS,null)},{path:"/audits",element:t.createElement(DP,null)},{path:"/business-continuity",element:t.createElement(NP,null)},{path:"/crisis-management",element:t.createElement(LP,null)},{path:"/crisis-exercise",element:t.createElement(MP,null)},{path:"/security-control",element:t.createElement(jP,null)},{path:"/services-offered",element:t.createElement(qP,null)},{path:"/service-management-framework",element:t.createElement(zP,null)},{path:"/service-level-targets",element:t.createElement(QP,null)},{path:"/corporate-strategy",element:t.createElement(HP,null)},{path:"survey/admin/surveys",element:t.createElement(iT,null)},{path:"survey/admin/users",element:t.createElement(dT,null)},{path:"survey/admin/inspect/:year",element:t.createElement(OT,{loadFrom:"/api/response/inspect/"})},{path:"survey/admin/try/:year",element:t.createElement(OT,{loadFrom:"/api/response/try/"})},{path:"survey/response/:year/:nren",element:t.createElement(OT,{loadFrom:"/api/response/load/"})},{path:"survey/*",element:t.createElement(TT,null)},{path:"*",element:t.createElement(ar,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:_T,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 RT=function(){return t.createElement("div",{className:"app"},t.createElement(un,null,t.createElement(Vn,null),t.createElement(bt,{router:VT}),t.createElement(ss,null)),t.createElement(kn,null))};var IT=document.getElementById("root");(0,r.H)(IT).render(t.createElement(t.StrictMode,null,t.createElement(RT,null)))})()})(); \ No newline at end of file +`,$O=({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)(bO);(0,t.useEffect)((()=>(vO.push(r),()=>{let e=vO.indexOf(r);e>-1&&vO.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)||wO[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((()=>EO.dismiss(t.id)),n);t.visible&&EO.dismiss(t.id)}));return()=>{t.forEach((e=>e&&clearTimeout(e)))}}),[n,r]);let o=(0,t.useCallback)((()=>{r&&CO({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:PO,startPause:SO,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:fO()?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(UO,{id:r.id,key:r.id,onHeightUpdate:u.updateHeight,className:r.visible?WO:"",style:a},"custom"===r.type?dO(r.message,r):i?i(r):t.createElement(QO,{toast:r,position:s}))})))},GO=EO,JO=function(e){return e.Unverified="unverified",e.Verified="verified",e.Edited="edited",e}({}),YO=function(e){return e.not_started="not started",e.started="started",e.completed="completed",e}({}),KO=function(e){return e.closed="closed",e.open="open",e.preview="preview",e.published="published",e}({});function XO(){return ZO.apply(this,arguments)}function ZO(){return(ZO=kt(Dt().mark((function e(){var t,n;return Dt().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 eT(){return tT.apply(this,arguments)}function tT(){return(tT=kt(Dt().mark((function e(){var t,n,r;return Dt().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 nT=t.forwardRef((({bsPrefix:e,variant:t,animation:n="border",size:r,as:o="div",className:i,...s},a)=>{const l=`${e=vn(e,"spinner")}-${n}`;return(0,fn.jsx)(o,{ref:a,...s,className:hn()(i,l,r&&`${l}-${r}`,t&&`text-${t}`)})}));nT.displayName="Spinner";const rT=nT;function oT(e){var n=e.text,r=e.helpText,o=e.onClick,i=e.enabled,s=_t((0,t.useState)(!1),2),a=s[0],l=s[1],u=function(){var e=kt(Dt().mark((function e(){return Dt().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(is,{onClick:u,disabled:!i,style:{pointerEvents:"auto",marginLeft:".5rem"},title:r},a&&t.createElement(rT,{as:"span",animation:"border",size:"sm",role:"status","aria-hidden":"true"}),n)}const iT=function(){var e=_t((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=kt(Dt().mark((function e(t,n,o){var i,s;return Dt().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?(GO(o),XO().then((function(e){r(e)}))):GO(n+s.message),e.next=13;break;case 10:e.prev=10,e.t0=e.catch(0),GO(n+e.t0.message);case 13:case"end":return e.stop()}}),e,null,[[0,10]])})))).apply(this,arguments)}function a(){return(a=kt(Dt().mark((function e(){return Dt().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=kt(Dt().mark((function e(t,n){return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!o.current){e.next=3;break}return GO("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=kt(Dt().mark((function e(t,n){return Dt().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(){XO().then((function(e){r(e)}))}),[]);var p=n.length>0&&n.every((function(e){return e.status==KO.published})),d=Ge(),h=window.location.origin+"/data?preview";return t.createElement("div",null,t.createElement($O,null),t.createElement(is,{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(JS,null,n.map((function(e){return t.createElement(JS.Item,{eventKey:e.year.toString(),key:e.year},t.createElement(JS.Header,null,e.year," - ",e.status),t.createElement(JS.Body,null,t.createElement("div",{style:{marginLeft:".5rem"}},t.createElement(is,{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(is,{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(oT,{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==KO.closed,onClick:function(){return l(e.year,"open")}}),t.createElement(oT,{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==KO.open,onClick:function(){return l(e.year,"close")}}),t.createElement(oT,{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==KO.closed||e.status==KO.preview,onClick:function(){return l(e.year,"preview")}}),t.createElement(oT,{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==KO.preview||e.status==KO.published,onClick:function(){return l(e.year,"publish")}}),e.status==KO.preview&&t.createElement("span",null," Preview link: ",t.createElement("a",{href:h},h))),t.createElement(yP,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(is,{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(is,{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 sT(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 aT(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?sT(Object(n),!0).forEach((function(t){Zt(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):sT(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function lT(){return(lT=kt(Dt().mark((function e(){var t,n;return Dt().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 uT(){return(uT=kt(Dt().mark((function e(){var t,n;return Dt().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 cT=function(){var e=kt(Dt().mark((function e(t,n){var r,o,i,s;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=aT({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)}}(),pT=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 dT=function(){var e=_t((0,t.useState)([]),2),n=e[0],r=e[1],o=_t((0,t.useState)([]),2),i=o[0],s=o[1],a=(0,t.useContext)(Lt).user,l=_t((0,t.useState)({idx:-1,asc:!0}),2),u=l[0],c=l[1],p=_t((0,t.useState)([]),2),d=p[0],h=p[1];(0,t.useEffect)((function(){(function(){return lT.apply(this,arguments)})().then((function(e){r(e),h(e.sort(pT))})),function(){return uT.apply(this,arguments)}().then((function(e){s(e.sort((function(e,t){return e.name.localeCompare(t.name)})))}))}),[]),(0,t.useEffect)((function(){h(Jt(n.sort(pT)))}),[n]);for(var f=function(e,t){var o=n.findIndex((function(e){return e.id===t.id})),i=Jt(n),s=e.target.name,a={};a[s]="active"===s?e.target.checked:e.target.value,cT(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(Jt(d.reverse()));0===e?(t=pT,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=pT,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=pT,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(En,{style:{maxWidth:"90vw"}},t.createElement(Sn,null,t.createElement("h1",null," User Management Page"),t.createElement(yP,null,t.createElement("thead",null,t.createElement("tr",null,t.createElement("th",eE({},g[0],{onClick:function(){return m(0)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Id"),t.createElement("th",eE({},g[1],{onClick:function(){return m(1)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Active"),t.createElement("th",eE({},g[2],{onClick:function(){return m(2)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Role"),t.createElement("th",eE({},g[3],{onClick:function(){return m(3)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Email"),t.createElement("th",eE({},g[4],{onClick:function(){return m(4)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"Full Name"),t.createElement("th",eE({},g[5],{onClick:function(){return m(5)},className:"pt-3 sortable",style:{border:"1px solid #ddd"}}),"OIDC Sub"),t.createElement("th",eE({},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 hT=o(522),fT=o(755);function mT(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 gT(e,t){t.question.hideCheckboxLabels&&(t.cssClasses.root+=" hidden-checkbox-labels")}function yT(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 vT(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==JO.Unverified?(o.innerHTML="No change from previous year",o.className+=" verification-required",o.onclick=function(){"display"!=n.mode&&(e.validate(),vT(e,JO.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 bT=function(e){var n=e.surveyModel,r=(0,t.useCallback)((function(e,t){var r,o=n.verificationStatus.get(t.question.name),i=null===(r=t.question)||void 0===r?void 0:r.readOnly;o&&!i?vT(t.question,o,n):i&&function(e){var t,n=!!e.visibleIf,r='[data-name="'+e.name+'"]',o=document.querySelector(r),i=null==o?void 0:o.querySelector("h5");if(n)o.style.display="none";else{i&&(i.style.textDecoration="line-through");var s=null===(t=document.querySelector(r))||void 0===t?void 0:t.querySelector(".sv-question__content");s&&(s.style.display="none")}}(t.question)}),[n]),o=(0,t.useCallback)((function(e,t){n.verificationStatus.get(t.question.name)==JO.Unverified&&vT(t.question,JO.Edited,n)}),[n]);return 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(yT)),n.onValueChanged.hasFunc(o)||n.onValueChanged.add(o),n.onUpdateQuestionCssClasses.hasFunc(gT)||n.onUpdateQuestionCssClasses.add(gT),n.onMatrixAfterCellRender.hasFunc(mT)||n.onMatrixAfterCellRender.add(mT),t.createElement(fT.Survey,{model:n})};function CT(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 wT(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?CT(Object(n),!0).forEach((function(t){Zt(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):CT(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const xT=function(e){var n=e.surveyModel,r=e.pageNoSetter,o=_t((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(En,{className:"survey-progress"},t.createElement(Sn,null,i.map((function(e,o){return t.createElement(Tn,{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:wT({whiteSpace:"nowrap"},n.currentPageNo==o&&{fontWeight:"bold"})},e.pageTitle),t.createElement("div",{style:{display:"flex",flexWrap:"wrap"}},t.createElement("div",{style:wT(wT({},l),{},{width:"".concat(e.completionPercentage,"%"),backgroundColor:"#262261"})}),t.createElement("div",{style:wT(wT({},l),{},{width:"".concat(e.unansweredPercentage,"%"),backgroundColor:"#cdcdcd"})}))))}))))},ET=function(e){var n=e.surveyModel,r=e.surveyActions,o=e.year,i=e.nren,s=e.children,a=_t((0,t.useState)(0),2),l=a[0],u=a[1],c=_t((0,t.useState)(!1),2),p=c[0],d=c[1],h=_t((0,t.useState)(""),2),f=h[0],m=h[1],g=_t((0,t.useState)(""),2),y=g[0],v=g[1],b=(0,t.useContext)(Lt).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=kt(Dt().mark((function e(t){return Dt().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==YO.started&&P(T,"save"),p&&y==YO.started&&P(O,"saveAndStopEdit"),p&&l===n.visiblePages.length-1&&P(V,"complete"),l!==n.visiblePages.length-1&&S("Next Section",x))};return t.createElement(En,null,t.createElement(Sn,{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("div",{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(Sn,null,R()),t.createElement(Sn,{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(Sn,null,t.createElement(xT,{surveyModel:n,pageNoSetter:w}),s),t.createElement(Sn,null,R()))},PT=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)};function ST(e){var t=e[0];if(!e[1]&&(void 0===t||null==t))return!0;try{return!!new URL(t)}catch(e){return!1}}hT.Serializer.addProperty("itemvalue","customDescription:text"),hT.Serializer.addProperty("question","hideCheckboxLabels:boolean");const OT=function(e){var n=e.loadFrom,r=_t((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=_t((0,t.useState)("loading survey..."),2),c=u[0],p=u[1];hT.FunctionFactory.Instance.hasFunction("validateWebsiteUrl")||hT.FunctionFactory.Instance.register("validateWebsiteUrl",ST);var d=sr().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=kt(Dt().mark((function e(){var t,r,o,s;return Dt().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 hT.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=kt(Dt().mark((function e(t,n){var r,i,s;return Dt().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=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n="",r=function(e,t){e.verificationStatus.get(t.name)==JO.Unverified&&(""==n&&(n=t.name),t.error='Please verify that last years data is correct by editing the answer or pressing the "No change from previous year" button!')};t&&o.onValidateQuestion.add(r);var i=e();return t&&o.onValidateQuestion.remove(r),i||GO("Validation failed!"),i},E={save:(C=kt(Dt().mark((function e(){var t;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(x(o.validate.bind(o,!0,!0),!1)){e.next=4;break}return GO("Please correct the invalid fields before saving!"),e.abrupt("return");case 4:return e.next=6,w(o,"editing");case 6:t=e.sent,GO(t?"Failed saving survey: "+t:"Survey saved!");case 8:case"end":return e.stop()}}),e)}))),function(){return C.apply(this,arguments)}),complete:(b=kt(Dt().mark((function e(){var t;return Dt().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)?GO("Failed completing survey: "+t):(GO("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=kt(Dt().mark((function e(){var t;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(x(o.validate.bind(o,!0,!0),!1)){e.next=4;break}return GO("Please correct the invalid fields before saving."),e.abrupt("return");case 4:return e.next=6,w(o,"readonly");case 6:(t=e.sent)?GO("Failed saving survey: "+t):(GO("Survey saved!"),removeEventListener("beforeunload",h,{capture:!0}),removeEventListener("pagehide",f));case 8:case"end":return e.stop()}}),e)}))),function(){return v.apply(this,arguments)}),startEdit:(y=kt(Dt().mark((function e(){var t,n,r;return Dt().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 GO("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]);if(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,x(o.validate.bind(o,!0,!0),!1)){e.next=22;break}return GO("Some fields are invalid, please correct them."),e.abrupt("return");case 22:case"end":return e.stop()}}),e)}))),function(){return y.apply(this,arguments)}),releaseLock:(g=kt(Dt().mark((function e(){var t,n;return Dt().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 GO("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))&&GO("Page validation successful!")}};return t.createElement(En,{className:"survey-container"},t.createElement($O,null),t.createElement(PT,{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(ET,{surveyModel:o,surveyActions:E,year:a,nren:l},t.createElement(bT,{surveyModel:o})))},TT=function(){var e=sr().trackPageView,n=(0,t.useContext)(Lt).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=_t((0,t.useState)(null),2),c=u[0],p=u[1];(0,t.useEffect)((function(){var t=function(){var e=kt(Dt().mark((function e(){var t;return Dt().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,eT();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=_t((0,t.useState)(),2),n=e[0],r=e[1];return(0,t.useEffect)((function(){XO().then((function(e){r(e[0])}))}),[]),t.createElement(yP,{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(En,{className:"py-5 grey-container"},t.createElement(Sn,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=cC.book_new();e.forEach((function(e){var n=cC.json_to_sheet(e.data);e.meta&&function(e,t,n){for(var r,o=cC.decode_range(null!==(r=e["!ref"])&&void 0!==r?r:""),i=-1,s=o.s.c;s<=o.e.c;s++){var a=e[cC.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=cC.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),cC.book_append_sheet(t,n,e.name)}));for(var n=eC(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 _T,VT=(_T=[{path:"/budget",element:t.createElement(DE,null)},{path:"/funding",element:t.createElement(mP,null)},{path:"/data/employment",element:t.createElement(SP,{key:"staffgraph"})},{path:"/data/traffic-ratio",element:t.createElement(ES,null)},{path:"/data/roles",element:t.createElement(SP,{roles:!0,key:"staffgraphroles"})},{path:"/employee-count",element:t.createElement(TP,null)},{path:"/charging",element:t.createElement(bP,null)},{path:"/suborganisations",element:t.createElement(RP,null)},{path:"/parentorganisation",element:t.createElement(IP,null)},{path:"/ec-projects",element:t.createElement(kP,null)},{path:"/policy",element:t.createElement(AP,null)},{path:"/traffic-volume",element:t.createElement(wS,null)},{path:"/data",element:t.createElement(kr,null)},{path:"/institutions-urls",element:t.createElement($P,null)},{path:"/connected-proportion",element:t.createElement(KP,{page:pn.ConnectedProportion,key:pn.ConnectedProportion})},{path:"/connectivity-level",element:t.createElement(KP,{page:pn.ConnectivityLevel,key:pn.ConnectivityLevel})},{path:"/connectivity-growth",element:t.createElement(KP,{page:pn.ConnectivityGrowth,key:pn.ConnectivityGrowth})},{path:"/connection-carrier",element:t.createElement(KP,{page:pn.ConnectionCarrier,key:pn.ConnectionCarrier})},{path:"/connectivity-load",element:t.createElement(KP,{page:pn.ConnectivityLoad,key:pn.ConnectivityLoad})},{path:"/commercial-charging-level",element:t.createElement(KP,{page:pn.CommercialChargingLevel,key:pn.CommercialChargingLevel})},{path:"/commercial-connectivity",element:t.createElement(KP,{page:pn.CommercialConnectivity,key:pn.CommercialConnectivity})},{path:"/network-services",element:t.createElement(TS,{category:cn.network_services,key:cn.network_services})},{path:"/isp-support-services",element:t.createElement(TS,{category:cn.isp_support,key:cn.isp_support})},{path:"/security-services",element:t.createElement(TS,{category:cn.security,key:cn.security})},{path:"/identity-services",element:t.createElement(TS,{category:cn.identity,key:cn.identity})},{path:"/collaboration-services",element:t.createElement(TS,{category:cn.collaboration,key:cn.collaboration})},{path:"/multimedia-services",element:t.createElement(TS,{category:cn.multimedia,key:cn.multimedia})},{path:"/storage-and-hosting-services",element:t.createElement(TS,{category:cn.storage_and_hosting,key:cn.storage_and_hosting})},{path:"/professional-services",element:t.createElement(TS,{category:cn.professional_services,key:cn.professional_services})},{path:"/fibre-light",element:t.createElement(XP,null)},{path:"/monitoring-tools",element:t.createElement(ZP,null)},{path:"/pert-team",element:t.createElement(eS,null)},{path:"/passive-monitoring",element:t.createElement(tS,null)},{path:"/alien-wave",element:t.createElement(nS,null)},{path:"/alien-wave-internal",element:t.createElement(rS,null)},{path:"/ops-automation",element:t.createElement(oS,null)},{path:"/network-automation",element:t.createElement(iS,null)},{path:"/traffic-stats",element:t.createElement(sS,null)},{path:"/weather-map",element:t.createElement(aS,null)},{path:"/network-map",element:t.createElement(lS,null)},{path:"/nfv",element:t.createElement(uS,null)},{path:"/certificate-provider",element:t.createElement(cS,null)},{path:"/siem-vendors",element:t.createElement(pS,null)},{path:"/capacity-largest-link",element:t.createElement(hS,null)},{path:"/capacity-core-ip",element:t.createElement(mS,null)},{path:"/non-rne-peers",element:t.createElement(yS,null)},{path:"/iru-duration",element:t.createElement(bS,null)},{path:"/audits",element:t.createElement(DP,null)},{path:"/business-continuity",element:t.createElement(NP,null)},{path:"/crisis-management",element:t.createElement(LP,null)},{path:"/crisis-exercise",element:t.createElement(MP,null)},{path:"/security-control",element:t.createElement(jP,null)},{path:"/services-offered",element:t.createElement(qP,null)},{path:"/service-management-framework",element:t.createElement(zP,null)},{path:"/service-level-targets",element:t.createElement(QP,null)},{path:"/corporate-strategy",element:t.createElement(HP,null)},{path:"survey/admin/surveys",element:t.createElement(iT,null)},{path:"survey/admin/users",element:t.createElement(dT,null)},{path:"survey/admin/inspect/:year",element:t.createElement(OT,{loadFrom:"/api/response/inspect/"})},{path:"survey/admin/try/:year",element:t.createElement(OT,{loadFrom:"/api/response/try/"})},{path:"survey/response/:year/:nren",element:t.createElement(OT,{loadFrom:"/api/response/load/"})},{path:"survey/*",element:t.createElement(TT,null)},{path:"*",element:t.createElement(ar,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:_T,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 RT=function(){return t.createElement("div",{className:"app"},t.createElement(un,null,t.createElement(Vn,null),t.createElement(bt,{router:VT}),t.createElement(ss,null)),t.createElement(kn,null))};var IT=document.getElementById("root");(0,r.H)(IT).render(t.createElement(t.StrictMode,null,t.createElement(RT,null)))})()})(); \ No newline at end of file diff --git a/setup.py b/setup.py index 04bf83c0ce2694e2d90893f2dd4b79ae5f1bcd4d..ad9b837dbe65d34c3a43da27d860f9790b460c73 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='compendium-v2', - version="0.69", + version="0.70", author='GEANT', author_email='swd@geant.org', description='Flask and React project for displaying '