Skip to content
Snippets Groups Projects
Commit f65271c4 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

refactor: create custom paginated store for hosts

Hosts shouldn’t be fetched all at once like it’s the case for stores
like categories and languages because there might be a lot of hosts in
the database.
parent f46b82a3
No related branches found
No related tags found
No related merge requests found
import {
APIListPaginated,
APIRemove,
APIRetrieve,
APIUpdate,
createExtendableAPI,
} from '@rokoli/bnb/drf'
import { defineStore } from 'pinia'
import { createSteeringURL } from '@/api'
import { components } from '@/steering-types'
import { steeringAuthInit } from '@/stores/auth'
import { KeysFrom, Host } from '@/types'
type ReadonlyAttrs = KeysFrom<Host, 'id'>
type HostUpdateData = Omit<Host, ReadonlyAttrs>
type HostPartialUpdateData = components['schemas']['PatchedHost']
export const useHostStore = defineStore('hosts', () => {
const endpoint = createSteeringURL.prefix('hosts')
const { api, base } = createExtendableAPI<Host>(endpoint, steeringAuthInit)
return {
...base,
...APIListPaginated(api),
...APIRetrieve(api),
...APIUpdate<Host, HostUpdateData, HostPartialUpdateData>(api),
...APIRemove(api),
}
})
import { createSteeringURL } from '@/api' import { createSteeringURL } from '@/api'
import { import { Category, FundingCategory, Language, LinkType, MusicFocus, Topic, Type } from '@/types'
Category,
FundingCategory,
Host,
Language,
LinkType,
MusicFocus,
Topic,
Type,
} from '@/types'
import { steeringAuthInit } from '@/stores/auth' import { steeringAuthInit } from '@/stores/auth'
import { createUnpaginatedAPIStore } from '@/stores/util' import { createUnpaginatedAPIStore } from '@/stores/util'
export { useAuthStore, useUserStore } from '@/stores/auth' export { useAuthStore, useUserStore } from '@/stores/auth'
export { useHostStore } from '@/stores/hosts'
export { useImageStore } from '@/stores/images' export { useImageStore } from '@/stores/images'
export { useLicenseStore } from '@/stores/licenses' export { useLicenseStore } from '@/stores/licenses'
export { useNoteStore } from '@/stores/notes' export { useNoteStore } from '@/stores/notes'
...@@ -61,12 +53,6 @@ export const useMusicFocusStore = createUnpaginatedAPIStore<MusicFocus>( ...@@ -61,12 +53,6 @@ export const useMusicFocusStore = createUnpaginatedAPIStore<MusicFocus>(
steeringAuthInit, steeringAuthInit,
{ syncOnAuth: true }, { syncOnAuth: true },
) )
export const useHostStore = createUnpaginatedAPIStore<Host>(
'hosts',
createSteeringURL.prefix('hosts'),
steeringAuthInit,
{ syncOnAuth: true },
)
export const useLinkTypeStore = createUnpaginatedAPIStore<LinkType>( export const useLinkTypeStore = createUnpaginatedAPIStore<LinkType>(
'linkTypes', 'linkTypes',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment