PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/ngamzghe/public_html/wp-content/plugins/extendify/src/Shared/state/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : /home/ngamzghe/public_html/wp-content/plugins/extendify/src/Shared/state/site-profile.js |
import apiFetch from '@wordpress/api-fetch';
import { safeParseJson } from '@shared/lib/parsing';
import { create } from 'zustand';
import { devtools, persist, createJSONStorage } from 'zustand/middleware';
const generalSiteProfile =
safeParseJson(window.extSharedData.userData.userSelectionData)?.state
?.siteProfile || {};
const initialState = {
siteProfile: {
aiDescription:
window.extSharedData?.siteProfile?.aiDescription ||
generalSiteProfile?.aiDescription,
aiSiteType: generalSiteProfile?.aiSiteType,
aiSiteCategory: generalSiteProfile?.aiSiteCategory,
aiKeywords: generalSiteProfile?.aiKeywords,
},
};
const state = (set) => ({
...initialState,
setSiteProfile(data) {
const siteProfile = Object.assign(
{
aiSiteType: initialState?.siteProfile?.aiSiteType,
aiSiteCategory: initialState?.siteProfile?.aiSiteCategory,
aiDescription: initialState?.siteProfile?.aiDescription,
aiKeywords: initialState?.siteProfile?.aiKeywords,
},
data || {},
);
set({ siteProfile });
},
resetState() {
set(initialState);
},
});
const path = '/extendify/v1/shared/site-profile';
const storage = {
getItem: async () => await apiFetch({ path }),
setItem: async (_name, state) => {
await apiFetch({
path,
method: 'POST',
data: { value: safeParseJson(state)?.state?.siteProfile || {} },
});
},
};
export const useSiteProfileStore = create(
persist(devtools(state, { name: 'Extendify Site Profile' }), {
storage: createJSONStorage(() => storage),
skipHydration: false,
}),
state,
);