PHP 8.2.31
Preview: ai-chat.js Size: 1.14 KB
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/HelpCenter/state/ai-chat.js

import { create } from 'zustand';
import { createJSONStorage, devtools, persist } from 'zustand/middleware';

const initialState = {
	experienceLevel: 'beginner',
	currentQuestion: undefined,
};

const state = (set, get) => ({
	history: [],
	...initialState,
	setCurrentQuestion: (currentQuestion) => set({ currentQuestion }),
	setExperienceLevel: (experienceLevel) => set({ experienceLevel }),
	addHistory: (question) =>
		set((state) => ({
			// Save the latest 10
			history: [
				question,
				...state.history
					.filter(({ answerId }) => answerId !== question.answerId)
					.slice(0, 9),
			],
		})),
	hasHistory: () => get().history.length > 0,
	clearHistory: () => set({ history: [] }),
	deleteFromHistory: (question) =>
		set((state) => ({
			history: state.history.filter(
				({ answerId: id }) => id !== question.answerId,
			),
		})),
	historyCount: () => get().history.length,
	reset: () => set({ ...initialState }),
});

export const useAIChatStore = create(
	persist(devtools(state, { name: 'Extendify Chat History' }), {
		name: `extendify-chat-history-${window.extSharedData.siteId}`,
		storage: createJSONStorage(() => localStorage),
	}),
);

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).