-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
1,835 additions
and
3,800 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 was deleted.
Oops, something went wrong.
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,88 @@ | ||
# Recursos | ||
|
||
Recursos gerenciados pelo CACiC. | ||
|
||
## Utilitários | ||
|
||
### Site do CACiC | ||
|
||
Este site. | ||
|
||
- [Repositório](https://github.com/cacic-fct/homepage) | ||
|
||
### FCT App | ||
|
||
Web app para listagem de eventos, gerenciamento de inscrições, coleta de presenças e emissão de certificados. | ||
|
||
- [Repositório](https://github.com/cacic-fct/fct-app) | ||
|
||
### [Manual do calouro](https://cacic-fct.github.io/manual-do-calouro) | ||
|
||
- [Repositório](https://github.com/cacic-fct/manual-do-calouro) | ||
|
||
--- | ||
|
||
## Desenvolvimento | ||
|
||
### [Organização do CACiC no GitHub](https://github.com/cacic-fct) | ||
|
||
Essa organização contém repositórios de projetos desenvolvidos pelo CACiC. | ||
Os membros são os diretores do CACiC e colaboradores selecionados. | ||
|
||
### [Organização FCT-Coders no GitHub](https://github.com/fct-coders) | ||
|
||
Essa organização contém os alunos do curso de Ciência da Computação. | ||
Aqui são desenvolvidos os projetos de atividades extracurriculares (minicursos, eventos, etc). | ||
|
||
--- | ||
|
||
## Comunicação | ||
|
||
### Lista de e-mails do curso | ||
|
||
Contém alunos e professores. | ||
A atualização dessa lista é realizada anualmente, após a matrícula dos calouros. | ||
|
||
### Lista de e-mails dos alunos do curso | ||
|
||
Contém apenas alunos. | ||
A atualização dessa lista é realizada anualmente, após a matrícula dos calouros. | ||
|
||
### [Canal do CACiC no YouTube](https://youtube.com/@cacicfct) | ||
|
||
### Servidor do CACiC no Discord | ||
|
||
Confira o link de convite na descrição do Grupo Geral da Computação no WhatsApp. | ||
|
||
### [Página do CACiC no Instagram](https://instagram.com/cacic-fct) | ||
|
||
### [Página do CACiC no Facebook](https://fb.com/cacic-fct) | ||
|
||
### Comunidade do curso de Ciência da Computação no WhatsApp | ||
|
||
Se você é aluno do curso, solicite o convite para um de seus colegas. | ||
|
||
### Grupo da FCT no Facebook | ||
|
||
### Grupo do curso de Ciência da Computação no Facebook | ||
|
||
--- | ||
|
||
## Físicos | ||
|
||
### Sala do CACiC | ||
|
||
Laboratório 5, no Discente 1. | ||
Uso exclusivo dos membros do CACiC mediante autorização prévia. | ||
|
||
--- | ||
|
||
## Legado | ||
|
||
Recursos que não existem mais ou que não são mais utilizados. | ||
|
||
### Homepage da SECOMPP em hospedagem da FCT | ||
|
||
### SYSCOMPP | ||
|
||
### Grupo do Restaurante Universitário no Facebook |
77 changes: 77 additions & 0 deletions
77
knowledge-base/cacic/transparencia/components/achievements-cards.tsx
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,77 @@ | ||
import { CardActions } from '@mui/material'; | ||
import Card from '@mui/material/Card'; | ||
import CardContent from '@mui/material/CardContent'; | ||
import CardMedia from '@mui/material/CardMedia'; | ||
import Typography from '@mui/material/Typography'; | ||
import Grid from '@mui/material/Unstable_Grid2'; | ||
import Button from '@mui/material/Button'; | ||
|
||
const gridContainer = { | ||
maxWidth: 345, | ||
minWidth: 165, | ||
// Same height for all cards | ||
display: 'flex', | ||
}; | ||
|
||
const gridItem = { | ||
minHeight: 140, | ||
minWidth: 140, | ||
margin: '1em', | ||
// Same height for all cards | ||
flex: 1, | ||
}; | ||
|
||
const cardImage = { | ||
minHeight: 140, | ||
objectFit: 'cover', | ||
}; | ||
|
||
export default function AchievementsCards({ | ||
achievementsData, | ||
}: { | ||
achievementsData: Achievements[]; | ||
}) { | ||
return ( | ||
<Grid container spacing={2}> | ||
{achievementsData.map((achievement, index) => ( | ||
<Grid sx={gridContainer} xs={4} key={index}> | ||
<Card sx={gridItem}> | ||
<CardMedia | ||
sx={cardImage} | ||
component="img" | ||
image={ | ||
achievement.image | ||
? require(`@site/static/openness/${achievement.image}`) | ||
.default | ||
: require('@site/static/openness/placeholder.webp').default | ||
} | ||
title={achievement.title} | ||
/> | ||
<CardContent> | ||
<Typography gutterBottom variant="h5" component="div"> | ||
{achievement.title} | ||
</Typography> | ||
<Typography variant="body2" color="text.secondary"> | ||
{achievement.content} | ||
</Typography> | ||
{achievement.url && ( | ||
<CardActions> | ||
<Button size="small" href={achievement.url}> | ||
Ver mais | ||
</Button> | ||
</CardActions> | ||
)} | ||
</CardContent> | ||
</Card> | ||
</Grid> | ||
))} | ||
</Grid> | ||
); | ||
} | ||
|
||
export interface Achievements { | ||
image?: string; | ||
title: string; | ||
content: string; | ||
url?: string; | ||
} |
28 changes: 28 additions & 0 deletions
28
knowledge-base/cacic/transparencia/components/main-accordion.tsx
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,28 @@ | ||
import Accordion from '@mui/material/Accordion'; | ||
import AccordionSummary from '@mui/material/AccordionSummary'; | ||
import AccordionDetails from '@mui/material/AccordionDetails'; | ||
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; | ||
import AchievementsCards from '@site/knowledge-base/cacic/transparencia/components/achievements-cards'; | ||
import MeetingsAccordion from '@site/knowledge-base/cacic/transparencia/components/meetings-accordion'; | ||
import { | ||
achievementsHamilton, | ||
meetingsHamilton, | ||
} from '@site/knowledge-base/cacic/transparencia/data/2021-margaret-hamilton'; | ||
|
||
export default function MainAccordion() { | ||
return ( | ||
<Accordion> | ||
<AccordionSummary | ||
expandIcon={<ExpandMoreIcon />} | ||
aria-controls="panel1-content" | ||
id="panel1-header"> | ||
Chapa Margaret Hamilton (2021-2023) | ||
</AccordionSummary> | ||
<AccordionDetails> | ||
<MeetingsAccordion meetingsData={meetingsHamilton} /> | ||
|
||
<AchievementsCards achievementsData={achievementsHamilton} /> | ||
</AccordionDetails> | ||
</Accordion> | ||
); | ||
} |
Oops, something went wrong.