Enable fetching paginated conversations in direct.js
This commit is contained in:
parent
cf09107cf4
commit
05981e9711
|
@ -9,6 +9,9 @@ import {
|
|||
Dimensions,
|
||||
} from "react-native";
|
||||
|
||||
import AsyncStorage from "@react-native-async-storage/async-storage";
|
||||
import * as requests from "src/requests";
|
||||
|
||||
import { Ionicons } from "@expo/vector-icons";
|
||||
|
||||
import { ScreenWithTrayJsx } from "src/components/navigation/navigators";
|
||||
|
@ -35,31 +38,58 @@ function filterConversations(convs, query) {
|
|||
}
|
||||
|
||||
const DirectJsx = ({ navigation }) => {
|
||||
const FETCH_LIMIT = 1;
|
||||
|
||||
const [state, setState] = useState({
|
||||
loaded: false,
|
||||
query: ""
|
||||
query: "",
|
||||
fetchOffset: 0,
|
||||
});
|
||||
|
||||
useEffect(() => {
|
||||
let instance, accessToken;
|
||||
AsyncStorage
|
||||
.multiGet([
|
||||
"@user_instance",
|
||||
"@user_token",
|
||||
])
|
||||
.then(([instancePair, tokenPair]) => {
|
||||
instance = instancePair[1];
|
||||
accessToken = JSON.parse(tokenPair[1]).access_token;
|
||||
|
||||
return requests.fetchConversations(
|
||||
instance,
|
||||
accessToken,
|
||||
{ limit: FETCH_LIMIT, }
|
||||
);
|
||||
})
|
||||
.then(conversations => {
|
||||
setState({...state,
|
||||
loaded: true,
|
||||
conversations: [
|
||||
{
|
||||
id: 1,
|
||||
unread: true,
|
||||
accounts: [TEST_ACCOUNT_1],
|
||||
last_status: TEST_STATUS,
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
unread: false,
|
||||
accounts: [TEST_ACCOUNT_1, TEST_ACCOUNT_2],
|
||||
last_status: TEST_STATUS,
|
||||
}
|
||||
],
|
||||
conversations,
|
||||
fetchOffset: FETCH_LIMIT,
|
||||
instance,
|
||||
accessToken,
|
||||
});
|
||||
});
|
||||
}, []);
|
||||
|
||||
const _handleShowMore = async () => {
|
||||
const results = await requests.fetchConversations(
|
||||
state.instance,
|
||||
state.accessToken,
|
||||
{
|
||||
max_id: state.conversations[state.conversations.length - 1],
|
||||
limit: FETCH_LIMIT,
|
||||
}
|
||||
);
|
||||
|
||||
setState({...state,
|
||||
conversations: state.conversations.concat(results),
|
||||
fetchOffset: state.fetchOffset + FETCH_LIMIT,
|
||||
});
|
||||
};
|
||||
|
||||
const onPressConversationFactory = (conv) => {
|
||||
return () => {
|
||||
navigation.navigate("Conversation", {
|
||||
|
@ -114,6 +144,8 @@ const DirectJsx = ({ navigation }) => {
|
|||
<ScreenWithTrayJsx
|
||||
navigation = { navigation }
|
||||
originTab = "Direct">
|
||||
{ state.loaded
|
||||
? <>
|
||||
<View style = { [ styles.row, styles.form.container ] }>
|
||||
<TextInput
|
||||
placeholder = "Search..."
|
||||
|
@ -132,11 +164,28 @@ const DirectJsx = ({ navigation }) => {
|
|||
<Ionicons name = "md-create" size = { 24 } color = "black"/>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
{ state.loaded ?
|
||||
<>
|
||||
{
|
||||
filterConversations(
|
||||
state.conversations,
|
||||
state.query
|
||||
).map(renderConversation)
|
||||
}
|
||||
</>
|
||||
<>
|
||||
{ state.conversations.length == state.fetchOffset
|
||||
? <View style = { styles.showMore.container }>
|
||||
<TouchableOpacity
|
||||
onPress = { props.onShowMore }>
|
||||
<View style = { styles.showMore.button }>
|
||||
<Text>Show more?</Text>
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
: <></>
|
||||
}
|
||||
</>
|
||||
</>
|
||||
: <></>
|
||||
}
|
||||
</ScreenWithTrayJsx>
|
||||
|
@ -194,6 +243,19 @@ const styles = {
|
|||
height: 20,
|
||||
},
|
||||
},
|
||||
showMore: {
|
||||
container: {
|
||||
justifyContent: "center",
|
||||
alignItems: "center"
|
||||
},
|
||||
button: {
|
||||
borderWidth: 1,
|
||||
borderColor: "#888",
|
||||
borderRadius: 5,
|
||||
padding: 10,
|
||||
margin: 20
|
||||
},
|
||||
},
|
||||
bold: { fontWeight: "bold" },
|
||||
};
|
||||
|
||||
|
|
|
@ -114,6 +114,15 @@ export async function fetchPublicTimeline(domain, token, params = false) {
|
|||
return resp.json();
|
||||
}
|
||||
|
||||
export async function fetchConversations(domain, token, params = false) {
|
||||
const resp = await get(
|
||||
`https://${domain}/api/v1/conversations`,
|
||||
token,
|
||||
params
|
||||
);
|
||||
return resp.json();
|
||||
}
|
||||
|
||||
export async function fetchSearchResults(domain, token, params) {
|
||||
const resp = await get(
|
||||
`https://${domain}/api/v2/search`,
|
||||
|
|
Loading…
Reference in New Issue