15 Commits

Author SHA1 Message Date
Gustavo b1dd3a8b01 fodase :)
meco meram, meco meram, meco meram
2026-05-12 23:27:37 +00:00
Gustavo 3ed2fcf0b7 Correção de bugs 2026-03-24 20:27:51 -03:00
Gustavo 507f32e392 Correção do CSS do login 2026-03-24 19:44:21 -03:00
Gustavo f675979736 Atualização do calendario 2026-03-23 09:40:59 -03:00
Gustavo c49f619569 Atualização do calendarii 2026-03-23 08:50:26 -03:00
Gustavo 185946a3c6 Atualização do calendario 2026-03-23 06:55:02 -03:00
Gustavo f4223fae6d Correção de de erros 2026-03-14 15:48:13 -03:00
Gustavo b61b704af7 Optimização dos sites e atualização do calendario 2026-03-14 15:30:22 -03:00
Gustavo 683ab959f2 Criação da pagina calendario 2026-03-10 20:47:56 -03:00
Gustavo 7e8dec9c26 Junção da pagina de cadastro e de login 2026-03-10 20:10:19 -03:00
Gustavo 9aa9855498 Atualização 2026-03-03 20:17:00 -03:00
Gustavo 79da5450e2 update 2026-03-03 20:04:40 -03:00
Gustavo f26755deaa update 2026-03-03 19:41:28 -03:00
Gustavo 9eb90bf2ec Remove submódulo FrontFocusAgenda 2026-03-01 17:04:04 -03:00
Gustavo e0dff0ec3d Remoção do fundo para melhor estilização 2026-03-01 16:49:38 -03:00
88 changed files with 2919 additions and 166 deletions
Binary file not shown.
+12
View File
@@ -0,0 +1,12 @@
package com.agendaestudantil;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class AgendaDigitalEstudantesApplication {
public static void main(String[] args) {
SpringApplication.run(AgendaDigitalEstudantesApplication.class, args);
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Submodule FrontFocusAgenda deleted from f635a4e943
+1
View File
@@ -0,0 +1 @@
0000000000000000000000000000000000000000 02cfd71cf4d0075701aa28ffec79d5047bc80214 Sala Maker - Note. 14 (carrinho) <smaker@smaker01.(none)> 1778625373 -0300 clone: from https://git.morpheusnox.shop/axel/FocusAgenda.git
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
+6
View File
@@ -0,0 +1,6 @@
spring.data.mongodb.uri=${MONGO_URI:mongodb://localhost:27017/agenda_estudantil}
cors.allowed.origins=${CORS_ORIGINS:http://localhost:8080,http://localhost:3000}
jwt.secret=${JWT_SECRET:8a2b3c4d5e6f7g8h9i0j1k2l3m4n5o6p7q8r9s0t1u2v3w4x5y6z7A8B9C0D1E2F3}
logging.level.org.springframework.data.mongodb=DEBUG
springdoc.api-docs.enabled=true
springdoc.swagger-ui.enabled=true
+8
View File
@@ -0,0 +1,8 @@
spring.data.mongodb.uri=${MONGO_URI}
cors.allowed.origins=${CORS_ORIGINS}
jwt.secret=${JWT_SECRET}
springdoc.api-docs.enabled=false
springdoc.swagger-ui.enabled=false
logging.level.root=WARN
logging.level.root=WARN
logging.level.com.agendaestudantil=INFO
+13
View File
@@ -0,0 +1,13 @@
spring.application.name=${APP_NAME:Focus Agenda}
server.port=${SERVER_PORT:8080}
server.servlet.context-path=/
spring.web.resources.static-locations=classpath:/static/
spring.mvc.static-path-pattern=/**
spring.mvc.contentnegotiation.favor-parameter=true
spring.web.resources.add-mappings=true
spring.servlet.multipart.enabled=false
spring.web.resources.cache.cachecontrol.max-age=3600
spring.web.resources.cache.cachecontrol.cache-public=true
spring.profiles.active=${SPRING_PROFILES_ACTIVE:dev}
+15
View File
@@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script to check the commit log message taken by
# applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, rename this file to "applypatch-msg".
. git-sh-setup
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
:
+113
View File
@@ -0,0 +1,113 @@
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
font-family: 'Poppins', Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
padding: 80px 20px 20px;
background: #f5f5f5;
}
#topo {
width: 100%;
height: 50px;
position: fixed;
top: 0; left: 0;
background: linear-gradient(to right, #c0392b 47%, #7a4951 73%, #114455 87%);
display: flex;
align-items: center;
z-index: 10;
}
#textotop {
padding-left: 20px;
font-size: clamp(22px, 5vw, 38px);
color: #fff;
}
#log {
width: 100%;
max-width: 400px;
display: flex;
flex-direction: column;
gap: 16px;
background-color: white;
border: rgba(0, 0, 0, 0.174) solid 3px;
border-radius: 10px;
padding: 10px;
border-top: 0px;
border-left: 0px;
}
.mens { text-align: center; color: #1f2937; }
.campo { display: flex; flex-direction: column; gap: 8px; }
label { font-weight: 700; color: #1f2937; }
input, select {
height: 46px;
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #c7c7c7;
border-radius: 6px;
font-family: inherit;
background: #fff;
}
form { display: flex; flex-direction: column; gap: 16px; }
.linha-dupla { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#logbtn {
align-self: center;
width: 50%;
padding: 12px;
font-size: 18px;
font-weight: bold;
background-color: #c0392b;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s ease;
border: rgba(124, 20, 20, 0.496) solid 2px;
border-radius: 10px;
padding: 10px;
border-top: 0px;
border-left: 0px;
}
#logbtn:hover {
background-color: #114455;
border: #14323c6f solid 2px;
border-radius: 10px;
padding: 10px;
border-top: 0px;
border-left: 0px;}
#logbtn:disabled { background-color: #ccc; cursor: not-allowed; }
a { color: #111; text-decoration: none; }
a:hover { text-decoration: underline; }
#mensagem-erro {
background: #fee2e2;
border: 1px solid #fca5a5;
color: #b91c1c;
padding: 10px 14px;
border-radius: 6px;
font-size: 14px;
display: none;
}
#mensagem-sucesso {
background: #d1fae5;
border: 1px solid #6ee7b7;
color: #065f46;
padding: 10px 14px;
border-radius: 6px;
font-size: 14px;
display: none;
}
+151
View File
@@ -0,0 +1,151 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imagens/icone.png">
<link rel="stylesheet" href="cadastro.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>Cadastro Focus Agenda</title>
</head>
<body>
<div id="topo">
<h1 id="textotop">Focus Agenda</h1>
</div>
<div id="log">
<h1 class="mens">Crie Sua Conta</h1>
<div id="mensagem-erro" role="alert"></div>
<div id="mensagem-sucesso" role="status"></div>
<form id="cadastroForm" novalidate>
<div class="campo">
<label for="emailid">Email</label>
<input type="email" placeholder="Digite seu email" id="emailid" autocomplete="email" required>
</div>
<div class="campo">
<label for="nomeid">Nome</label>
<input type="text" placeholder="Seu nome completo" id="nomeid" autocomplete="name" required>
</div>
<div class="campo">
<label for="cursoid">Curso</label>
<input type="text" placeholder="Ex: Técnico em Informática" id="cursoid" required>
</div>
<div class="linha-dupla">
<div class="campo">
<label for="periodoid">Período</label>
<select id="periodoid" required>
<option value="">Selecione</option>
<option value="1"></option>
<option value="2"></option>
<option value="3"></option>
<option value="4"></option>
<option value="5"></option>
<option value="6"></option>
<option value="7"></option>
<option value="8"></option>
</select>
</div>
</div>
<div class="campo">
<label for="senhaid">Senha</label>
<input type="password" placeholder="Mínimo 6 caracteres" id="senhaid" autocomplete="new-password" required minlength="6">
</div>
<div class="campo">
<label for="csenhaid">Confirmar Senha</label>
<input type="password" placeholder="Confirme sua senha" id="csenhaid" autocomplete="new-password" required>
</div>
<button type="submit" id="logbtn">Cadastrar</button>
</form>
<p class="mens"><a href="login.html">Já tem uma conta?</a></p>
</div>
<script>
const form = document.getElementById('cadastroForm');
const erroEl = document.getElementById('mensagem-erro');
const sucessoEl = document.getElementById('mensagem-sucesso');
const btn = document.getElementById('logbtn');
function mostrarErro(msg) {
erroEl.textContent = msg;
erroEl.style.display = 'block';
sucessoEl.style.display = 'none';
}
function mostrarSucesso(msg) {
sucessoEl.textContent = msg;
sucessoEl.style.display = 'block';
erroEl.style.display = 'none';
}
form.addEventListener('submit', async (e) => {
e.preventDefault();
erroEl.style.display = 'none';
sucessoEl.style.display = 'none';
const nome = document.getElementById('nomeid').value.trim();
const email = document.getElementById('emailid').value.trim();
const curso = document.getElementById('cursoid').value.trim();
const periodo = parseInt(document.getElementById('periodoid').value, 10);
const senha = document.getElementById('senhaid').value;
const csenha = document.getElementById('csenhaid').value;
if (!nome || !email || !curso || !periodo || !senha) {
mostrarErro('Preencha todos os campos.');
return;
}
if (senha.length < 6) {
mostrarErro('A senha deve ter pelo menos 6 caracteres.');
return;
}
if (senha !== csenha) {
mostrarErro('As senhas não conferem.');
document.getElementById('csenhaid').focus();
return;
}
btn.disabled = true;
btn.textContent = 'Cadastrando...';
try {
const res = await fetch('/api/estudantes/cadastro', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ nome, email, senha, curso, periodo })
});
const json = await res.json();
if (!res.ok) {
// Erros de validação vêm como objeto
if (typeof json.data === 'object' && json.data !== null) {
const msgs = Object.values(json.data).join('; ');
mostrarErro(msgs);
} else {
mostrarErro(json.message || 'Erro ao cadastrar.');
}
return;
}
mostrarSucesso('Conta criada! Redirecionando para o login...');
setTimeout(() => window.location.href = 'login.html', 2000);
} catch (err) {
mostrarErro('Erro de conexão. Verifique se o servidor está rodando.');
} finally {
btn.disabled = false;
btn.textContent = 'Cadastrar';
}
});
</script>
</body>
</html>
+304
View File
@@ -0,0 +1,304 @@
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Poppins', sans-serif;
background: #f5f5f5;
}
/* ===== HEADER ===== */
#header {
width: 100%;
height: 50px;
position: fixed;
top: 0; left: 0;
background: linear-gradient(to right, #c0392b, #114455);
display: flex;
align-items: center;
z-index: 10;
}
#title {
padding-left: 20px;
font-size: clamp(22px, 5vw, 38px);
color: #fff;
}
/* ===== BARRA ESQUERDA ===== */
#barraesquerda {
position: fixed;
top: 50px; left: 0;
width: 280px;
height: calc(100vh - 50px);
background: #c0392b;
padding: 15px;
color: #fff;
display: flex;
flex-direction: column;
font-family: 'Inter', sans-serif;
overflow-y: auto;
z-index: 5;
}
/* Mini Calendário */
#calendario { margin-top: 10px; }
.calendariotop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
#mes { font-size: 16px; font-weight: 600; }
#calendarseta { display: flex; gap: 10px; }
#calendarseta button { background: transparent; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 2px 8px; transition: transform 0.2s; }
#calendarseta button:hover { transform: scale(1.2); }
.calendariodia { width: 100%; border-collapse: collapse; }
.calendariodia th { font-size: 10px; opacity: 0.8; padding: 3px; text-align: center; }
.calendariodia td { text-align: center; padding: 4px; font-size: 11px; border-radius: 50%; cursor: pointer; transition: background 0.15s; }
.calendariodia td:hover { background: rgba(255,255,255,0.2); }
.calendariodia td.outromes { opacity: 0.4; }
.calendariodia td.today { background: #fff; color: #c0392b; font-weight: 700; border-radius: 50%; }
.calendariodia td.selecionado { background: rgba(255,255,255,0.35); border-radius: 50%; }
/* Agenda */
#agenda { margin-top: 18px; }
.agenda-header { font-size: 12px; font-weight: 700; opacity: 0.8; margin-bottom: 8px; letter-spacing: 0.5px; }
.agenda-empty { font-size: 12px; opacity: 0.7; font-style: italic; }
.evento { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 8px 10px; margin-bottom: 8px; cursor: pointer; transition: background 0.15s; }
.evento:hover { background: rgba(255,255,255,0.25); }
.evento .hora { font-size: 11px; opacity: 0.8; }
.evento .titulo { font-size: 13px; font-weight: 600; }
/* Feriados */
#feriados { margin-top: 16px; }
.feriados-header { font-size: 12px; font-weight: 700; opacity: 0.8; margin-bottom: 8px; letter-spacing: 0.5px; }
.feriado { display: flex; align-items: center; gap: 8px; font-size: 12px; margin-bottom: 4px; }
.dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; flex-shrink: 0; }
/* ===== MAIN ===== */
.main {
margin-left: 280px;
margin-top: 50px;
padding: 24px;
min-height: calc(100vh - 50px);
}
/* Topbar */
.topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.topbar h1 { font-size: 24px; color: #1f2937; }
.user-area { display: flex; align-items: center; gap: 14px; }
.icone-img { width: 28px; height: 28px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.icone-img:hover { opacity: 1; }
.perfil { display: flex; align-items: center; gap: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #c0392b, #114455); }
.info { display: flex; flex-direction: column; }
.nome { font-size: 14px; font-weight: 600; color: #1f2937; }
.cargo { font-size: 12px; color: #6b7280; }
/* Botão logout */
#btnLogout {
background: transparent;
border: 1px solid #d1d5db;
border-radius: 6px;
padding: 6px 12px;
font-size: 13px;
cursor: pointer;
color: #6b7280;
transition: all 0.2s;
}
#btnLogout:hover { background: #fee2e2; border-color: #c0392b; color: #c0392b; }
/* Calendar header */
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.mes-nav { display: flex; align-items: center; gap: 12px; }
.seta { background: transparent; border: 1px solid #d1d5db; border-radius: 6px; width: 32px; height: 32px; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.seta:hover { background: #f3f4f6; }
.titulo-mes { font-size: 18px; font-weight: 600; color: #1f2937; min-width: 200px; text-align: center; }
.view-switch { display: flex; gap: 4px; background: #f3f4f6; padding: 4px; border-radius: 8px; }
.view-switch button { border: none; background: transparent; padding: 6px 14px; border-radius: 6px; font-size: 14px; cursor: pointer; color: #6b7280; transition: all 0.2s; font-family: inherit; }
.view-switch button.active { background: #fff; color: #1f2937; font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
/* Botão novo evento */
#btnNovoEvento {
background: #c0392b;
color: #fff;
border: none;
border-radius: 8px;
padding: 8px 18px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
font-family: inherit;
}
#btnNovoEvento:hover { background: #a03224; }
/* Calendar area */
.calendar-area { background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); overflow: hidden; }
/* Month view */
.month-view { display: grid; grid-template-columns: repeat(7, 1fr); }
.dia-semana { text-align: center; padding: 10px; font-size: 12px; font-weight: 600; color: #6b7280; background: #f9fafb; border-bottom: 1px solid #e5e7eb; }
.dia-box { min-height: 100px; padding: 8px; border-right: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.1s; }
.dia-box:hover { background: #fef2f2; }
.dia-box:nth-child(7n) { border-right: none; }
.dia-box.outro-mes { background: #fafafa; color: #d1d5db; }
.dia-box.outro-mes .num-dia { color: #d1d5db; }
.num-dia { font-size: 13px; font-weight: 500; color: #374151; margin-bottom: 4px; }
.dia-box.today .num-dia { background: #c0392b; color: #fff; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.dia-box.selecionado { background: #fef2f2; }
.evento-mini { font-size: 10px; background: #c0392b; color: #fff; border-radius: 3px; padding: 1px 4px; margin-top: 2px; truncate: clip; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.evento-mini.verde { background: #16a34a; }
.evento-mini.azul { background: #1d4ed8; }
.evento-mini.amarelo { background: #d97706; }
.mais-eventos { font-size: 10px; color: #6b7280; margin-top: 2px; cursor: pointer; }
/* Week view */
.week-view { display: grid; grid-template-columns: repeat(7, 1fr); }
.week-col { border-right: 1px solid #e5e7eb; padding: 10px 8px; min-height: 300px; }
.week-col:last-child { border-right: none; }
.week-col.today { background: #fef9f9; }
.week-col-head { font-size: 13px; font-weight: 600; color: #6b7280; margin-bottom: 6px; }
.week-col-date { display: block; font-size: 11px; font-weight: 400; color: #9ca3af; }
.week-events { display: flex; flex-direction: column; gap: 6px; }
.week-empty { font-size: 11px; color: #d1d5db; font-style: italic; }
/* Day view */
.day-panel { padding: 20px; }
.day-panel-header { font-size: 16px; font-weight: 600; color: #374151; margin-bottom: 16px; }
.day-events { display: flex; flex-direction: column; gap: 10px; }
.day-empty { color: #9ca3af; font-style: italic; font-size: 14px; }
/* Event cards */
.calendar-event { border-radius: 6px; padding: 8px 10px; background: #fee2e2; border-left: 4px solid #c0392b; }
.calendar-event.verde { background: #d1fae5; border-color: #16a34a; }
.calendar-event.azul { background: #dbeafe; border-color: #1d4ed8; }
.calendar-event.amarelo { background: #fef3c7; border-color: #d97706; }
.calendar-event.rosa { background: #fce7f3; border-color: #db2777; }
.calendar-event-hora { font-size: 11px; color: #6b7280; }
.calendar-event-titulo { font-size: 13px; font-weight: 600; color: #1f2937; }
/* ===== LOADING SPINNER ===== */
.loading { display: flex; align-items: center; justify-content: center; padding: 40px; color: #9ca3af; gap: 10px; font-size: 14px; }
.spinner { width: 20px; height: 20px; border: 2px solid #e5e7eb; border-top-color: #c0392b; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
/* ===== MODAL ===== */
.modal-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.45);
z-index: 100;
align-items: center;
justify-content: center;
}
.modal-overlay.aberto { display: flex; }
.modal {
background: #fff;
border-radius: 12px;
padding: 28px;
width: 100%;
max-width: 480px;
margin: 20px;
box-shadow: 0 20px 60px rgba(0,0,0,0.2);
max-height: 90vh;
overflow-y: auto;
}
.modal-titulo { font-size: 18px; font-weight: 700; color: #1f2937; margin-bottom: 20px; }
.modal-campo { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.modal-campo label { font-size: 13px; font-weight: 600; color: #374151; }
.modal-campo input,
.modal-campo select,
.modal-campo textarea {
border: 1px solid #d1d5db;
border-radius: 8px;
padding: 10px 12px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.2s;
background: #fff;
}
.modal-campo input:focus,
.modal-campo select:focus,
.modal-campo textarea:focus {
outline: none;
border-color: #c0392b;
}
.modal-campo textarea { resize: vertical; min-height: 70px; }
.modal-linha { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-acoes { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.btn-secundario {
background: transparent;
border: 1px solid #d1d5db;
border-radius: 8px;
padding: 9px 18px;
font-size: 14px;
cursor: pointer;
color: #6b7280;
font-family: inherit;
transition: all 0.2s;
}
.btn-secundario:hover { background: #f3f4f6; }
.btn-primario {
background: #c0392b;
color: #fff;
border: none;
border-radius: 8px;
padding: 9px 18px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
font-family: inherit;
transition: background 0.2s;
}
.btn-primario:hover { background: #a03224; }
.btn-primario:disabled { background: #ccc; cursor: not-allowed; }
.btn-perigo {
background: transparent;
border: 1px solid #fca5a5;
color: #c0392b;
border-radius: 8px;
padding: 9px 18px;
font-size: 14px;
cursor: pointer;
font-family: inherit;
transition: all 0.2s;
margin-right: auto;
}
.btn-perigo:hover { background: #fee2e2; }
/* Toast de feedback */
#toast {
position: fixed;
bottom: 24px;
right: 24px;
background: #1f2937;
color: #fff;
padding: 12px 18px;
border-radius: 8px;
font-size: 14px;
z-index: 200;
transform: translateY(80px);
opacity: 0;
transition: all 0.3s;
max-width: 320px;
}
#toast.visivel { transform: translateY(0); opacity: 1; }
#toast.sucesso { background: #065f46; }
#toast.erro { background: #b91c1c; }
/* Responsivo */
@media (max-width: 768px) {
#barraesquerda { display: none; }
.main { margin-left: 0; }
.month-view { font-size: 12px; }
.dia-box { min-height: 60px; padding: 4px; }
}
+960
View File
@@ -0,0 +1,960 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Focus Agenda</title>
<link rel="icon" href="imagens/icone.png">
<link rel="stylesheet" href="calendario.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Nixie+One&display=swap');
</style>
</head>
<body>
<!-- HEADER -->
<div id="header">
<h1 id="title">Focus Agenda</h1>
</div>
<!-- BARRA ESQUERDA -->
<div id="barraesquerda">
<div id="calendario">
<div class="calendariotop">
<div id="mes"></div>
<div id="calendarseta">
<button class="ant" aria-label="Mês anterior">&lsaquo;</button>
<button class="prox" aria-label="Próximo mês">&rsaquo;</button>
</div>
</div>
<table class="calendariodia">
<thead>
<tr>
<th>DOM</th><th>SEG</th><th>TER</th><th>QUA</th>
<th>QUI</th><th>SEX</th><th>SAB</th>
</tr>
</thead>
<tbody id="dias"></tbody>
</table>
</div>
<div id="agenda"></div>
<div id="feriados"></div>
</div>
<!-- CONTEUDO PRINCIPAL -->
<div class="main">
<div class="topbar">
<h1>Calendário</h1>
<div class="user-area">
<div class="perfil">
<div class="avatar"></div>
<div class="info">
<span class="nome" id="nomeUsuario">Carregando...</span>
<span class="cargo" id="cursoUsuario"></span>
</div>
</div>
<button id="btnLogout" title="Sair">Sair</button>
</div>
</div>
<div class="calendar-header">
<div class="mes-nav">
<button class="seta antGrande" aria-label="Anterior">&lsaquo;</button>
<span class="titulo-mes">Janeiro, 2025</span>
<button class="seta proxGrande" aria-label="Próximo">&rsaquo;</button>
</div>
<div class="view-switch">
<button type="button" data-view="dia">Dia</button>
<button type="button" data-view="semana">Semana</button>
<button type="button" data-view="mes" class="active">Mês</button>
</div>
<button id="btnNovoEvento">+ Novo Evento</button>
</div>
<div class="calendar-area month-view" id="calendarArea"></div>
</div>
<!-- MODAL DE EVENTO -->
<div class="modal-overlay" id="modalEvento">
<div class="modal">
<div class="modal-titulo" id="modalEventoTitulo">Novo Evento</div>
<div class="modal-campo">
<label for="evTitulo">Título *</label>
<input type="text" id="evTitulo" placeholder="Ex: Prova de Matemática">
</div>
<div class="modal-campo">
<label for="evDescricao">Descrição</label>
<textarea id="evDescricao" placeholder="Detalhes do evento..."></textarea>
</div>
<div class="modal-linha">
<div class="modal-campo">
<label for="evTipo">Tipo *</label>
<select id="evTipo">
<option value="AULA">Aula</option>
<option value="PROVA">Prova</option>
<option value="TRABALHO">Trabalho</option>
<option value="ESTUDO">Estudo</option>
<option value="EXAME">Exame</option>
<option value="OUTRO">Outro</option>
</select>
</div>
<div class="modal-campo">
<label for="evDisciplina">Disciplina</label>
<select id="evDisciplina">
<option value="">Nenhuma</option>
</select>
</div>
</div>
<div class="modal-linha">
<div class="modal-campo">
<label for="evData">Data e Hora *</label>
<input type="datetime-local" id="evData">
</div>
<div class="modal-campo">
<label for="evLocal">Local</label>
<input type="text" id="evLocal" placeholder="Ex: Sala 204">
</div>
</div>
<div class="modal-acoes">
<button class="btn-perigo" id="btnExcluirEvento" style="display:none">Excluir</button>
<button class="btn-secundario" id="btnCancelarEvento">Cancelar</button>
<button class="btn-primario" id="btnSalvarEvento">Salvar</button>
</div>
</div>
</div>
<!-- MODAL DE TAREFA -->
<div class="modal-overlay" id="modalTarefa">
<div class="modal">
<div class="modal-titulo" id="modalTarefaTitulo">Nova Tarefa</div>
<div class="modal-campo">
<label for="tfTitulo">Título *</label>
<input type="text" id="tfTitulo" placeholder="Ex: Estudar para a prova">
</div>
<div class="modal-campo">
<label for="tfDescricao">Descrição</label>
<textarea id="tfDescricao" placeholder="Detalhes da tarefa..."></textarea>
</div>
<div class="modal-linha">
<div class="modal-campo">
<label for="tfPrioridade">Prioridade *</label>
<select id="tfPrioridade">
<option value="BAIXA">Baixa</option>
<option value="MEDIA" selected>Média</option>
<option value="ALTA">Alta</option>
<option value="URGENTE">Urgente</option>
</select>
</div>
<div class="modal-campo">
<label for="tfStatus">Status</label>
<select id="tfStatus">
<option value="PENDENTE" selected>Pendente</option>
<option value="EM_ANDAMENTO">Em Andamento</option>
<option value="CONCLUIDA">Concluída</option>
</select>
</div>
</div>
<div class="modal-linha">
<div class="modal-campo">
<label for="tfData">Data de Entrega *</label>
<input type="date" id="tfData">
</div>
<div class="modal-campo">
<label for="tfDisciplina">Disciplina</label>
<select id="tfDisciplina">
<option value="">Nenhuma</option>
</select>
</div>
</div>
<div class="modal-acoes">
<button class="btn-perigo" id="btnExcluirTarefa" style="display:none">Excluir</button>
<button class="btn-secundario" id="btnCancelarTarefa">Cancelar</button>
<button class="btn-primario" id="btnSalvarTarefa">Salvar</button>
</div>
</div>
</div>
<!-- TOAST -->
<div id="toast"></div>
<script>
// =============================================
// AUTENTICAÇÃO & BOOTSTRAP
// =============================================
const token = localStorage.getItem('fa_token');
const userStr = localStorage.getItem('fa_user');
if (!token) {
window.location.href = 'login.html';
}
let usuario = null;
try { usuario = JSON.parse(userStr); } catch(e) {}
function logout() {
localStorage.removeItem('fa_token');
localStorage.removeItem('fa_user');
window.location.href = 'login.html';
}
document.getElementById('btnLogout').addEventListener('click', logout);
// =============================================
// API HELPERS
// =============================================
async function api(method, path, body) {
const opts = {
method,
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + token
}
};
if (body) opts.body = JSON.stringify(body);
const res = await fetch(path, opts);
if (res.status === 401 || res.status === 403) {
// Token expirado ou inválido
if (res.status === 401) { logout(); return; }
}
const json = await res.json().catch(() => ({}));
if (!res.ok) {
throw new Error(json.message || 'Erro na requisição');
}
return json.data;
}
// =============================================
// TOAST
// =============================================
const toastEl = document.getElementById('toast');
let toastTimer;
function mostrarToast(msg, tipo = 'sucesso') {
clearTimeout(toastTimer);
toastEl.textContent = msg;
toastEl.className = 'visivel ' + tipo;
toastTimer = setTimeout(() => { toastEl.className = ''; }, 3200);
}
// =============================================
// ESTADO GLOBAL
// =============================================
let dataMini = new Date();
let dataGrande = new Date();
let modoAtual = 'mes';
let dataSelecionada = null;
let eventos = [];
let tarefas = [];
let disciplinas = [];
let eventoEditandoId = null;
let tarefaEditandoId = null;
const meses = ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'];
const diasCurto = ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'];
const diasLongo = ['Domingo','Segunda','Terça','Quarta','Quinta','Sexta','Sábado'];
// =============================================
// CARREGA DADOS DO USUÁRIO
// =============================================
async function carregarUsuario() {
try {
const u = await api('GET', '/api/estudantes/me');
usuario = u;
localStorage.setItem('fa_user', JSON.stringify(u));
} catch(e) { /* usa cache */ }
if (usuario) {
document.getElementById('nomeUsuario').textContent = usuario.nome || 'Usuário';
document.getElementById('cursoUsuario').textContent =
usuario.curso ? (usuario.curso + (usuario.periodo ? ' ' + usuario.periodo + 'º período' : '')) : '';
}
}
// =============================================
// CARREGA DADOS DA API
// =============================================
async function carregarDados() {
if (!usuario) return;
const id = usuario.id;
try {
[eventos, tarefas, disciplinas] = await Promise.all([
api('GET', `/api/eventos/estudante/${id}`),
api('GET', `/api/tarefas/estudante/${id}`),
api('GET', `/api/disciplinas/estudante/${id}`)
]);
if (!eventos) eventos = [];
if (!tarefas) tarefas = [];
if (!disciplinas) disciplinas = [];
} catch(e) {
mostrarToast('Erro ao carregar dados: ' + e.message, 'erro');
}
}
function nomeDisciplina(id) {
if (!id) return null;
const d = disciplinas.find(d => d.id === id);
return d ? d.nome : null;
}
// Preenche selects de disciplina nos modais
function preencherSelectsDisciplina() {
['evDisciplina', 'tfDisciplina'].forEach(selId => {
const sel = document.getElementById(selId);
// Remove options exceto a primeira
while (sel.options.length > 1) sel.remove(1);
disciplinas.forEach(d => {
const opt = document.createElement('option');
opt.value = d.id;
opt.textContent = d.nome;
sel.appendChild(opt);
});
});
}
// =============================================
// NORMALIZAÇÃO DE DATAS
// =============================================
function normalizarData(d) {
return new Date(d.getFullYear(), d.getMonth(), d.getDate());
}
function formatarISO(d) {
const a = d.getFullYear();
const m = String(d.getMonth() + 1).padStart(2,'0');
const dia = String(d.getDate()).padStart(2,'0');
return `${a}-${m}-${dia}`;
}
function formatarCurta(d) {
return `${String(d.getDate()).padStart(2,'0')}/${String(d.getMonth()+1).padStart(2,'0')}`;
}
function adicionarDias(d, n) {
const r = new Date(d);
r.setDate(r.getDate() + n);
return r;
}
function inicioSemana(d) {
const r = normalizarData(d);
r.setDate(r.getDate() - r.getDay());
return r;
}
// Pega a data ISO de um evento (pode ser dataHora ou dataEntrega)
function dataDoEvento(ev) {
const raw = ev.dataHora || ev.dataEntrega;
if (!raw) return null;
return raw.substring(0, 10); // 'YYYY-MM-DD'
}
function eventosDaData(iso) {
const evs = eventos.filter(e => dataDoEvento(e) === iso);
const tfs = tarefas.filter(t => t.dataEntrega === iso);
return { evs, tfs };
}
// Cor baseada no tipo do evento
const corPorTipo = { PROVA: 'amarelo', AULA: 'azul', TRABALHO: 'verde', EXAME: 'amarelo', OUTRO: '' };
// =============================================
// MINI CALENDÁRIO
// =============================================
function renderMini() {
const mesEl = document.getElementById('mes');
const diasEl = document.getElementById('dias');
const ano = dataMini.getFullYear();
const mes = dataMini.getMonth();
mesEl.textContent = `${meses[mes]} ${ano}`;
diasEl.replaceChildren();
const primeiroDia = new Date(ano, mes, 1).getDay();
const ultimoDia = new Date(ano, mes + 1, 0).getDate();
const ultimoAnterior = new Date(ano, mes, 0).getDate();
const totalCelulas = Math.ceil((primeiroDia + ultimoDia) / 7) * 7;
let diaAtual = 1, diaPros = 1;
for (let s = 0; s < totalCelulas / 7; s++) {
const linha = document.createElement('tr');
for (let ds = 0; ds < 7; ds++) {
const pos = s * 7 + ds;
const cel = document.createElement('td');
if (pos < primeiroDia) {
cel.textContent = ultimoAnterior - (primeiroDia - pos - 1);
cel.className = 'outromes';
} else if (diaAtual <= ultimoDia) {
cel.textContent = diaAtual;
const hoje = new Date();
if (diaAtual === hoje.getDate() && mes === hoje.getMonth() && ano === hoje.getFullYear()) {
cel.className = 'today';
}
const d = diaAtual;
cel.addEventListener('click', () => {
dataSelecionada = new Date(ano, mes, d);
dataGrande = new Date(dataSelecionada);
renderCalendarioGrande();
renderMini();
});
diaAtual++;
} else {
cel.textContent = diaPros++;
cel.className = 'outromes';
}
linha.appendChild(cel);
}
diasEl.appendChild(linha);
}
}
// =============================================
// AGENDA DO DIA (barra esquerda)
// =============================================
function renderAgenda() {
const container = document.getElementById('agenda');
container.replaceChildren();
const header = document.createElement('div');
header.className = 'agenda-header';
header.innerHTML = '<strong>HOJE</strong> ' +
new Intl.DateTimeFormat('pt-BR').format(new Date());
container.appendChild(header);
const hoje = formatarISO(normalizarData(new Date()));
const { evs, tfs } = eventosDaData(hoje);
const tudo = [
...evs.map(e => ({ titulo: e.titulo, hora: e.dataHora ? e.dataHora.substring(11,16) : '', tipo: 'evento' })),
...tfs.map(t => ({ titulo: t.titulo, hora: '', tipo: 'tarefa' }))
];
if (tudo.length === 0) {
const vazio = document.createElement('div');
vazio.className = 'agenda-empty';
vazio.textContent = 'Sem eventos para hoje.';
container.appendChild(vazio);
return;
}
tudo.forEach(item => {
const ev = document.createElement('div');
ev.className = 'evento';
ev.innerHTML = `<div class="hora">${item.hora || (item.tipo === 'tarefa' ? '📋 Tarefa' : '')}</div>
<div class="titulo">${item.titulo}</div>`;
container.appendChild(ev);
});
}
// =============================================
// FERIADOS (fixos Brasil)
// =============================================
function renderFeriados() {
const container = document.getElementById('feriados');
container.replaceChildren();
const header = document.createElement('div');
header.className = 'feriados-header';
header.textContent = 'FERIADOS NACIONAIS';
container.appendChild(header);
const feriadosMes = [
{ mes: 0, dia: 1, texto: '01 Jan Ano Novo' },
{ mes: 3, dia: 21, texto: '21 Abr Tiradentes' },
{ mes: 4, dia: 1, texto: '01 Mai Dia do Trabalho' },
{ mes: 8, dia: 7, texto: '07 Set Independência' },
{ mes: 9, dia: 12, texto: '12 Out N. Sra. Aparecida' },
{ mes: 10, dia: 2, texto: '02 Nov Finados' },
{ mes: 10, dia: 15, texto: '15 Nov República' },
{ mes: 11, dia: 25, texto: '25 Dez Natal' },
].filter(f => f.mes === dataMini.getMonth());
if (feriadosMes.length === 0) {
const item = document.createElement('div');
item.className = 'feriado';
item.innerHTML = '<span style="opacity:0.6;font-size:12px">Nenhum este mês</span>';
container.appendChild(item);
return;
}
feriadosMes.forEach(f => {
const item = document.createElement('div');
item.className = 'feriado';
item.innerHTML = `<span class="dot"></span><span>${f.texto}</span>`;
container.appendChild(item);
});
}
// =============================================
// CALENDÁRIO GRANDE
// =============================================
function atualizarTituloGrande() {
const titulo = document.querySelector('.titulo-mes');
if (modoAtual === 'mes') {
titulo.textContent = `${meses[dataGrande.getMonth()]}, ${dataGrande.getFullYear()}`;
} else if (modoAtual === 'semana') {
const ini = inicioSemana(dataGrande);
const fim = adicionarDias(ini, 6);
titulo.textContent = `Semana ${formatarCurta(ini)} ${formatarCurta(fim)}/${fim.getFullYear()}`;
} else {
titulo.textContent = `${diasLongo[dataGrande.getDay()]}, ${formatarCurta(dataGrande)}/${dataGrande.getFullYear()}`;
}
}
function configurarArea(classe) {
const area = document.getElementById('calendarArea');
area.className = 'calendar-area ' + classe;
area.replaceChildren();
return area;
}
function criarCardEvento(ev, isTarefa) {
const card = document.createElement('div');
const cor = isTarefa ? 'verde' : (corPorTipo[ev.tipo] || '');
card.className = `calendar-event ${cor}`;
card.innerHTML = `
<div class="calendar-event-hora">${isTarefa ? '📋 Tarefa' : (ev.dataHora ? ev.dataHora.substring(11,16) : '')}</div>
<div class="calendar-event-titulo">${ev.titulo}</div>`;
card.addEventListener('click', (e) => {
e.stopPropagation();
if (isTarefa) abrirModalTarefa(ev);
else abrirModalEvento(ev);
});
return card;
}
/* MÊS */
function renderMes() {
const area = configurarArea('month-view');
atualizarTituloGrande();
diasCurto.forEach(d => {
const el = document.createElement('div');
el.className = 'dia-semana';
el.textContent = d;
area.appendChild(el);
});
const ano = dataGrande.getFullYear(), mes = dataGrande.getMonth();
const primeiroDia = new Date(ano, mes, 1).getDay();
const ultimoDia = new Date(ano, mes + 1, 0).getDate();
const anteriorUltimo = new Date(ano, mes, 0).getDate();
const hoje = normalizarData(new Date());
for (let i = 0; i < 42; i++) {
const box = document.createElement('div');
box.className = 'dia-box';
let dNum, dData, outroMes = false;
if (i < primeiroDia) {
dNum = anteriorUltimo - (primeiroDia - i - 1);
dData = new Date(ano, mes - 1, dNum);
outroMes = true;
} else if (i < primeiroDia + ultimoDia) {
dNum = i - primeiroDia + 1;
dData = new Date(ano, mes, dNum);
} else {
dNum = i - primeiroDia - ultimoDia + 1;
dData = new Date(ano, mes + 1, dNum);
outroMes = true;
}
if (outroMes) box.classList.add('outro-mes');
const iso = formatarISO(dData);
const isHoje = !outroMes && normalizarData(dData).getTime() === hoje.getTime();
if (isHoje) box.classList.add('today');
if (dataSelecionada && iso === formatarISO(normalizarData(dataSelecionada))) {
box.classList.add('selecionado');
}
const numEl = document.createElement('div');
numEl.className = 'num-dia';
numEl.textContent = dNum;
box.appendChild(numEl);
// Mostra até 3 eventos
const { evs, tfs } = eventosDaData(iso);
const todos = [...evs.map(e => ({ ...e, _tipo: 'evento' })), ...tfs.map(t => ({ ...t, _tipo: 'tarefa' }))];
const limite = 2;
todos.slice(0, limite).forEach(item => {
const mini = document.createElement('div');
const isTarefa = item._tipo === 'tarefa';
mini.className = 'evento-mini ' + (isTarefa ? 'verde' : (corPorTipo[item.tipo] || ''));
mini.textContent = item.titulo;
box.appendChild(mini);
});
if (todos.length > limite) {
const mais = document.createElement('div');
mais.className = 'mais-eventos';
mais.textContent = `+${todos.length - limite} mais`;
box.appendChild(mais);
}
box.addEventListener('click', () => {
dataSelecionada = dData;
dataGrande = new Date(dData);
renderCalendarioGrande();
renderMini();
});
area.appendChild(box);
}
}
/* SEMANA */
function renderSemana() {
const area = configurarArea('week-view');
atualizarTituloGrande();
const ini = inicioSemana(dataGrande);
const hoje = normalizarData(new Date());
for (let i = 0; i < 7; i++) {
const d = adicionarDias(ini, i);
const iso = formatarISO(d);
const { evs, tfs } = eventosDaData(iso);
const col = document.createElement('div');
col.className = 'week-col';
if (normalizarData(d).getTime() === hoje.getTime()) col.classList.add('today');
const head = document.createElement('div');
head.className = 'week-col-head';
head.textContent = diasCurto[d.getDay()];
const dt = document.createElement('span');
dt.className = 'week-col-date';
dt.textContent = `${formatarCurta(d)}/${d.getFullYear()}`;
head.appendChild(dt);
const lista = document.createElement('div');
lista.className = 'week-events';
const todos = [...evs.map(e => ({ ...e, _tipo: 'evento' })), ...tfs.map(t => ({ ...t, _tipo: 'tarefa' }))];
if (todos.length === 0) {
const vazio = document.createElement('div');
vazio.className = 'week-empty';
vazio.textContent = 'Sem eventos';
lista.appendChild(vazio);
} else {
todos.forEach(item => lista.appendChild(criarCardEvento(item, item._tipo === 'tarefa')));
}
col.appendChild(head);
col.appendChild(lista);
area.appendChild(col);
}
}
/* DIA */
function renderDia() {
const area = configurarArea('day-view');
atualizarTituloGrande();
const iso = formatarISO(normalizarData(dataGrande));
const { evs, tfs } = eventosDaData(iso);
const painel = document.createElement('div');
painel.className = 'day-panel';
const head = document.createElement('div');
head.className = 'day-panel-header';
head.textContent = `Agenda de ${formatarCurta(dataGrande)}/${dataGrande.getFullYear()}`;
painel.appendChild(head);
const lista = document.createElement('div');
lista.className = 'day-events';
const todos = [...evs.map(e => ({ ...e, _tipo: 'evento' })), ...tfs.map(t => ({ ...t, _tipo: 'tarefa' }))];
if (todos.length === 0) {
const vazio = document.createElement('div');
vazio.className = 'day-empty';
vazio.textContent = 'Nenhum evento para este dia.';
lista.appendChild(vazio);
} else {
todos.forEach(item => lista.appendChild(criarCardEvento(item, item._tipo === 'tarefa')));
}
painel.appendChild(lista);
area.appendChild(painel);
}
function renderCalendarioGrande() {
if (modoAtual === 'dia') renderDia();
else if (modoAtual === 'semana') renderSemana();
else renderMes();
}
function moverPeriodo(dir) {
if (modoAtual === 'dia') dataGrande.setDate(dataGrande.getDate() + dir);
else if (modoAtual === 'semana') dataGrande.setDate(dataGrande.getDate() + dir * 7);
else dataGrande.setMonth(dataGrande.getMonth() + dir);
renderCalendarioGrande();
atualizarTituloGrande();
}
// =============================================
// MODAL DE EVENTO
// =============================================
function abrirModalEvento(ev) {
eventoEditandoId = ev ? ev.id : null;
const titulo = document.getElementById('modalEventoTitulo');
const btnExcluir = document.getElementById('btnExcluirEvento');
titulo.textContent = ev ? 'Editar Evento' : 'Novo Evento';
btnExcluir.style.display = ev ? 'inline-block' : 'none';
// Preenche ou limpa campos
document.getElementById('evTitulo').value = ev ? ev.titulo : '';
document.getElementById('evDescricao').value = ev ? (ev.descricao || '') : '';
document.getElementById('evTipo').value = ev ? (ev.tipo || 'OUTRO') : 'OUTRO';
document.getElementById('evLocal').value = ev ? (ev.local || '') : '';
if (ev && ev.dataHora) {
// dataHora vem como "2025-04-01T14:00:00" datetime-local precisa de "2025-04-01T14:00"
document.getElementById('evData').value = ev.dataHora.substring(0, 16);
} else if (dataSelecionada) {
const iso = formatarISO(normalizarData(dataSelecionada));
document.getElementById('evData').value = iso + 'T08:00';
} else {
document.getElementById('evData').value = '';
}
document.getElementById('evDisciplina').value = ev ? (ev.disciplinaId || '') : '';
document.getElementById('modalEvento').classList.add('aberto');
document.getElementById('evTitulo').focus();
}
document.getElementById('btnNovoEvento').addEventListener('click', () => abrirModalEvento(null));
document.getElementById('btnCancelarEvento').addEventListener('click', () => {
document.getElementById('modalEvento').classList.remove('aberto');
});
document.getElementById('btnSalvarEvento').addEventListener('click', async () => {
const titulo = document.getElementById('evTitulo').value.trim();
const dataHoraRaw = document.getElementById('evData').value;
if (!titulo) { mostrarToast('Título é obrigatório.', 'erro'); return; }
if (!dataHoraRaw) { mostrarToast('Data e hora são obrigatórias.', 'erro'); return; }
const btn = document.getElementById('btnSalvarEvento');
btn.disabled = true;
const payload = {
titulo,
descricao: document.getElementById('evDescricao').value.trim() || null,
tipo: document.getElementById('evTipo').value,
local: document.getElementById('evLocal').value.trim() || null,
disciplinaId: document.getElementById('evDisciplina').value || null,
dataHora: dataHoraRaw + ':00', // adiciona segundos
estudanteId: usuario.id
};
try {
if (eventoEditandoId) {
const updated = await api('PUT', `/api/eventos/${eventoEditandoId}`, payload);
const idx = eventos.findIndex(e => e.id === eventoEditandoId);
if (idx !== -1) eventos[idx] = updated;
mostrarToast('Evento atualizado!');
} else {
const novo = await api('POST', '/api/eventos', payload);
eventos.push(novo);
mostrarToast('Evento criado!');
}
document.getElementById('modalEvento').classList.remove('aberto');
renderCalendarioGrande();
renderAgenda();
} catch(e) {
mostrarToast('Erro: ' + e.message, 'erro');
} finally {
btn.disabled = false;
}
});
document.getElementById('btnExcluirEvento').addEventListener('click', async () => {
if (!confirm('Excluir este evento?')) return;
try {
await api('DELETE', `/api/eventos/${eventoEditandoId}?estudanteId=${usuario.id}`);
eventos = eventos.filter(e => e.id !== eventoEditandoId);
document.getElementById('modalEvento').classList.remove('aberto');
mostrarToast('Evento excluído.', 'sucesso');
renderCalendarioGrande();
renderAgenda();
} catch(e) {
mostrarToast('Erro: ' + e.message, 'erro');
}
});
// =============================================
// MODAL DE TAREFA
// =============================================
function abrirModalTarefa(tf) {
tarefaEditandoId = tf ? tf.id : null;
const titulo = document.getElementById('modalTarefaTitulo');
const btnExcluir = document.getElementById('btnExcluirTarefa');
titulo.textContent = tf ? 'Editar Tarefa' : 'Nova Tarefa';
btnExcluir.style.display = tf ? 'inline-block' : 'none';
document.getElementById('tfTitulo').value = tf ? tf.titulo : '';
document.getElementById('tfDescricao').value = tf ? (tf.descricao || '') : '';
document.getElementById('tfPrioridade').value = tf ? (tf.prioridade || 'MEDIA') : 'MEDIA';
document.getElementById('tfStatus').value = tf ? (tf.status || 'PENDENTE') : 'PENDENTE';
document.getElementById('tfDisciplina').value = tf ? (tf.disciplinaId || '') : '';
if (tf && tf.dataEntrega) {
document.getElementById('tfData').value = tf.dataEntrega;
} else if (dataSelecionada) {
document.getElementById('tfData').value = formatarISO(normalizarData(dataSelecionada));
} else {
document.getElementById('tfData').value = '';
}
document.getElementById('modalTarefa').classList.add('aberto');
document.getElementById('tfTitulo').focus();
}
document.getElementById('btnCancelarTarefa').addEventListener('click', () => {
document.getElementById('modalTarefa').classList.remove('aberto');
});
document.getElementById('btnSalvarTarefa').addEventListener('click', async () => {
const titulo = document.getElementById('tfTitulo').value.trim();
const dataEntrega = document.getElementById('tfData').value;
if (!titulo) { mostrarToast('Título é obrigatório.', 'erro'); return; }
if (!dataEntrega) { mostrarToast('Data de entrega é obrigatória.', 'erro'); return; }
const btn = document.getElementById('btnSalvarTarefa');
btn.disabled = true;
const payload = {
titulo,
descricao: document.getElementById('tfDescricao').value.trim() || null,
prioridade: document.getElementById('tfPrioridade').value,
status: document.getElementById('tfStatus').value,
dataEntrega,
disciplinaId: document.getElementById('tfDisciplina').value || null,
estudanteId: usuario.id
};
try {
if (tarefaEditandoId) {
const updated = await api('PUT', `/api/tarefas/${tarefaEditandoId}`, payload);
const idx = tarefas.findIndex(t => t.id === tarefaEditandoId);
if (idx !== -1) tarefas[idx] = updated;
mostrarToast('Tarefa atualizada!');
} else {
const nova = await api('POST', '/api/tarefas', payload);
tarefas.push(nova);
mostrarToast('Tarefa criada!');
}
document.getElementById('modalTarefa').classList.remove('aberto');
renderCalendarioGrande();
renderAgenda();
} catch(e) {
mostrarToast('Erro: ' + e.message, 'erro');
} finally {
btn.disabled = false;
}
});
document.getElementById('btnExcluirTarefa').addEventListener('click', async () => {
if (!confirm('Excluir esta tarefa?')) return;
try {
await api('DELETE', `/api/tarefas/${tarefaEditandoId}`);
tarefas = tarefas.filter(t => t.id !== tarefaEditandoId);
document.getElementById('modalTarefa').classList.remove('aberto');
mostrarToast('Tarefa excluída.', 'sucesso');
renderCalendarioGrande();
renderAgenda();
} catch(e) {
mostrarToast('Erro: ' + e.message, 'erro');
}
});
// Fecha modais clicando no overlay
document.querySelectorAll('.modal-overlay').forEach(overlay => {
overlay.addEventListener('click', (e) => {
if (e.target === overlay) overlay.classList.remove('aberto');
});
});
// Fecha modais com ESC
document.addEventListener('keydown', e => {
if (e.key === 'Escape') {
document.querySelectorAll('.modal-overlay.aberto').forEach(m => m.classList.remove('aberto'));
}
});
// =============================================
// NAVEGAÇÃO E VIEW SWITCH
// =============================================
document.querySelector('.prox').onclick = () => { dataMini.setMonth(dataMini.getMonth() + 1); renderMini(); renderFeriados(); };
document.querySelector('.ant').onclick = () => { dataMini.setMonth(dataMini.getMonth() - 1); renderMini(); renderFeriados(); };
document.querySelector('.antGrande').onclick = () => moverPeriodo(-1);
document.querySelector('.proxGrande').onclick = () => moverPeriodo(1);
document.querySelectorAll('.view-switch button').forEach(btn => {
btn.addEventListener('click', () => {
modoAtual = btn.dataset.view;
document.querySelectorAll('.view-switch button').forEach(b => b.classList.toggle('active', b === btn));
renderCalendarioGrande();
});
});
// Duplo clique em dia abre modal de novo evento
document.getElementById('calendarArea').addEventListener('dblclick', (e) => {
abrirModalEvento(null);
});
// =============================================
// INICIALIZAÇÃO
// =============================================
async function init() {
// Mostra spinner enquanto carrega
document.getElementById('calendarArea').innerHTML =
'<div class="loading"><div class="spinner"></div>Carregando...</div>';
await carregarUsuario();
await carregarDados();
preencherSelectsDisciplina();
renderMini();
renderCalendarioGrande();
renderAgenda();
renderFeriados();
}
init();
</script>
</body>
</html>
+24
View File
@@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to check the commit log message.
# Called by "git commit" with one argument, the name of the file
# that has the commit message. The hook should exit with non-zero
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, rename this file to "commit-msg".
# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
# hook is more suited to it.
#
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
# This example catches duplicate Signed-off-by lines.
test "" = "$(grep '^Signed-off-by: ' "$1" |
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
echo >&2 Duplicate Signed-off-by lines.
exit 1
}
+13
View File
@@ -0,0 +1,13 @@
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = https://git.morpheusnox.shop/axel/FocusAgenda.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
merge = refs/heads/main
+1
View File
@@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

+6
View File
@@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~
+174
View File
@@ -0,0 +1,174 @@
#!/usr/bin/perl
use strict;
use warnings;
use IPC::Open2;
# An example hook script to integrate Watchman
# (https://facebook.github.io/watchman/) with git to speed up detecting
# new and modified files.
#
# The hook is passed a version (currently 2) and last update token
# formatted as a string and outputs to stdout a new update token and
# all files that have been modified since the update token. Paths must
# be relative to the root of the working tree and separated by a single NUL.
#
# To enable this hook, rename this file to "query-watchman" and set
# 'git config core.fsmonitor .git/hooks/query-watchman'
#
my ($version, $last_update_token) = @ARGV;
# Uncomment for debugging
# print STDERR "$0 $version $last_update_token\n";
# Check the hook interface version
if ($version ne 2) {
die "Unsupported query-fsmonitor hook version '$version'.\n" .
"Falling back to scanning...\n";
}
my $git_work_tree = get_working_dir();
my $retry = 1;
my $json_pkg;
eval {
require JSON::XS;
$json_pkg = "JSON::XS";
1;
} or do {
require JSON::PP;
$json_pkg = "JSON::PP";
};
launch_watchman();
sub launch_watchman {
my $o = watchman_query();
if (is_work_tree_watched($o)) {
output_result($o->{clock}, @{$o->{files}});
}
}
sub output_result {
my ($clockid, @files) = @_;
# Uncomment for debugging watchman output
# open (my $fh, ">", ".git/watchman-output.out");
# binmode $fh, ":utf8";
# print $fh "$clockid\n@files\n";
# close $fh;
binmode STDOUT, ":utf8";
print $clockid;
print "\0";
local $, = "\0";
print @files;
}
sub watchman_clock {
my $response = qx/watchman clock "$git_work_tree"/;
die "Failed to get clock id on '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
return $json_pkg->new->utf8->decode($response);
}
sub watchman_query {
my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty')
or die "open2() failed: $!\n" .
"Falling back to scanning...\n";
# In the query expression below we're asking for names of files that
# changed since $last_update_token but not from the .git folder.
#
# To accomplish this, we're using the "since" generator to use the
# recency index to select candidate nodes and "fields" to limit the
# output to file names only. Then we're using the "expression" term to
# further constrain the results.
my $last_update_line = "";
if (substr($last_update_token, 0, 1) eq "c") {
$last_update_token = "\"$last_update_token\"";
$last_update_line = qq[\n"since": $last_update_token,];
}
my $query = <<" END";
["query", "$git_work_tree", {$last_update_line
"fields": ["name"],
"expression": ["not", ["dirname", ".git"]]
}]
END
# Uncomment for debugging the watchman query
# open (my $fh, ">", ".git/watchman-query.json");
# print $fh $query;
# close $fh;
print CHLD_IN $query;
close CHLD_IN;
my $response = do {local $/; <CHLD_OUT>};
# Uncomment for debugging the watch response
# open ($fh, ">", ".git/watchman-response.json");
# print $fh $response;
# close $fh;
die "Watchman: command returned no output.\n" .
"Falling back to scanning...\n" if $response eq "";
die "Watchman: command returned invalid output: $response\n" .
"Falling back to scanning...\n" unless $response =~ /^\{/;
return $json_pkg->new->utf8->decode($response);
}
sub is_work_tree_watched {
my ($output) = @_;
my $error = $output->{error};
if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) {
$retry--;
my $response = qx/watchman watch "$git_work_tree"/;
die "Failed to make watchman watch '$git_work_tree'.\n" .
"Falling back to scanning...\n" if $? != 0;
$output = $json_pkg->new->utf8->decode($response);
$error = $output->{error};
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
# Uncomment for debugging watchman output
# open (my $fh, ">", ".git/watchman-output.out");
# close $fh;
# Watchman will always return all files on the first query so
# return the fast "everything is dirty" flag to git and do the
# Watchman query just to get it over with now so we won't pay
# the cost in git to look up each individual file.
my $o = watchman_clock();
$error = $output->{error};
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
output_result($o->{clock}, ("/"));
$last_update_token = $o->{clock};
eval { launch_watchman() };
return 0;
}
die "Watchman: $error.\n" .
"Falling back to scanning...\n" if $error;
return 1;
}
sub get_working_dir {
my $working_dir;
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
$working_dir = Win32::GetCwd();
$working_dir =~ tr/\\/\//;
} else {
require Cwd;
$working_dir = Cwd::cwd();
}
return $working_dir;
}
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

BIN
View File
Binary file not shown.
+11
View File
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0;url=login.html">
<title>Focus Agenda</title>
</head>
<body>
<script>window.location.href='login.html';</script>
</body>
</html>
+99
View File
@@ -0,0 +1,99 @@
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
min-height: 100vh;
font-family: 'Poppins', 'Trebuchet MS', Arial, sans-serif;
display: flex;
align-items: center;
justify-content: center;
padding: 80px 20px 20px;
background: #f5f5f5;
}
#topo {
width: 100%;
height: 50px;
position: fixed;
top: 0; left: 0;
background: linear-gradient(to right, #c0392b 47%, #7a4951 73%, #114455 87%);
display: flex;
align-items: center;
z-index: 10;
}
#textotop {
padding-left: 20px;
font-size: clamp(22px, 5vw, 38px);
color: #fff;
}
#log {
width: 100%;
max-width: 360px;
display: flex;
flex-direction: column;
gap: 16px;
background-color: white;
border: rgba(0, 0, 0, 0.174) solid 3px;
border-radius: 10px;
padding: 10px;
border-top: 0px;
border-left: 0px;
}
.mens { text-align: center; color: #1f2937; }
.campo { display: flex; flex-direction: column; gap: 8px; }
label { font-weight: 700; color: #1f2937; }
input[type="email"], input[type="password"] {
height: 46px;
width: 100%;
padding: 10px;
font-size: 16px;
border: 1px solid #c7c7c7;
border-radius: 6px;
font-family: inherit;
}
form { display: flex; flex-direction: column; gap: 16px; }
#logbtn {
align-self: center;
width: 50%;
padding: 12px;
font-size: 18px;
font-weight: bold;
background-color: #c0392b;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s ease;
border: rgba(124, 20, 20, 0.496) solid 2px;
border-radius: 10px;
padding: 10px;
border-top: 0px;
border-left: 0px;
}
#logbtn:hover { background-color: #114455;
border: #14323c6f solid 2px;
border-radius: 10px;
padding: 10px;
border-top: 0px;
border-left: 0px;}
#logbtn:disabled { background-color: #ccc; cursor: not-allowed; }
a { color: #111; text-decoration: none; }
a:hover { text-decoration: underline; }
#mensagem-erro {
background: #fee2e2;
border: 1px solid #fca5a5;
color: #b91c1c;
padding: 10px 14px;
border-radius: 6px;
font-size: 14px;
display: none;
}
+97
View File
@@ -0,0 +1,97 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="imagens/icone.png">
<link rel="stylesheet" href="login.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<title>Login Focus Agenda</title>
</head>
<body>
<div id="topo">
<h1 id="textotop">Focus Agenda</h1>
</div>
<div id="log">
<h1 class="mens">Bem-vindo!</h1>
<h3 class="mens">Faça seu login</h3>
<div id="mensagem-erro" role="alert"></div>
<form id="loginForm" novalidate>
<div class="campo">
<label for="emailid">Email</label>
<input type="email" placeholder="Digite seu email" id="emailid" autocomplete="email" required>
</div>
<div class="campo">
<label for="senhaid">Senha</label>
<input type="password" placeholder="Digite sua senha" id="senhaid" autocomplete="current-password" required>
</div>
<button type="submit" id="logbtn">Entrar</button>
</form>
<p class="mens"><a href="cadastro.html">Cadastrar-se</a></p>
</div>
<script>
// Se já tiver token válido, redireciona direto
(function () {
if (localStorage.getItem('fa_token')) {
window.location.href = 'calendario.html';
}
})();
const form = document.getElementById('loginForm');
const erroEl = document.getElementById('mensagem-erro');
const btn = document.getElementById('logbtn');
function mostrarErro(msg) {
erroEl.textContent = msg;
erroEl.style.display = 'block';
}
form.addEventListener('submit', async (e) => {
e.preventDefault();
erroEl.style.display = 'none';
const email = document.getElementById('emailid').value.trim();
const senha = document.getElementById('senhaid').value;
if (!email || !senha) {
mostrarErro('Preencha todos os campos.');
return;
}
btn.disabled = true;
btn.textContent = 'Entrando...';
try {
const res = await fetch('/api/estudantes/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ email, senha })
});
const json = await res.json();
if (!res.ok) {
mostrarErro(json.message || 'Email ou senha incorretos.');
return;
}
// Salva token e dados do usuário
localStorage.setItem('fa_token', json.data.token);
localStorage.setItem('fa_user', JSON.stringify(json.data.estudante));
window.location.href = 'calendario.html';
} catch (err) {
mostrarErro('Erro de conexão. Verifique se o servidor está rodando.');
} finally {
btn.disabled = false;
btn.textContent = 'Entrar';
}
});
</script>
</body>
</html>
+1
View File
@@ -0,0 +1 @@
02cfd71cf4d0075701aa28ffec79d5047bc80214
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3
View File
@@ -0,0 +1,3 @@
# pack-refs with: peeled fully-peeled sorted
02cfd71cf4d0075701aa28ffec79d5047bc80214 refs/remotes/origin/main
aaa2b25ad793d5554c6715d4f17ff94b09a199ec refs/remotes/origin/master
+141
View File
@@ -0,0 +1,141 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0</version>
<relativePath/>
</parent>
<groupId>com.agendaestudantil</groupId>
<artifactId>agenda-digital-estudantes</artifactId>
<version>1.0.0</version>
<name>Agenda Digital para Estudantes</name>
<description>Backend para agenda digital destinado a estudantes com dificuldade de organização</description>
<properties>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<lombok.version>1.18.30</lombok.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.12.3</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.12.6</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.12.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
+8
View File
@@ -0,0 +1,8 @@
#!/bin/sh
#
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, rename this file to "post-update".
exec git update-server-info
+14
View File
@@ -0,0 +1,14 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".
. git-sh-setup
precommit="$(git rev-parse --git-path hooks/pre-commit)"
test -x "$precommit" && exec "$precommit" ${1+"$@"}
:
+49
View File
@@ -0,0 +1,49 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git commit" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-commit".
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=$(git hash-object -t tree /dev/null)
fi
# If you want to allow non-ASCII filenames set this variable to true.
allownonascii=$(git config --type=bool hooks.allownonascii)
# Redirect output to stderr.
exec 1>&2
# Cross platform projects tend to avoid non-ASCII filenames; prevent
# them from being added to the repository. We exploit the fact that the
# printable range starts at the space character and ends with tilde.
if [ "$allownonascii" != "true" ] &&
# Note that the use of brackets around a tr range is ok here, (it's
# even required, for portability to Solaris 10's /usr/bin/tr), since
# the square bracket bytes happen to fall in the designated range.
test $(git diff-index --cached --name-only --diff-filter=A -z $against |
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
then
cat <<\EOF
Error: Attempt to add a non-ASCII file name.
This can cause problems if you want to work with people on other platforms.
To be portable it is advisable to rename the file.
If you know what you are doing you can disable this check using:
git config hooks.allownonascii true
EOF
exit 1
fi
# If there are whitespace errors, print the offending file names and fail.
exec git diff-index --check --cached $against --
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
#
# An example hook script to verify what is about to be committed.
# Called by "git merge" with no arguments. The hook should
# exit with non-zero status after issuing an appropriate message to
# stderr if it wants to stop the merge commit.
#
# To enable this hook, rename this file to "pre-merge-commit".
. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
exec "$GIT_DIR/hooks/pre-commit"
:
+53
View File
@@ -0,0 +1,53 @@
#!/bin/sh
# An example hook script to verify what is about to be pushed. Called by "git
# push" after it has checked the remote status, but before anything has been
# pushed. If this script exits with a non-zero status nothing will be pushed.
#
# This hook is called with the following parameters:
#
# $1 -- Name of the remote to which the push is being done
# $2 -- URL to which the push is being done
#
# If pushing without using a named remote those arguments will be equal.
#
# Information about the commits which are being pushed is supplied as lines to
# the standard input in the form:
#
# <local ref> <local oid> <remote ref> <remote oid>
#
# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).
remote="$1"
url="$2"
zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
while read local_ref local_oid remote_ref remote_oid
do
if test "$local_oid" = "$zero"
then
# Handle delete
:
else
if test "$remote_oid" = "$zero"
then
# New branch, examine all commits
range="$local_oid"
else
# Update to existing branch, examine new commits
range="$remote_oid..$local_oid"
fi
# Check for WIP commit
commit=$(git rev-list -n 1 --grep '^WIP' "$range")
if test -n "$commit"
then
echo >&2 "Found WIP commit in $local_ref, not pushing"
exit 1
fi
fi
done
exit 0
+169
View File
@@ -0,0 +1,169 @@
#!/bin/sh
#
# Copyright (c) 2006, 2008 Junio C Hamano
#
# The "pre-rebase" hook is run just before "git rebase" starts doing
# its job, and can prevent the command from running by exiting with
# non-zero status.
#
# The hook is called with the following parameters:
#
# $1 -- the upstream the series was forked from.
# $2 -- the branch being rebased (or empty when rebasing the current branch).
#
# This sample shows how to prevent topic branches that are already
# merged to 'next' branch from getting rebased, because allowing it
# would result in rebasing already published history.
publish=next
basebranch="$1"
if test "$#" = 2
then
topic="refs/heads/$2"
else
topic=`git symbolic-ref HEAD` ||
exit 0 ;# we do not interrupt rebasing detached HEAD
fi
case "$topic" in
refs/heads/??/*)
;;
*)
exit 0 ;# we do not interrupt others.
;;
esac
# Now we are dealing with a topic branch being rebased
# on top of master. Is it OK to rebase it?
# Does the topic really exist?
git show-ref -q "$topic" || {
echo >&2 "No such branch $topic"
exit 1
}
# Is topic fully merged to master?
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
if test -z "$not_in_master"
then
echo >&2 "$topic is fully merged to master; better remove it."
exit 1 ;# we could allow it, but there is no point.
fi
# Is topic ever merged to next? If so you should not be rebasing it.
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
only_next_2=`git rev-list ^master ${publish} | sort`
if test "$only_next_1" = "$only_next_2"
then
not_in_topic=`git rev-list "^$topic" master`
if test -z "$not_in_topic"
then
echo >&2 "$topic is already up to date with master"
exit 1 ;# we could allow it, but there is no point.
else
exit 0
fi
else
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
/usr/bin/perl -e '
my $topic = $ARGV[0];
my $msg = "* $topic has commits already merged to public branch:\n";
my (%not_in_next) = map {
/^([0-9a-f]+) /;
($1 => 1);
} split(/\n/, $ARGV[1]);
for my $elem (map {
/^([0-9a-f]+) (.*)$/;
[$1 => $2];
} split(/\n/, $ARGV[2])) {
if (!exists $not_in_next{$elem->[0]}) {
if ($msg) {
print STDERR $msg;
undef $msg;
}
print STDERR " $elem->[1]\n";
}
}
' "$topic" "$not_in_next" "$not_in_master"
exit 1
fi
<<\DOC_END
This sample hook safeguards topic branches that have been
published from being rewound.
The workflow assumed here is:
* Once a topic branch forks from "master", "master" is never
merged into it again (either directly or indirectly).
* Once a topic branch is fully cooked and merged into "master",
it is deleted. If you need to build on top of it to correct
earlier mistakes, a new topic branch is created by forking at
the tip of the "master". This is not strictly necessary, but
it makes it easier to keep your history simple.
* Whenever you need to test or publish your changes to topic
branches, merge them into "next" branch.
The script, being an example, hardcodes the publish branch name
to be "next", but it is trivial to make it configurable via
$GIT_DIR/config mechanism.
With this workflow, you would want to know:
(1) ... if a topic branch has ever been merged to "next". Young
topic branches can have stupid mistakes you would rather
clean up before publishing, and things that have not been
merged into other branches can be easily rebased without
affecting other people. But once it is published, you would
not want to rewind it.
(2) ... if a topic branch has been fully merged to "master".
Then you can delete it. More importantly, you should not
build on top of it -- other people may already want to
change things related to the topic as patches against your
"master", so if you need further changes, it is better to
fork the topic (perhaps with the same name) afresh from the
tip of "master".
Let's look at this example:
o---o---o---o---o---o---o---o---o---o "next"
/ / / /
/ a---a---b A / /
/ / / /
/ / c---c---c---c B /
/ / / \ /
/ / / b---b C \ /
/ / / / \ /
---o---o---o---o---o---o---o---o---o---o---o "master"
A, B and C are topic branches.
* A has one fix since it was merged up to "next".
* B has finished. It has been fully merged up to "master" and "next",
and is ready to be deleted.
* C has not merged to "next" at all.
We would want to allow C to be rebased, refuse A, and encourage
B to be deleted.
To compute (1):
git rev-list ^master ^topic next
git rev-list ^master next
if these match, topic has not merged in next at all.
To compute (2):
git rev-list master..topic
if this is empty, it is fully merged to "master".
DOC_END
+24
View File
@@ -0,0 +1,24 @@
#!/bin/sh
#
# An example hook script to make use of push options.
# The example simply echoes all push options that start with 'echoback='
# and rejects all pushes when the "reject" push option is used.
#
# To enable this hook, rename this file to "pre-receive".
if test -n "$GIT_PUSH_OPTION_COUNT"
then
i=0
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
do
eval "value=\$GIT_PUSH_OPTION_$i"
case "$value" in
echoback=*)
echo "echo from the pre-receive-hook: ${value#*=}" >&2
;;
reject)
exit 1
esac
i=$((i + 1))
done
fi
+42
View File
@@ -0,0 +1,42 @@
#!/bin/sh
#
# An example hook script to prepare the commit log message.
# Called by "git commit" with the name of the file that has the
# commit message, followed by the description of the commit
# message's source. The hook's purpose is to edit the commit
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, rename this file to "prepare-commit-msg".
# This hook includes three examples. The first one removes the
# "# Please enter the commit message..." help message.
#
# The second includes the output of "git diff --name-status -r"
# into the message, just before the "git status" output. It is
# commented because it doesn't cope with --amend or with squashed
# commits.
#
# The third example adds a Signed-off-by line to the message, that can
# still be edited. This is rarely a good idea.
COMMIT_MSG_FILE=$1
COMMIT_SOURCE=$2
SHA1=$3
/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE"
# case "$COMMIT_SOURCE,$SHA1" in
# ,|template,)
# /usr/bin/perl -i.bak -pe '
# print "\n" . `git diff --cached --name-status -r`
# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;;
# *) ;;
# esac
# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE"
# if test -z "$COMMIT_SOURCE"
# then
# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE"
# fi
+78
View File
@@ -0,0 +1,78 @@
#!/bin/sh
# An example hook script to update a checked-out tree on a git push.
#
# This hook is invoked by git-receive-pack(1) when it reacts to git
# push and updates reference(s) in its repository, and when the push
# tries to update the branch that is currently checked out and the
# receive.denyCurrentBranch configuration variable is set to
# updateInstead.
#
# By default, such a push is refused if the working tree and the index
# of the remote repository has any difference from the currently
# checked out commit; when both the working tree and the index match
# the current commit, they are updated to match the newly pushed tip
# of the branch. This hook is to be used to override the default
# behaviour; however the code below reimplements the default behaviour
# as a starting point for convenient modification.
#
# The hook receives the commit with which the tip of the current
# branch is going to be updated:
commit=$1
# It can exit with a non-zero status to refuse the push (when it does
# so, it must not modify the index or the working tree).
die () {
echo >&2 "$*"
exit 1
}
# Or it can make any necessary changes to the working tree and to the
# index to bring them to the desired state when the tip of the current
# branch is updated to the new commit, and exit with a zero status.
#
# For example, the hook can simply run git read-tree -u -m HEAD "$1"
# in order to emulate git fetch that is run in the reverse direction
# with git push, as the two-tree form of git read-tree -u -m is
# essentially the same as git switch or git checkout that switches
# branches while keeping the local changes in the working tree that do
# not interfere with the difference between the branches.
# The below is a more-or-less exact translation to shell of the C code
# for the default behaviour for git's push-to-checkout hook defined in
# the push_to_deploy() function in builtin/receive-pack.c.
#
# Note that the hook will be executed from the repository directory,
# not from the working tree, so if you want to perform operations on
# the working tree, you will have to adapt your code accordingly, e.g.
# by adding "cd .." or using relative paths.
if ! git update-index -q --ignore-submodules --refresh
then
die "Up-to-date check failed"
fi
if ! git diff-files --quiet --ignore-submodules --
then
die "Working directory has unstaged changes"
fi
# This is a rough translation of:
#
# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX
if git cat-file -e HEAD 2>/dev/null
then
head=HEAD
else
head=$(git hash-object -t tree --stdin </dev/null)
fi
if ! git diff-index --quiet --cached --ignore-submodules $head --
then
die "Working directory has staged changes"
fi
if ! git read-tree -u -m "$commit"
then
die "Could not update working tree to new HEAD"
fi
+77
View File
@@ -0,0 +1,77 @@
#!/bin/sh
# An example hook script to validate a patch (and/or patch series) before
# sending it via email.
#
# The hook should exit with non-zero status after issuing an appropriate
# message if it wants to prevent the email(s) from being sent.
#
# To enable this hook, rename this file to "sendemail-validate".
#
# By default, it will only check that the patch(es) can be applied on top of
# the default upstream branch without conflicts in a secondary worktree. After
# validation (successful or not) of the last patch of a series, the worktree
# will be deleted.
#
# The following config variables can be set to change the default remote and
# remote ref that are used to apply the patches against:
#
# sendemail.validateRemote (default: origin)
# sendemail.validateRemoteRef (default: HEAD)
#
# Replace the TODO placeholders with appropriate checks according to your
# needs.
validate_cover_letter () {
file="$1"
# TODO: Replace with appropriate checks (e.g. spell checking).
true
}
validate_patch () {
file="$1"
# Ensure that the patch applies without conflicts.
git am -3 "$file" || return
# TODO: Replace with appropriate checks for this patch
# (e.g. checkpatch.pl).
true
}
validate_series () {
# TODO: Replace with appropriate checks for the whole series
# (e.g. quick build, coding style checks, etc.).
true
}
# main -------------------------------------------------------------------------
if test "$GIT_SENDEMAIL_FILE_COUNTER" = 1
then
remote=$(git config --default origin --get sendemail.validateRemote) &&
ref=$(git config --default HEAD --get sendemail.validateRemoteRef) &&
worktree=$(mktemp --tmpdir -d sendemail-validate.XXXXXXX) &&
git worktree add -fd --checkout "$worktree" "refs/remotes/$remote/$ref" &&
git config --replace-all sendemail.validateWorktree "$worktree"
else
worktree=$(git config --get sendemail.validateWorktree)
fi || {
echo "sendemail-validate: error: failed to prepare worktree" >&2
exit 1
}
unset GIT_DIR GIT_WORK_TREE
cd "$worktree" &&
if grep -q "^diff --git " "$1"
then
validate_patch "$1"
else
validate_cover_letter "$1"
fi &&
if test "$GIT_SENDEMAIL_FILE_COUNTER" = "$GIT_SENDEMAIL_FILE_TOTAL"
then
git config --unset-all sendemail.validateWorktree &&
trap 'git worktree remove -ff "$worktree"' EXIT &&
validate_series
fi
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 KiB

-49
View File
@@ -1,49 +0,0 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>TCC de cria</title>
</head>
<body>
<!--Barrinha que fica no topo-->
<div id="topo">
<h1 id="textotop">Focus Agenda</h1>
</div>
<!--cabo bar-->
<!--Login e outras coisas-->
<div id="log">
<h1 class="mens">Bem Vindo!</h1>
<h3 class="mens">Faça seu login</h3>
<form method="POST" action="login.php">
<div class="campo">
<label for="emailid">Email</label>
<input type="email" placeholder="Digite seu email" name="email" id="emailid" required>
</div>
<div class="campo">
<label for="senhaid">Senha</label>
<input type="password" placeholder="Digite sua senha" name="senha" id="senhaid" required>
</div>
<button type="submit" id="logbtn">Logar</button>
</form>
<p class="mens">Cadastrar-se</p>
</div>
<!--cabo log-->
</body>
</html>
+111 -116
View File
@@ -1,129 +1,124 @@
* { * {
padding: 0; padding: 0;
margin: 0; margin: 0;
}
p,
h1,
h2,
h3 {
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
label{
display: block;
} }
body { p,
background-image: url(imagens/fundo1.png); h1,
background-size: cover; h2,
background-repeat: no-repeat; h3 {
background-position: center; color: black;
background-attachment: fixed; margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
height: 100vh; label{
display: flex; display: block;
justify-content: flex-start; }
align-items: center;
padding-left: 300px;
}
@media (max-width: 768px) { body {
body { height: 100vh;
padding-left: 20px; display: flex;
padding-right: 20px; justify-content: center;
justify-content: center; align-items: center;
} }
}
@media (max-width: 480px) { @media (max-width: 768px) {
#log { body {
width: 100% !important; padding-left: 20px;
max-width: 320px; padding-right: 20px;
} justify-content: center;
} }
#topo { }
width: 100%;
height: 70px;
background-color: #111;
position: fixed;
top: 0;
left: 0;
background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%);
display: flex;
align-items: center;
justify-content: flex-start;
padding-left: 20px;
} @media (max-width: 480px) {
#log {
width: 100% !important;
max-width: 320px;
}
}
#topo {
width: 100%;
height: 50px;
background-color: #111;
position: fixed;
top: 0;
left: 0;
background: linear-gradient(to right, #C0392B 47%, #7A4951 73%, #114455 87%);
display: flex;
align-items: center;
justify-content: flex-start;
}
#textotop { #textotop {
font-size: 48px; padding-left: 20px;
margin: 0; font-size: 38px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; margin: 0;
} font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
#log { #log {
margin-top: 70px; width: 350px;
width: 350px; display: flex;
display: flex; flex-direction: column;
flex-direction: column; gap: 15px;
gap: 15px; color: white;
color: white; margin-top: 70px; /* Compensa a barra fixa do topo */
margin: 0; }
} #campo {
#campo { display: flex;
display: flex; flex-direction: column;
flex-direction: column; gap: 15px;
gap: 15px; align-self: center;
align-self: center; }
} #menslog{
#menslog{ font-size: 20px;
font-size: 20px; }
}
#emailid, #senhaid { #emailid, #senhaid {
height: 50px; height: 50px;
width: 100%; width: 100%;
padding: 10px; padding: 10px;
font-size: 16px; font-size: 16px;
border: 1px solid #ccc; border: 1px solid #ccc;
border-radius: 4px; border-radius: 4px;
box-sizing: border-box; box-sizing: border-box;
} }
label { label {
display: block; display: block;
margin-bottom: 5px; margin-bottom: 5px;
font-weight: bold; font-weight: bold;
color: white; color: white;
} }
form { form {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
gap: 15px; gap: 15px;
width: 100%; width: 100%;
} }
#logbtn { #logbtn {
align-self: center; align-self: center;
width: 50%; width: 50%;
padding: 12px; padding: 12px;
font-size: 18px; font-size: 18px;
font-weight: bold; font-weight: bold;
background-color: #C0392B; background-color: #C0392B;
color: white; color: white;
border: none; border: none;
border-radius: 4px; border-radius: 4px;
cursor: pointer; cursor: pointer;
transition: background-color 0.3s; transition: background-color 0.3s;
} }
#logbtn:hover { #logbtn:hover {
background-color: #A03224; background-color: #A03224;
} }
.mens { .mens {
align-self: center; align-self: center;
} }
#linkcada{
color: #111;
}
+128
View File
@@ -0,0 +1,128 @@
#!/bin/sh
#
# An example hook script to block unannotated tags from entering.
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
#
# To enable this hook, rename this file to "update".
#
# Config
# ------
# hooks.allowunannotated
# This boolean sets whether unannotated tags will be allowed into the
# repository. By default they won't be.
# hooks.allowdeletetag
# This boolean sets whether deleting tags will be allowed in the
# repository. By default they won't be.
# hooks.allowmodifytag
# This boolean sets whether a tag may be modified after creation. By default
# it won't be.
# hooks.allowdeletebranch
# This boolean sets whether deleting branches will be allowed in the
# repository. By default they won't be.
# hooks.denycreatebranch
# This boolean sets whether remotely creating branches will be denied
# in the repository. By default this is allowed.
#
# --- Command line
refname="$1"
oldrev="$2"
newrev="$3"
# --- Safety check
if [ -z "$GIT_DIR" ]; then
echo "Don't run this script from the command line." >&2
echo " (if you want, you could supply GIT_DIR then run" >&2
echo " $0 <ref> <oldrev> <newrev>)" >&2
exit 1
fi
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
exit 1
fi
# --- Config
allowunannotated=$(git config --type=bool hooks.allowunannotated)
allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch)
denycreatebranch=$(git config --type=bool hooks.denycreatebranch)
allowdeletetag=$(git config --type=bool hooks.allowdeletetag)
allowmodifytag=$(git config --type=bool hooks.allowmodifytag)
# check for no description
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
case "$projectdesc" in
"Unnamed repository"* | "")
echo "*** Project description file hasn't been set" >&2
exit 1
;;
esac
# --- Check types
# if $newrev is 0000...0000, it's a commit to delete a ref.
zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
if [ "$newrev" = "$zero" ]; then
newrev_type=delete
else
newrev_type=$(git cat-file -t $newrev)
fi
case "$refname","$newrev_type" in
refs/tags/*,commit)
# un-annotated tag
short_refname=${refname##refs/tags/}
if [ "$allowunannotated" != "true" ]; then
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
exit 1
fi
;;
refs/tags/*,delete)
# delete tag
if [ "$allowdeletetag" != "true" ]; then
echo "*** Deleting a tag is not allowed in this repository" >&2
exit 1
fi
;;
refs/tags/*,tag)
# annotated tag
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
then
echo "*** Tag '$refname' already exists." >&2
echo "*** Modifying a tag is not allowed in this repository." >&2
exit 1
fi
;;
refs/heads/*,commit)
# branch
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
echo "*** Creating a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/heads/*,delete)
# delete branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a branch is not allowed in this repository" >&2
exit 1
fi
;;
refs/remotes/*,commit)
# tracking branch
;;
refs/remotes/*,delete)
# delete tracking branch
if [ "$allowdeletebranch" != "true" ]; then
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
exit 1
fi
;;
*)
# Anything else (is there anything else?)
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
exit 1
;;
esac
# --- Finished
exit 0