Skip to content

Instantly share code, notes, and snippets.

View Dev4ster's full-sized avatar

Victor Barreto Dev4ster

View GitHub Profile
@Dev4ster
Dev4ster / reactjs-onEndReached-scroll.js
Created October 12, 2023 13:46
Reactjs div with scroll tigger onEndReached event / Detect scroll end
useEffect(() => {
const listElement = refElement.current; // this is a ref that you need to pass to your html element that contains scroll
if (listElement) {
listElement.onscroll = () => {
const bottom = listElement.scrollHeight - listElement.scrollTop === listElement.clientHeight;
if (bottom) {
onEndReached(); // it is a prop you can change per a inside component method
}
};
import React, { useState } from 'react';
import AsyncSelect from 'react-select/async';
export default function PageComponent() {
const INITIAL_DATA = {
value: 0,
label: 'Selecione o usuário',
};
const [selectData, setselectData] = useState(INITIAL_DATA);
import React from 'react';
import AsyncSelect from 'react-select/async';
export default function PageComponent() {
const mapResponseToValuesAndLabels = (data) => ({
value: data.id,
label: data.name,
});
async function callApi(value) {