move move frontend to progress-test

This commit is contained in:
João Geonizeli
2022-07-21 21:16:59 -03:00
parent f8d5d08447
commit 386050d4ad
129 changed files with 159374 additions and 39 deletions

View File

@@ -0,0 +1,106 @@
import React, {FC} from 'react'
import {gql, useQuery} from '@apollo/client'
import {Query} from '../../../__generated__/graphql-schema'
import {Pie} from '../components/charts'
import {useDashboardContext} from "../DashboardContext";
type ResponsivePieData = {
id: string
label: string
value: number
}[]
type QuestionsByBloomTaxonomyCountQuery = {
remember: Query['questions']
understand: Query['questions']
apply: Query['questions']
analyze: Query['questions']
evaluate: Query['questions']
create: Query['questions']
}
const QuestionsByBloomTaxonomyCount = gql`
query QuestionsByBloomTaxonomyCount (
$rememberWhere: QuestionWhereInput!,
$understandWhere: QuestionWhereInput!,
$applyWhere: QuestionWhereInput!,
$analyzeWhere: QuestionWhereInput!,
$evaluateWhere: QuestionWhereInput!,
$createWhere: QuestionWhereInput!,
) {
remember: questions(where: $rememberWhere) {
totalCount
}
understand: questions(where: $understandWhere) {
totalCount
}
apply: questions(where: $applyWhere) {
totalCount
}
analyze: questions(where: $analyzeWhere) {
totalCount
}
evaluate: questions(where: $evaluateWhere) {
totalCount
}
create: questions(where: $createWhere) {
totalCount
}
}
`
export const QuestionByBloomTaxonomy: FC = () => {
const {where} = useDashboardContext()
const {loading, data} = useQuery<QuestionsByBloomTaxonomyCountQuery>(
QuestionsByBloomTaxonomyCount, {
variables: {
rememberWhere: {bloomTaxonomy: ['remember'], ...where},
understandWhere: {bloomTaxonomy: ['understand'], ...where},
applyWhere: {bloomTaxonomy: ['apply'], ...where},
analyzeWhere: {bloomTaxonomy: ['analyze'], ...where},
evaluateWhere: {bloomTaxonomy: ['evaluate'], ...where},
createWhere: {bloomTaxonomy: ['create'], ...where},
}
})
if (loading || !data) return null
const mappedData: ResponsivePieData = [
{
id: "Recordar",
label: "Recordar",
value: data.remember.totalCount ?? 0
},
{
id: "Compreender",
label: "Compreender",
value: data.understand.totalCount ?? 0
},
{
id: "Aplicar",
label: "Aplicar",
value: data.apply.totalCount ?? 0
},
{
id: "Analisar",
label: "Analisar",
value: data.analyze.totalCount ?? 0
},
{
id: "Avaliar",
label: "Avaliar",
value: data.evaluate.totalCount ?? 0
},
{
id: "Criar",
label: "Criar",
value: data.create.totalCount ?? 0
},
]
const filteredData = mappedData.filter(item => item.value)
return (
<Pie title="Questões por Habilidade Cognitiva" data={filteredData}/>
)
}