-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Ajout des unités d'enseignement sur l'IUT de Lannion (#668)
- Loading branch information
Showing
8 changed files
with
407 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,300 @@ | ||
import AnimatedNumber from "@/components/Global/AnimatedNumber"; | ||
import { NativeItem, NativeList, NativeListHeader, NativeText } from "@/components/Global/NativeComponents"; | ||
import { useAlert } from "@/providers/AlertProvider"; | ||
import { PrimaryAccount } from "@/stores/account/types"; | ||
|
||
import { defaultProfilePicture } from "@/utils/ui/default-profile-picture"; | ||
import { useTheme } from "@react-navigation/native"; | ||
import { ChevronDown, ChevronUp, Info } from "lucide-react-native"; | ||
import { useState } from "react"; | ||
import { Image, View } from "react-native"; | ||
import { TouchableOpacity } from "react-native-gesture-handler"; | ||
|
||
import Reanimated, { FadeIn, FadeOut } from "react-native-reanimated"; | ||
|
||
const GradesScodocUE = ({ account, navigation }: { account: PrimaryAccount, navigation: any }) => { | ||
try { | ||
const { colors } = useTheme(); | ||
const { showAlert } = useAlert(); | ||
|
||
// @ts-expect-error | ||
const ues = account.identityProvider?.rawData["relevé"]["ues"]; | ||
const uekeys = Object.keys(ues); | ||
|
||
if (uekeys.length === 0) { | ||
return null; | ||
} | ||
|
||
// @ts-expect-error | ||
const ressources = account.identityProvider?.rawData["relevé"]["ressources"]; | ||
// @ts-expect-error | ||
const saes = account.identityProvider?.rawData["relevé"]["saes"]; | ||
|
||
const finalUes = uekeys.map((ue) => { | ||
return { | ||
name: ue, | ||
...ues[ue], | ||
}; | ||
}); | ||
|
||
return ( | ||
<> | ||
<NativeListHeader | ||
label="Unités d'enseignement" | ||
trailing={ | ||
<TouchableOpacity | ||
onPress={() => showAlert({ | ||
icon: <Info />, | ||
title: "Unités d'enseignement", | ||
message: `Les données, rangs et notes sont fournies par les services de ${account.identityProvider?.name}.` | ||
})} | ||
> | ||
<Image | ||
style={{ | ||
width: 24, | ||
height: 24, | ||
borderRadius: 8, | ||
marginVertical: -8, | ||
borderColor: colors.text + "32", | ||
borderWidth: 1, | ||
}} | ||
source={defaultProfilePicture(account.service, account.identityProvider?.name || "")} | ||
/> | ||
</TouchableOpacity> | ||
} | ||
/> | ||
|
||
<NativeList> | ||
{finalUes.map((ue) => { | ||
interface ueGrade { | ||
key: string, | ||
type: "ressources" | "saes" | ||
} | ||
|
||
const grades: ueGrade[] = []; | ||
const [opened, setOpened] = useState(false); | ||
|
||
Object.keys(ue.ressources).forEach((res) => { | ||
grades.push({ | ||
key: res, | ||
type: "ressources", | ||
}); | ||
}); | ||
|
||
Object.keys(ue.saes).forEach((sae) => { | ||
grades.push({ | ||
key: sae, | ||
type: "saes", | ||
}); | ||
}); | ||
|
||
function navigateToSubject () { | ||
navigation.navigate("GradeSubject", { subject: { | ||
average: { | ||
subjectName: ue.name + " > " + ue.titre, | ||
average: { | ||
value: parseFloat(ue.moyenne.value), | ||
}, | ||
classAverage: { | ||
value: parseFloat(ue.moyenne.moy), | ||
}, | ||
min: { | ||
value: parseFloat(ue.moyenne.min), | ||
}, | ||
max: { | ||
value: parseFloat(ue.moyenne.max), | ||
}, | ||
outOf: { | ||
value: 20, | ||
}, | ||
}, | ||
rank: { | ||
value: ue.moyenne.rang, | ||
outOf: ue.moyenne.total, | ||
} | ||
} }); | ||
} | ||
|
||
return ( | ||
<> | ||
<NativeItem | ||
key={ue.name} | ||
chevron={false} | ||
style={{ | ||
backgroundColor: (ue.color || colors.primary) + "26", | ||
}} | ||
leading={ | ||
<TouchableOpacity | ||
style={{ | ||
width: 48, | ||
height: 30, | ||
alignItems: "center", | ||
justifyContent: "center", | ||
borderRadius: 8, | ||
borderColor: colors.text + "32", | ||
borderWidth: 1, | ||
}} | ||
onPress={navigateToSubject} | ||
> | ||
<NativeText variant="subtitle"> | ||
{ue.name} | ||
</NativeText> | ||
</TouchableOpacity> | ||
} | ||
trailing={ | ||
<View | ||
style={{ | ||
flexDirection: "row", | ||
alignItems: "center", | ||
gap: 0, | ||
marginLeft: 6 | ||
}} | ||
> | ||
<TouchableOpacity | ||
onPress={navigateToSubject} | ||
> | ||
<View | ||
style={{ | ||
flexDirection: "row", | ||
alignItems: "flex-end", | ||
gap: 2, | ||
}} | ||
> | ||
<AnimatedNumber | ||
value={ue.moyenne.value} | ||
style={{ | ||
fontSize: 18, | ||
lineHeight: 20, | ||
fontFamily: "semibold", | ||
}} | ||
contentContainerStyle={null} | ||
/> | ||
<NativeText | ||
style={{ | ||
fontSize: 15, | ||
lineHeight: 15, | ||
opacity: 0.6, | ||
}} | ||
> | ||
/20 | ||
</NativeText> | ||
</View> | ||
</TouchableOpacity> | ||
|
||
<TouchableOpacity | ||
onPress={() => setOpened(!opened)} | ||
style={{ | ||
zIndex: 1000, | ||
padding: 8, | ||
}} | ||
> | ||
<Reanimated.View | ||
key={"openUE-" + opened} | ||
entering={FadeIn.duration(100)} | ||
exiting={FadeOut.duration(100)} | ||
> | ||
{opened ? <ChevronUp size={24} color={colors.text} /> : <ChevronDown size={24} color={colors.text} />} | ||
</Reanimated.View> | ||
</TouchableOpacity> | ||
</View> | ||
} | ||
> | ||
<TouchableOpacity | ||
onPress={() => setOpened(!opened)} | ||
> | ||
<NativeText | ||
variant="body" | ||
numberOfLines={2} | ||
> | ||
{ue.titre} | ||
</NativeText> | ||
</TouchableOpacity> | ||
</NativeItem> | ||
|
||
{opened && grades.map((gra,i) => ( | ||
<NativeItem | ||
separator={i !== Object.keys(grades).length - 1} | ||
leading={ | ||
<NativeText | ||
variant="subtitle" | ||
style={{ | ||
width: 48, | ||
}} | ||
numberOfLines={2} | ||
> | ||
{gra.key} | ||
</NativeText> | ||
} | ||
trailing={ | ||
<View | ||
style={{ | ||
flexDirection: "row", | ||
alignItems: "center", | ||
gap: 2, | ||
marginHorizontal: 6 | ||
}} | ||
> | ||
<View | ||
style={{ | ||
flexDirection: "row", | ||
alignItems: "flex-end", | ||
justifyContent: "flex-end", | ||
gap: 2, | ||
marginHorizontal: 6 | ||
}} | ||
> | ||
<NativeText variant="title"> | ||
{ue[gra.type][gra.key].moyenne} | ||
</NativeText> | ||
<NativeText variant="subtitle"> | ||
/20 | ||
</NativeText> | ||
</View> | ||
|
||
<View | ||
style={{ | ||
width: 50, | ||
flexDirection: "row", | ||
alignItems: "center", | ||
justifyContent: "flex-end", | ||
}} | ||
> | ||
<NativeText | ||
variant="body" | ||
style={{ | ||
alignSelf: "flex-end", | ||
fontSize: 14, | ||
fontFamily: "semibold", | ||
color: colors.primary, | ||
paddingVertical: 2, | ||
paddingHorizontal: 6, | ||
borderRadius: 7, | ||
overflow: "hidden", | ||
backgroundColor: colors.primary + "26", | ||
}} | ||
numberOfLines={1} | ||
> | ||
x{ue[gra.type][gra.key].coef} | ||
</NativeText> | ||
</View> | ||
</View> | ||
} | ||
> | ||
<NativeText numberOfLines={2} variant="body"> | ||
{gra.type === "ressources" ? ressources[gra.key].titre : saes[gra.key].titre} | ||
</NativeText> | ||
</NativeItem> | ||
))} | ||
</> | ||
); | ||
})} | ||
</NativeList> | ||
</> | ||
); | ||
} | ||
catch (e) { | ||
return null; | ||
} | ||
}; | ||
|
||
export default GradesScodocUE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.