# extendify/3.1.6/src/PageCreator/state/user.js

Extendify, version 3.1.6. 35 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.6/code/src/PageCreator/state/user.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.6/raw/src/PageCreator/state/user.js
- Modified: 2026-02-18T22:27:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.6/code/src/PageCreator/state/user.js#L10-L20`.

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

const storage = {
	getItem: async () => await apiFetch({ path: '/wp/v2/users/me' }),
	setItem: async (_name, value) =>
		await apiFetch({
			path: '/wp/v2/users/me',
			method: 'PUT',
			data: { extendify_page_creator_user: value },
		}),
};

export const useUserStore = create(
	persist(
		(set, get) => ({
			openOnNewPage: true,
			allowsInstallingPlugins: true,
			updateUserOption: (key, value) => {
				if (!Object.keys(get()).includes(key)) return;
				set({ [key]: value });
			},
			...(safeParseJson(window.extPageCreator?.userInfo)?.state ?? {}),
		}),
		{
			name: 'extendify_page_creator_user',
			storage: createJSONStorage(() => storage),
			partialize: (state) => ({ ...state, ready: false }),
			skipHydration: true,
		},
	),
);

```
