restored-all-authors
This commit is contained in:
parent
42d8e7598c
commit
4cb888262d
|
@ -18,6 +18,8 @@ import stylesAuthorList from './AuthorsList.module.scss'
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
authors: Author[]
|
authors: Author[]
|
||||||
|
authorsByFollowers?: Author[]
|
||||||
|
authorsByShouts?: Author[]
|
||||||
isLoaded: boolean
|
isLoaded: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,43 +35,48 @@ export const AllAuthors = (props: Props) => {
|
||||||
const [searchParams, changeSearchParams] = useSearchParams<{ by?: string }>()
|
const [searchParams, changeSearchParams] = useSearchParams<{ by?: string }>()
|
||||||
const { authorsSorted, setAuthorsSort, loadAuthors } = useAuthors()
|
const { authorsSorted, setAuthorsSort, loadAuthors } = useAuthors()
|
||||||
const [loading, setLoading] = createSignal<boolean>(false)
|
const [loading, setLoading] = createSignal<boolean>(false)
|
||||||
const [searchQuery, setSearchQuery] = createSignal('')
|
const [_currentAuthors, setCurrentAuthors] = createSignal<Author[]>([])
|
||||||
const [filteredAuthors, setFilteredAuthors] = createSignal<Author[]>([])
|
|
||||||
|
|
||||||
|
// UPDATE Fetch authors initially and when searchParams.by changes
|
||||||
createEffect(() => {
|
createEffect(() => {
|
||||||
// Load all authors initially
|
|
||||||
fetchAuthors(searchParams.by || 'name', 0)
|
fetchAuthors(searchParams.by || 'name', 0)
|
||||||
})
|
})
|
||||||
|
|
||||||
/* const authors = createMemo(() => {
|
const authors = createMemo(() => {
|
||||||
let sortedAuthors = [...props.authors]
|
let sortedAuthors = [...(props.authors || authorsSorted())] // Clone the array to avoid mutating the original
|
||||||
sortedAuthors = authorsSorted()
|
console.log('Before Sorting:', sortedAuthors.slice(0, 5)) // Log the first 5 authors for comparison
|
||||||
if (!searchParams.by || searchParams.by === 'name') {
|
if (searchParams.by === 'name') {
|
||||||
sortedAuthors = sortedAuthors.sort(byFirstChar)
|
sortedAuthors = sortedAuthors.sort(byFirstChar)
|
||||||
|
console.log('Sorted by Name:', sortedAuthors.slice(0, 5))
|
||||||
} else if (searchParams.by === 'shouts') {
|
} else if (searchParams.by === 'shouts') {
|
||||||
sortedAuthors = sortedAuthors.sort(byStat('shouts'))
|
sortedAuthors = sortedAuthors.sort(byStat('shouts'))
|
||||||
|
console.log('Sorted by Shouts:', sortedAuthors.slice(0, 5))
|
||||||
} else if (searchParams.by === 'followers') {
|
} else if (searchParams.by === 'followers') {
|
||||||
sortedAuthors = sortedAuthors.sort(byStat('followers'))
|
sortedAuthors = sortedAuthors.sort(byStat('followers'))
|
||||||
|
console.log('Sorted by Followers:', sortedAuthors.slice(0, 5))
|
||||||
}
|
}
|
||||||
return sortedAuthors
|
console.log('After Sorting:', sortedAuthors.slice(0, 5))
|
||||||
}) */
|
|
||||||
|
|
||||||
const authors = createMemo(() => {
|
|
||||||
let sortedAuthors: Author[] = []
|
|
||||||
if (!searchParams.by || searchParams.by === 'name') {
|
|
||||||
sortedAuthors = [...props.authors].sort(byFirstChar)
|
|
||||||
} else {
|
|
||||||
sortedAuthors = authorsSorted().sort(byStat(searchParams.by || 'shouts'))
|
|
||||||
}
|
|
||||||
return sortedAuthors
|
return sortedAuthors
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// Log authors data and searchParams for debugging
|
||||||
createEffect(() => {
|
createEffect(() => {
|
||||||
setFilteredAuthors(dummyFilter(authors(), searchQuery(), lang()) as Author[])
|
console.log('Authors:', props.authors.slice(0, 5)) // Log the first 5 authors
|
||||||
|
console.log('Sorted Authors:', authors().slice(0, 5)) // Log the first 5 sorted authors
|
||||||
|
console.log('Search Params "by":', searchParams.by)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// filter
|
||||||
|
const [searchQuery, setSearchQuery] = createSignal('')
|
||||||
|
const [filteredAuthors, setFilteredAuthors] = createSignal<Author[]>([])
|
||||||
|
createEffect(
|
||||||
|
() => authors() && setFilteredAuthors(dummyFilter(authors(), searchQuery(), lang()) as Author[])
|
||||||
|
)
|
||||||
|
|
||||||
|
// store by first char
|
||||||
const byLetterFiltered = createMemo<{ [letter: string]: Author[] }>(() => {
|
const byLetterFiltered = createMemo<{ [letter: string]: Author[] }>(() => {
|
||||||
if (!(filteredAuthors()?.length > 0)) return {}
|
if (!(filteredAuthors()?.length > 0)) return {}
|
||||||
|
console.debug('[components.AllAuthors] update byLetterFiltered', filteredAuthors()?.length)
|
||||||
return filteredAuthors().reduce(
|
return filteredAuthors().reduce(
|
||||||
(acc, author: Author) => authorLetterReduce(acc, author, lang()),
|
(acc, author: Author) => authorLetterReduce(acc, author, lang()),
|
||||||
{} as { [letter: string]: Author[] }
|
{} as { [letter: string]: Author[] }
|
||||||
|
@ -86,6 +93,7 @@ export const AllAuthors = (props: Props) => {
|
||||||
|
|
||||||
const fetchAuthors = async (queryType: string, page: number) => {
|
const fetchAuthors = async (queryType: string, page: number) => {
|
||||||
try {
|
try {
|
||||||
|
console.debug('[components.AuthorsList] fetching authors...')
|
||||||
setLoading(true)
|
setLoading(true)
|
||||||
setAuthorsSort?.(queryType)
|
setAuthorsSort?.(queryType)
|
||||||
const offset = AUTHORS_PER_PAGE * page
|
const offset = AUTHORS_PER_PAGE * page
|
||||||
|
@ -94,6 +102,8 @@ export const AllAuthors = (props: Props) => {
|
||||||
limit: AUTHORS_PER_PAGE,
|
limit: AUTHORS_PER_PAGE,
|
||||||
offset
|
offset
|
||||||
})
|
})
|
||||||
|
// UPDATE authors to currentAuthors state
|
||||||
|
setCurrentAuthors((prev) => [...prev, ...authorsSorted()])
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('[components.AuthorsList] error fetching authors:', error)
|
console.error('[components.AuthorsList] error fetching authors:', error)
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -121,7 +131,7 @@ export const AllAuthors = (props: Props) => {
|
||||||
<ul class={clsx(styles.viewSwitcher, 'view-switcher')}>
|
<ul class={clsx(styles.viewSwitcher, 'view-switcher')}>
|
||||||
<li
|
<li
|
||||||
class={clsx({
|
class={clsx({
|
||||||
['view-switcher__item--selected']: searchParams?.by === 'shouts'
|
['view-switcher__item--selected']: !searchParams?.by || searchParams?.by === 'shouts'
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<a href="#" onClick={() => changeSearchParams({ by: 'shouts' })}>
|
<a href="#" onClick={() => changeSearchParams({ by: 'shouts' })}>
|
||||||
|
@ -139,7 +149,7 @@ export const AllAuthors = (props: Props) => {
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class={clsx({
|
class={clsx({
|
||||||
['view-switcher__item--selected']: !searchParams?.by || searchParams?.by === 'name'
|
['view-switcher__item--selected']: searchParams?.by === 'name'
|
||||||
})}
|
})}
|
||||||
>
|
>
|
||||||
<a href="#" onClick={() => changeSearchParams({ by: 'name' })}>
|
<a href="#" onClick={() => changeSearchParams({ by: 'name' })}>
|
||||||
|
@ -237,13 +247,12 @@ export const AllAuthors = (props: Props) => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Show when={props.isLoaded} fallback={<Loading />}>
|
<Show when={props.isLoaded} fallback={<Loading />}>
|
||||||
<div class="offset-md-5">
|
<div class="offset-md-5">
|
||||||
<TabNavigator />
|
<TabNavigator />
|
||||||
<Show when={!searchParams.by || searchParams.by === 'name'} fallback={<AuthorsSortedList />}>
|
<Show when={searchParams?.by === 'name'} fallback={<AuthorsSortedList />}>
|
||||||
<AbcNavigator />
|
<AbcNavigator />
|
||||||
<AbcAuthorsList />
|
<AbcAuthorsList />
|
||||||
</Show>
|
</Show>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user