mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +08:00
Added global study groups rendering
This commit is contained in:
parent
1bd07f9edd
commit
ed19150d53
2 changed files with 113 additions and 1 deletions
|
@ -302,7 +302,20 @@ export async function GetStudyGroupListFiltered() {
|
||||||
return instance
|
return instance
|
||||||
.get("/api/v1/study_groups/near/", config)
|
.get("/api/v1/study_groups/near/", config)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
console.log("Data:", response.data);
|
return [true, response.data];
|
||||||
|
})
|
||||||
|
.catch((error) => {
|
||||||
|
let error_message = ParseError(error);
|
||||||
|
return [false, error_message];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function GetStudyGroupList() {
|
||||||
|
const config = await GetConfig();
|
||||||
|
return instance
|
||||||
|
.get("/api/v1/study_groups/", config)
|
||||||
|
.then((response) => {
|
||||||
|
console.log("test", response.data);
|
||||||
return [true, response.data];
|
return [true, response.data];
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
|
|
|
@ -33,6 +33,7 @@ import {
|
||||||
GetStudentStatus,
|
GetStudentStatus,
|
||||||
GetStudentStatusList,
|
GetStudentStatusList,
|
||||||
GetStudentStatusListFiltered,
|
GetStudentStatusListFiltered,
|
||||||
|
GetStudyGroupList,
|
||||||
GetStudyGroupListFiltered,
|
GetStudyGroupListFiltered,
|
||||||
PatchStudentStatus,
|
PatchStudentStatus,
|
||||||
urlProvider,
|
urlProvider,
|
||||||
|
@ -242,6 +243,34 @@ export default function Home() {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
const [study_groups_global, setStudyGroupsGlobal] = useState<
|
||||||
|
StudyGroupType[]
|
||||||
|
>([]);
|
||||||
|
// Student Status List
|
||||||
|
const StudyGroupGlobalQuery = useQuery({
|
||||||
|
enabled: !studying,
|
||||||
|
queryKey: ["study_group_list_global"],
|
||||||
|
queryFn: async () => {
|
||||||
|
const data = await GetStudyGroupList();
|
||||||
|
if (data[0] == false) {
|
||||||
|
return Promise.reject(new Error(JSON.stringify(data[1])));
|
||||||
|
}
|
||||||
|
return data;
|
||||||
|
},
|
||||||
|
onSuccess: (data: StudyGroupReturnType) => {
|
||||||
|
if (data[1] && location) {
|
||||||
|
setStudyGroupsGlobal(data[1]);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onError: (error: Error) => {
|
||||||
|
toast.show(String(error), {
|
||||||
|
type: "warning",
|
||||||
|
placement: "top",
|
||||||
|
duration: 2000,
|
||||||
|
animationType: "slide-in",
|
||||||
|
});
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
function CustomMap() {
|
function CustomMap() {
|
||||||
if (dist && location) {
|
if (dist && location) {
|
||||||
|
@ -395,6 +424,76 @@ export default function Home() {
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
{study_groups_global.map(
|
||||||
|
(studygroup: StudyGroupType, index: number) => {
|
||||||
|
const randomColorWithOpacity = `rgba(${Math.floor(
|
||||||
|
Math.random() * 256
|
||||||
|
)}, ${Math.floor(Math.random() * 256)}, ${Math.floor(
|
||||||
|
Math.random() * 256
|
||||||
|
)}, 0.7)`;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<React.Fragment key={index}>
|
||||||
|
<Marker
|
||||||
|
coordinate={studygroup.location}
|
||||||
|
pinColor={randomColorWithOpacity}
|
||||||
|
zIndex={1000}
|
||||||
|
onPress={() => {
|
||||||
|
toast.hideAll();
|
||||||
|
toast.show(
|
||||||
|
<View
|
||||||
|
style={{
|
||||||
|
alignContent: "center",
|
||||||
|
alignSelf: "center",
|
||||||
|
justifyContent: "center",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text style={styles.text_white_tiny_bold}>
|
||||||
|
Subject: {studygroup.subject}
|
||||||
|
</Text>
|
||||||
|
<Text style={styles.text_white_tiny_bold}>
|
||||||
|
Students Studying: {studygroup.users.length}
|
||||||
|
</Text>
|
||||||
|
<Button
|
||||||
|
onPress={() => {
|
||||||
|
toast.show("Joined successfully", {
|
||||||
|
type: "success",
|
||||||
|
placement: "top",
|
||||||
|
duration: 2000,
|
||||||
|
animationType: "slide-in",
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text style={styles.text_white_tiny_bold}>
|
||||||
|
Join Group
|
||||||
|
</Text>
|
||||||
|
</Button>
|
||||||
|
</View>,
|
||||||
|
{
|
||||||
|
type: "normal",
|
||||||
|
placement: "top",
|
||||||
|
duration: 2000,
|
||||||
|
animationType: "slide-in",
|
||||||
|
style: {
|
||||||
|
backgroundColor: colors.secondary_2,
|
||||||
|
borderWidth: 1,
|
||||||
|
borderColor: colors.primary_1,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<Circle
|
||||||
|
center={studygroup.location}
|
||||||
|
radius={studygroup.radius}
|
||||||
|
fillColor={randomColorWithOpacity}
|
||||||
|
strokeColor="white"
|
||||||
|
zIndex={1000}
|
||||||
|
/>
|
||||||
|
</React.Fragment>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
)}
|
||||||
<Marker
|
<Marker
|
||||||
zIndex={1001}
|
zIndex={1001}
|
||||||
coordinate={{
|
coordinate={{
|
||||||
|
|
Loading…
Reference in a new issue