Need InView for show more button in Notifications page
This commit is contained in:
parent
5850485207
commit
a222828306
1 changed files with 21 additions and 8 deletions
|
@ -2,6 +2,7 @@ import './notifications.css';
|
||||||
|
|
||||||
import { memo } from 'preact/compat';
|
import { memo } from 'preact/compat';
|
||||||
import { useCallback, useEffect, useRef, useState } from 'preact/hooks';
|
import { useCallback, useEffect, useRef, useState } from 'preact/hooks';
|
||||||
|
import { InView } from 'react-intersection-observer';
|
||||||
import { useSearchParams } from 'react-router-dom';
|
import { useSearchParams } from 'react-router-dom';
|
||||||
import { useSnapshot } from 'valtio';
|
import { useSnapshot } from 'valtio';
|
||||||
|
|
||||||
|
@ -454,15 +455,27 @@ function Notifications({ columnMode }) {
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{showMore && (
|
{showMore && (
|
||||||
<button
|
<InView
|
||||||
type="button"
|
onChange={(inView) => {
|
||||||
class="plain block"
|
if (inView) {
|
||||||
disabled={uiState === 'loading'}
|
loadNotifications();
|
||||||
onClick={() => loadNotifications()}
|
}
|
||||||
style={{ marginBlockEnd: '6em' }}
|
}}
|
||||||
>
|
>
|
||||||
{uiState === 'loading' ? <Loader abrupt /> : <>Show more…</>}
|
<button
|
||||||
</button>
|
type="button"
|
||||||
|
class="plain block"
|
||||||
|
disabled={uiState === 'loading'}
|
||||||
|
onClick={() => loadNotifications()}
|
||||||
|
style={{ marginBlockEnd: '6em' }}
|
||||||
|
>
|
||||||
|
{uiState === 'loading' ? (
|
||||||
|
<Loader abrupt />
|
||||||
|
) : (
|
||||||
|
<>Show more…</>
|
||||||
|
)}
|
||||||
|
</button>
|
||||||
|
</InView>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Reference in a new issue