/* INCLUDE: "common.jsx" */ const nearDevGovGigsContractAccountId = props.nearDevGovGigsContractAccountId || (context.widgetSrc ?? "devgovgigs.near").split("/", 1)[0]; const nearDevGovGigsWidgetsAccountId = props.nearDevGovGigsWidgetsAccountId || (context.widgetSrc ?? "devgovgigs.near").split("/", 1)[0]; function widget(widgetName, widgetProps, key) { widgetProps = { ...widgetProps, nearDevGovGigsContractAccountId: props.nearDevGovGigsContractAccountId, nearDevGovGigsWidgetsAccountId: props.nearDevGovGigsWidgetsAccountId, referral: props.referral, }; return ( <Widget src={`${nearDevGovGigsWidgetsAccountId}/widget/gigs-board.${widgetName}`} props={widgetProps} key={key} /> ); } function href(widgetName, linkProps) { linkProps = { ...linkProps }; if (props.nearDevGovGigsContractAccountId) { linkProps.nearDevGovGigsContractAccountId = props.nearDevGovGigsContractAccountId; } if (props.nearDevGovGigsWidgetsAccountId) { linkProps.nearDevGovGigsWidgetsAccountId = props.nearDevGovGigsWidgetsAccountId; } if (props.referral) { linkProps.referral = props.referral; } const linkPropsQuery = Object.entries(linkProps) .map(([key, value]) => `${key}=${value}`) .join("&"); return `/#/${nearDevGovGigsWidgetsAccountId}/widget/gigs-board.pages.${widgetName}${ linkPropsQuery ? "?" : "" }${linkPropsQuery}`; } const WrapperWidget = ({ children, id }) => { const storageType = "local"; // Hard-coded storage type // This function handles the state change for the children widgets const handleStateChange = (key, value) => { // Use the unique identifier to create a unique storage key const storageKey = `${id}_${key}`; console.log(`Setting value for ${storageKey}: `, value); // Console log added here // Update the local storage with the new state localStorage.setItem(storageKey, JSON.stringify(value)); console.log(`State saved in local storage for ${storageKey}`); // Console log added here }; // This function initializes the state of the children widgets const initState = (key, defaultValue) => { // Use the unique identifier to create a unique storage key const storageKey = `${id}_${key}`; let storedValue = localStorage.getItem(storageKey); console.log( `Retrieved value from local storage for ${storageKey}: `, storedValue ); // Console log added here if (storedValue) { try { return JSON.parse(storedValue); } catch (e) { console.error("Error parsing JSON from storage", e); } } return defaultValue; }; // Render the children widgets and pass the state management functions as props return React.Children.map(children, (child) => child && typeof child === "object" ? React.cloneElement(child, { handleStateChange, initState }) : child ); }; /* END_INCLUDE: "common.jsx" */ const access_info = Near.view(nearDevGovGigsContractAccountId, "get_access_control_info") ?? null; const root_members = Near.view(nearDevGovGigsContractAccountId, "get_root_members") ?? null; if (!access_info || !root_members) { return <div>Loading...</div>; } const pageContent = ( <div> {widget("components.teams.LabelsPermissions", { rules: access_info.rules_list, })} {Object.keys(root_members).map((member) => widget( "components.teams.TeamInfo", { member, members_list: access_info.members_list }, member ) )} </div> ); return widget("components.layout.Page", { children: pageContent, });