| 1 |
import create from 'zustand' |
| 2 |
import { useGlobalStore } from './GlobalState' |
| 3 |
import { useUserStore } from './User' |
| 4 |
import { useTaxonomyStore } from './Taxonomies' |
| 5 |
|
| 6 |
const defaultCategoryForType = (tax) => |
| 7 |
tax === 'siteType' |
| 8 |
? { slug: '', title: 'Unknown' } |
| 9 |
: { slug: '', title: 'Featured' } |
| 10 |
|
| 11 |
export const useTemplatesStore = create((set, get) => ({ |
| 12 |
templates: [], |
| 13 |
skipNextFetch: false, |
| 14 |
fetchToken: null, |
| 15 |
taxonomyDefaultState: {}, |
| 16 |
nextPage: '', |
| 17 |
searchParams: { |
| 18 |
taxonomies: {}, |
| 19 |
type: 'pattern', |
| 20 |
}, |
| 21 |
initTemplateData() { |
| 22 |
set({ activeTemplate: {} }) |
| 23 |
get().setupDefaultTaxonomies() |
| 24 |
get().updateType(useGlobalStore.getState().currentType) |
| 25 |
}, |
| 26 |
appendTemplates: (templates) => |
| 27 |
set({ |
| 28 |
templates: [ |
| 29 |
...new Map( |
| 30 |
[...get().templates, ...templates].map((item) => [ |
| 31 |
item.id, |
| 32 |
item, |
| 33 |
]), |
| 34 |
).values(), |
| 35 |
], |
| 36 |
}), |
| 37 |
setupDefaultTaxonomies: () => { |
| 38 |
const taxonomies = useTaxonomyStore.getState().taxonomies |
| 39 |
let taxonomyDefaultState = Object.entries(taxonomies).reduce( |
| 40 |
(state, current) => ( |
| 41 |
(state[current[0]] = defaultCategoryForType(current[0])), state |
| 42 |
), |
| 43 |
{}, |
| 44 |
) |
| 45 |
const tax = {} |
| 46 |
let preferredTax = |
| 47 |
useUserStore.getState().preferredOptions?.taxonomies ?? {} |
| 48 |
|
| 49 |
// Check for old site type and set it if it exists |
| 50 |
if (preferredTax.tax_categories) { |
| 51 |
preferredTax = get().getLegacySiteType(preferredTax, taxonomies) |
| 52 |
} |
| 53 |
taxonomyDefaultState = Object.assign( |
| 54 |
{}, |
| 55 |
taxonomyDefaultState, |
| 56 |
|
| 57 |
// Override with the user's preferred taxonomies |
| 58 |
preferredTax, |
| 59 |
|
| 60 |
// Override with the global state |
| 61 |
useGlobalStore.getState()?.currentTaxonomies ?? {}, |
| 62 |
) |
| 63 |
|
| 64 |
tax.taxonomies = Object.assign({}, taxonomyDefaultState) |
| 65 |
|
| 66 |
set({ |
| 67 |
taxonomyDefaultState: taxonomyDefaultState, |
| 68 |
searchParams: { |
| 69 |
...Object.assign(get().searchParams, tax), |
| 70 |
}, |
| 71 |
}) |
| 72 |
}, |
| 73 |
updateTaxonomies: (params) => { |
| 74 |
const data = {} |
| 75 |
data.taxonomies = Object.assign( |
| 76 |
{}, |
| 77 |
get().searchParams.taxonomies, |
| 78 |
params, |
| 79 |
) |
| 80 |
if (data?.taxonomies?.siteType) { |
| 81 |
// This is what the user "prefers", which may be used outside the library |
| 82 |
// which is persisted to the database, where as the global library state is in local storage |
| 83 |
useUserStore |
| 84 |
.getState() |
| 85 |
.updatePreferredOption('siteType', data?.taxonomies?.siteType) |
| 86 |
} |
| 87 |
useGlobalStore.getState().updateCurrentTaxonomies(data?.taxonomies) |
| 88 |
get().updateSearchParams(data) |
| 89 |
}, |
| 90 |
updateType(type) { |
| 91 |
useGlobalStore.getState().updateCurrentType(type) |
| 92 |
get().updateSearchParams({ type }) |
| 93 |
}, |
| 94 |
updateSearchParams: (params) => { |
| 95 |
// If taxonomies are set to {}, lets use the default |
| 96 |
if (params?.taxonomies && !Object.keys(params.taxonomies).length) { |
| 97 |
params.taxonomies = get().taxonomyDefaultState |
| 98 |
} |
| 99 |
|
| 100 |
const searchParams = Object.assign({}, get().searchParams, params) |
| 101 |
|
| 102 |
// If the params are the same then don't update |
| 103 |
if ( |
| 104 |
JSON.stringify(searchParams) !== JSON.stringify(get().searchParams) |
| 105 |
) { |
| 106 |
set({ |
| 107 |
templates: [], |
| 108 |
nextPage: '', |
| 109 |
searchParams, |
| 110 |
}) |
| 111 |
} |
| 112 |
}, |
| 113 |
getLegacySiteType: (preferredTax, taxonomies) => { |
| 114 |
const oldSiteType = taxonomies.siteType.find((t) => |
| 115 |
[t.slug, t?.title].includes(preferredTax.tax_categories), |
| 116 |
) |
| 117 |
// TODO: This is kind of wonky, as we keep track of the state in two places. |
| 118 |
useUserStore.getState().updatePreferredSiteType(oldSiteType) |
| 119 |
get().updateTaxonomies({ siteType: oldSiteType }) |
| 120 |
// Remove the legacy term so this only runs once |
| 121 |
useUserStore.getState().updatePreferredOption('tax_categories', null) |
| 122 |
return useUserStore.getState().preferredOptions.taxonomies |
| 123 |
}, |
| 124 |
})) |
| 125 |
|