PHP 8.2.31
Preview: user-selections.js Size: 985 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/HelpCenter/state/user-selections.js

import { safeParseJson } from '@shared/lib/parsing';
import apiFetch from '@wordpress/api-fetch';
import { create } from 'zustand';
import { createJSONStorage, devtools, persist } from 'zustand/middleware';

const startingState = {
	siteType: {
		slug: '0default',
		name: 'Default',
	},
	siteInformation: {
		title: undefined,
	},
	style: null,
	pages: [],
	sitePlugins: [],
	// initialize the state with default values
	...(safeParseJson(window.extSharedData.launchDataLegacy)?.state ?? {}),
};

const state = () => ({
	...startingState,
	// Add methods here
});

const path = '/extendify/v1/shared/user-selections-data';
const storage = {
	getItem: async () => await apiFetch({ path }),
	setItem: async (_name, state) =>
		await apiFetch({ path, method: 'POST', data: { state } }),
};

export const useUserSelectionStore = create(
	persist(devtools(state, { name: 'Extendify User Selections' }), {
		storage: createJSONStorage(() => storage),
		skipHydration: true,
	}),
	state,
);

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
1.14 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
686 B lrw-r--r-- 2025-03-13 21:10:44
Edit Download
2.22 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
6.51 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
985 B lrw-r--r-- 2026-02-27 04:48:52
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).