Compare commits
4 Commits
77b934636f
...
d8e63f8abe
| Author | SHA1 | Date | |
|---|---|---|---|
| d8e63f8abe | |||
| 19718d5eed | |||
|
|
30af16708e | ||
|
|
ce3f8e23dd |
14
package-lock.json
generated
14
package-lock.json
generated
@ -29151,18 +29151,6 @@
|
|||||||
"minimalistic-assert": "^1.0.0"
|
"minimalistic-assert": "^1.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
<<<<<<< HEAD
|
|
||||||
"node_modules/web-namespaces": {
|
|
||||||
"version": "2.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz",
|
|
||||||
"integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==",
|
|
||||||
"license": "MIT",
|
|
||||||
"peer": true,
|
|
||||||
"funding": {
|
|
||||||
"type": "github",
|
|
||||||
"url": "https://github.com/sponsors/wooorm"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/web-streams-polyfill": {
|
"node_modules/web-streams-polyfill": {
|
||||||
"version": "3.3.3",
|
"version": "3.3.3",
|
||||||
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
|
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz",
|
||||||
@ -29172,8 +29160,6 @@
|
|||||||
"node": ">= 8"
|
"node": ">= 8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
=======
|
|
||||||
>>>>>>> c180e9a5c9e6bdaf28914332ba603acaf6d028a5
|
|
||||||
"node_modules/web-vitals": {
|
"node_modules/web-vitals": {
|
||||||
"version": "2.1.4",
|
"version": "2.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz",
|
"resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-2.1.4.tgz",
|
||||||
|
|||||||
@ -177,7 +177,6 @@ const FormNovaConsulta = ({ onCancel, onSave, setAgendamento, agendamento }) =>
|
|||||||
<div className="modal-content">
|
<div className="modal-content">
|
||||||
<div className="modal-header">
|
<div className="modal-header">
|
||||||
<h5 className="modal-title">Sucesso</h5>
|
<h5 className="modal-title">Sucesso</h5>
|
||||||
<button onClick={handleCloseModal} className="modal-close-btn">×</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div className="modal-body">
|
<div className="modal-body">
|
||||||
<p className="modal-message">Agendamento salvo com sucesso!</p>
|
<p className="modal-message">Agendamento salvo com sucesso!</p>
|
||||||
|
|||||||
@ -414,96 +414,248 @@ html[data-bs-theme="dark"] svg {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ========== Modal Overlay ========== */
|
||||||
.modal-overlay {
|
.modal-overlay {
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
z-index: 1000;
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
z-index: 9999;
|
||||||
|
animation: fadeIn 0.3s ease-in;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-content {
|
@keyframes fadeIn {
|
||||||
background: white;
|
|
||||||
padding: 2rem;
|
|
||||||
border-radius: 12px;
|
|
||||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
|
|
||||||
max-width: 400px;
|
|
||||||
width: 90%;
|
|
||||||
text-align: center;
|
|
||||||
animation: modalAppear 0.3s ease-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes modalAppear {
|
|
||||||
from {
|
from {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: scale(0.9) translateY(-20px);
|
|
||||||
}
|
}
|
||||||
to {
|
to {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: scale(1) translateY(0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-header h3 {
|
/* ========== Modal Content ========== */
|
||||||
margin: 0 0 1rem 0;
|
.modal-content {
|
||||||
color: #28a745;
|
background-color: #fff;
|
||||||
font-size: 1.5rem;
|
border-radius: 10px;
|
||||||
|
width: 400px;
|
||||||
|
max-width: 90%;
|
||||||
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
|
||||||
|
overflow: hidden;
|
||||||
|
animation: slideIn 0.3s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes slideIn {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(-20px) scale(0.95);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0) scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Modal Header ========== */
|
||||||
|
.modal-header {
|
||||||
|
background-color: #1e3a8a;
|
||||||
|
padding: 15px 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-header.success {
|
||||||
|
background-color: #1e3a8a !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-header.error {
|
||||||
|
background-color: #dc3545 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-header .modal-title {
|
||||||
|
color: #fff;
|
||||||
|
margin: 0;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-close-btn {
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
font-size: 20px;
|
||||||
|
color: #fff;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-radius: 4px;
|
||||||
|
transition: background-color 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-close-btn:hover {
|
||||||
|
background-color: rgba(255, 255, 255, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Modal Body ========== */
|
||||||
|
.modal-body {
|
||||||
|
padding: 25px 20px;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-body .modal-message {
|
||||||
|
color: #111;
|
||||||
|
font-size: 1.1rem;
|
||||||
|
margin: 0;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
line-height: 1.4;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-submessage {
|
||||||
|
color: #666;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
margin: 10px 0 0 0;
|
||||||
|
line-height: 1.4;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Modal Footer ========== */
|
||||||
|
.modal-footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 15px 20px;
|
||||||
|
border-top: 1px solid #ddd;
|
||||||
|
background: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-confirm-btn {
|
||||||
|
background-color: #1e3a8a;
|
||||||
|
color: #fff;
|
||||||
|
border: none;
|
||||||
|
padding: 8px 20px;
|
||||||
|
border-radius: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 1rem;
|
||||||
|
font-weight: bold;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-confirm-btn:hover {
|
||||||
|
background-color: #1e40af;
|
||||||
|
transform: translateY(-1px);
|
||||||
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-confirm-btn.success {
|
||||||
|
background-color: #1e3a8a !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-confirm-btn.success:hover {
|
||||||
|
background-color: #1e40af !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-confirm-btn.error {
|
||||||
|
background-color: #dc3545 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-confirm-btn.error:hover {
|
||||||
|
background-color: #c82333 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* ========== Dark Mode ========== */
|
||||||
|
html[data-bs-theme="dark"] .modal-content {
|
||||||
|
background: #232323 !important;
|
||||||
|
border: 1px solid #404053;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-header {
|
||||||
|
background: #1e3a8a !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-header.success {
|
||||||
|
background-color: #1e3a8a !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-header.error {
|
||||||
|
background-color: #dc3545 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-header .modal-title,
|
||||||
|
html[data-bs-theme="dark"] .modal-close-btn {
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-body {
|
||||||
|
background: #232323 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-body .modal-message {
|
||||||
|
color: #e0e0e0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-submessage {
|
||||||
|
color: #b0b7c3 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-footer {
|
||||||
|
background: #232323 !important;
|
||||||
|
border-top: 1px solid #404053;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-confirm-btn {
|
||||||
|
background: #2563eb !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
html[data-bs-theme="dark"] .modal-confirm-btn:hover {
|
||||||
|
background: #1e40af !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Responsive ========== */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.modal-content {
|
||||||
|
width: 95%;
|
||||||
|
margin: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-body {
|
.modal-body {
|
||||||
margin-bottom: 1.5rem;
|
padding: 20px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-body p {
|
.modal-message {
|
||||||
margin: 0;
|
font-size: 1rem;
|
||||||
color: #333;
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 480px) {
|
||||||
|
.modal-header {
|
||||||
|
padding: 12px 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal-header .modal-title {
|
||||||
font-size: 1.1rem;
|
font-size: 1.1rem;
|
||||||
line-height: 1.5;
|
}
|
||||||
|
|
||||||
|
.modal-body {
|
||||||
|
padding: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
display: flex;
|
padding: 12px 15px;
|
||||||
justify-content: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-footer .btn-primary {
|
.modal-confirm-btn {
|
||||||
background: #28a745;
|
padding: 6px 16px;
|
||||||
padding: 10px 24px;
|
font-size: 0.9rem;
|
||||||
font-size: 1rem;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-footer .btn-primary:hover {
|
|
||||||
background: #218838;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
html[data-bs-theme="dark"] .modal-content {
|
|
||||||
background: #232323 !important;
|
|
||||||
color: #e0e0e0 !important;
|
|
||||||
border: 1px solid #404053 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-bs-theme="dark"] .modal-header h3 {
|
|
||||||
color: #4ade80 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-bs-theme="dark"] .modal-body p {
|
|
||||||
color: #e0e0e0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-bs-theme="dark"] .modal-footer .btn-primary {
|
|
||||||
background: #16a34a !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
html[data-bs-theme="dark"] .modal-footer .btn-primary:hover {
|
|
||||||
background: #15803d !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
309
src/components/Estilo/Toggle.css
Normal file
309
src/components/Estilo/Toggle.css
Normal file
@ -0,0 +1,309 @@
|
|||||||
|
/* ========== Variáveis CSS ========== */
|
||||||
|
:root {
|
||||||
|
--primary-blue: #4a90e2;
|
||||||
|
--primary-blue-light: #5da3f5;
|
||||||
|
--primary-blue-lighter: #70b4ff;
|
||||||
|
--dark-blue: #1a3a5c;
|
||||||
|
--dark-blue-deep: #0d2640;
|
||||||
|
--white: #ffffff;
|
||||||
|
--transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Container Principal ========== */
|
||||||
|
.toggle-sidebar-wrapper {
|
||||||
|
background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 8px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
||||||
|
border: 1px solid var(--primary-blue-lighter);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-title {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 14px 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
background-color: var(--primary-blue);
|
||||||
|
border-radius: 8px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
transition: var(--transition);
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
|
||||||
|
border: 1px solid var(--primary-blue-light);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-title:hover {
|
||||||
|
background-color: var(--primary-blue-light);
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||||
|
transform: translateY(-1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container-title:hover .toggle-arrow {
|
||||||
|
color: var(--dark-blue-deep) !important;
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle-title {
|
||||||
|
color: var(--white) !important;
|
||||||
|
font-weight: 700;
|
||||||
|
font-size: 18px;
|
||||||
|
margin: 0;
|
||||||
|
flex-grow: 1;
|
||||||
|
user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.toggle-arrow {
|
||||||
|
transition: var(--transition);
|
||||||
|
color: var(--dark-blue) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Menu Lista ========== */
|
||||||
|
.sidebar-menu-list {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
animation: fadeIn 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item {
|
||||||
|
list-style: none;
|
||||||
|
margin: 6px 0;
|
||||||
|
border-radius: 6px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Links da Sidebar ========== */
|
||||||
|
.sidebar-link {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
text-decoration: none;
|
||||||
|
color: var(--white) !important;
|
||||||
|
padding: 12px 20px;
|
||||||
|
border-radius: 6px;
|
||||||
|
transition: all 0.2s ease;
|
||||||
|
font-size: 16px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: left;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 3px;
|
||||||
|
background-color: var(--dark-blue);
|
||||||
|
transform: scaleY(0);
|
||||||
|
transition: transform 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link i {
|
||||||
|
margin-right: 12px;
|
||||||
|
font-size: 19px;
|
||||||
|
transition: transform 0.2s ease;
|
||||||
|
color: var(--dark-blue) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link:hover {
|
||||||
|
color: var(--white) !important;
|
||||||
|
background-color: var(--primary-blue-light);
|
||||||
|
padding-left: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link:hover::before {
|
||||||
|
transform: scaleY(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link:hover i {
|
||||||
|
transform: scale(1.1);
|
||||||
|
color: var(--dark-blue-deep) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link.active {
|
||||||
|
color: var(--white) !important;
|
||||||
|
background-color: #1e3a8a;
|
||||||
|
font-weight: 600;
|
||||||
|
box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
|
||||||
|
padding-left: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link.active::before {
|
||||||
|
transform: scaleY(1);
|
||||||
|
background-color: var(--primary-blue-lighter);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link.active i {
|
||||||
|
color: var(--white) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Título da Sidebar ========== */
|
||||||
|
.sidebar-title {
|
||||||
|
padding: 20px 20px 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
color: var(--white) !important;
|
||||||
|
text-transform: uppercase;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 1px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-title::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
bottom: 4px;
|
||||||
|
left: 20px;
|
||||||
|
right: 20px;
|
||||||
|
height: 2px;
|
||||||
|
background: linear-gradient(90deg, var(--white), transparent);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Itens com Submenu ========== */
|
||||||
|
.sidebar-item.has-sub {
|
||||||
|
border-radius: 6px 6px 0 0;
|
||||||
|
overflow: hidden;
|
||||||
|
background-color: rgba(74, 144, 226, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active {
|
||||||
|
background-color: var(--primary-blue-light);
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub .sidebar-link {
|
||||||
|
background-color: var(--primary-blue);
|
||||||
|
color: var(--white) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub .sidebar-link::after {
|
||||||
|
content: "\F282";
|
||||||
|
font-family: "bootstrap-icons";
|
||||||
|
font-weight: 900;
|
||||||
|
margin-left: auto;
|
||||||
|
transition: var(--transition);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 14px;
|
||||||
|
color: var(--dark-blue) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active .sidebar-link::after,
|
||||||
|
.sidebar-item.has-sub .sidebar-link:hover::after {
|
||||||
|
color: var(--dark-blue-deep) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active .sidebar-link::after {
|
||||||
|
transform: rotate(180deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub .sidebar-link.submenu-active,
|
||||||
|
.sidebar-item.has-sub.active .sidebar-link.submenu-active {
|
||||||
|
color: var(--white) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub .sidebar-link.submenu-active i {
|
||||||
|
color: var(--dark-blue) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active .sidebar-link.submenu-active {
|
||||||
|
background-color: #1e3a8a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active .sidebar-link.submenu-active i {
|
||||||
|
color: var(--white) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Submenu ========== */
|
||||||
|
.submenu {
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 0;
|
||||||
|
margin: 0;
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
|
background-color: rgba(74, 144, 226, 0.9);
|
||||||
|
border-radius: 0 0 6px 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active .submenu {
|
||||||
|
max-height: 800px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item .sidebar-link {
|
||||||
|
padding-left: 45px;
|
||||||
|
font-size: 15px;
|
||||||
|
color: var(--white) !important;
|
||||||
|
background-color: transparent;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item .sidebar-link::before {
|
||||||
|
left: 30px;
|
||||||
|
width: 2px;
|
||||||
|
background-color: var(--dark-blue);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item .sidebar-link:hover {
|
||||||
|
background-color: var(--primary-blue-lighter);
|
||||||
|
color: var(--white) !important;
|
||||||
|
padding-left: 48px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item .sidebar-link:hover::before {
|
||||||
|
background-color: var(--dark-blue-deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
.submenu-item:last-child .sidebar-link {
|
||||||
|
border-radius: 0 0 6px 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-item.has-sub.active .submenu-item:first-child .sidebar-link {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-link.submenu-link.active::before {
|
||||||
|
background-color: var(--primary-blue-lighter);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Ícones e Indicadores ========== */
|
||||||
|
.external-icon {
|
||||||
|
font-size: 12px;
|
||||||
|
margin-left: 8px;
|
||||||
|
opacity: 0.8;
|
||||||
|
color: var(--dark-blue) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active-indicator {
|
||||||
|
position: absolute;
|
||||||
|
right: 15px;
|
||||||
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
background-color: var(--primary-blue-lighter);
|
||||||
|
border-radius: 50%;
|
||||||
|
animation: pulse 2s infinite;
|
||||||
|
box-shadow: 0 0 10px rgba(112, 180, 255, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========== Animações ========== */
|
||||||
|
@keyframes fadeIn {
|
||||||
|
from { opacity: 0; transform: translateY(-10px); }
|
||||||
|
to { opacity: 1; transform: translateY(0); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes pulse {
|
||||||
|
0% { transform: translateY(-50%) scale(1); opacity: 1; }
|
||||||
|
50% { transform: translateY(-50%) scale(1.3); opacity: 0.8; }
|
||||||
|
100% { transform: translateY(-50%) scale(1); opacity: 1; }
|
||||||
|
}
|
||||||
@ -1,7 +1,16 @@
|
|||||||
import React, { useState, useEffect } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import { Link, useNavigate } from "react-router-dom";
|
import { Link, useNavigate } from "react-router-dom";
|
||||||
import TrocardePerfis from "./TrocardePerfis";
|
|
||||||
import MobileMenuToggle from "./MobileMenuToggle";
|
import MobileMenuToggle from "./MobileMenuToggle";
|
||||||
|
import ToggleSidebar from "./ToggleSidebar";
|
||||||
|
import { useAuth } from "./utils/AuthProvider";
|
||||||
|
|
||||||
|
import PacienteItems from "../data/sidebar-items-paciente.json"
|
||||||
|
import DoctorItems from "../data/sidebar-items-medico.json"
|
||||||
|
import admItems from "../data/sidebar-items-adm.json"
|
||||||
|
import SecretariaItems from "../data/sidebar-items-secretaria.json"
|
||||||
|
import FinanceiroItems from "../data/sidebar-items-financeiro.json"
|
||||||
|
|
||||||
|
import { UserInfos } from "./utils/Functions-Endpoints/General";
|
||||||
|
|
||||||
function Sidebar({ menuItems }) {
|
function Sidebar({ menuItems }) {
|
||||||
const [isActive, setIsActive] = useState(true);
|
const [isActive, setIsActive] = useState(true);
|
||||||
@ -10,6 +19,16 @@ function Sidebar({ menuItems }) {
|
|||||||
const [showLogoutModal, setShowLogoutModal] = useState(false);
|
const [showLogoutModal, setShowLogoutModal] = useState(false);
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
|
|
||||||
|
const [roleUser, setRoleUser] = useState([])
|
||||||
|
|
||||||
|
const {getAuthorizationHeader} = useAuth();
|
||||||
|
|
||||||
|
const authHeader = getAuthorizationHeader();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Detecta se é mobile/tablet
|
// Detecta se é mobile/tablet
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const checkScreenSize = () => {
|
const checkScreenSize = () => {
|
||||||
@ -18,6 +37,15 @@ function Sidebar({ menuItems }) {
|
|||||||
setIsActive(!mobile);
|
setIsActive(!mobile);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const fetchInfoUser = async () => {
|
||||||
|
const InfoUser = await UserInfos(authHeader);
|
||||||
|
console.log(InfoUser.roles, "dados")
|
||||||
|
|
||||||
|
setRoleUser(InfoUser.roles)
|
||||||
|
}
|
||||||
|
|
||||||
|
fetchInfoUser()
|
||||||
|
|
||||||
checkScreenSize();
|
checkScreenSize();
|
||||||
window.addEventListener("resize", checkScreenSize);
|
window.addEventListener("resize", checkScreenSize);
|
||||||
return () => window.removeEventListener("resize", checkScreenSize);
|
return () => window.removeEventListener("resize", checkScreenSize);
|
||||||
@ -89,8 +117,16 @@ function Sidebar({ menuItems }) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if(roleUser.includes("admin")){
|
||||||
|
console.log("tem")
|
||||||
|
}
|
||||||
|
console.log(roleUser)
|
||||||
|
}, [roleUser])
|
||||||
|
|
||||||
const handleLogoutCancel = () => setShowLogoutModal(false);
|
const handleLogoutCancel = () => setShowLogoutModal(false);
|
||||||
|
|
||||||
|
|
||||||
const renderLink = (item) => {
|
const renderLink = (item) => {
|
||||||
if (item.url && item.url.startsWith("/")) {
|
if (item.url && item.url.startsWith("/")) {
|
||||||
return (
|
return (
|
||||||
@ -213,55 +249,30 @@ function Sidebar({ menuItems }) {
|
|||||||
|
|
||||||
<div className="sidebar-menu">
|
<div className="sidebar-menu">
|
||||||
<ul className="menu">
|
<ul className="menu">
|
||||||
{menuItems &&
|
|
||||||
menuItems.map((item, index) => {
|
|
||||||
if (item.isTitle)
|
|
||||||
return (
|
|
||||||
<li key={index} className="sidebar-title">
|
|
||||||
{item.name}
|
|
||||||
</li>
|
|
||||||
);
|
|
||||||
|
|
||||||
if (item.submenu)
|
{roleUser.includes("admin") &&
|
||||||
return (
|
<ToggleSidebar perfil={"administrador"} items={admItems}/>
|
||||||
<li
|
}
|
||||||
key={index}
|
{roleUser.includes("admin") || roleUser.includes("secretaria") ?
|
||||||
className={`sidebar-item has-sub ${
|
<ToggleSidebar perfil={"secretaria"} items={SecretariaItems}/>
|
||||||
openSubmenu === item.key ? "active" : ""
|
:
|
||||||
}`}
|
null
|
||||||
>
|
}
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className="sidebar-link btn"
|
|
||||||
onClick={() => handleSubmenuClick(item.key)}
|
|
||||||
>
|
|
||||||
<i className={`bi bi-${item.icon}`}></i>
|
|
||||||
<span>{item.name}</span>
|
|
||||||
</button>
|
|
||||||
<ul
|
|
||||||
className={`submenu ${
|
|
||||||
openSubmenu === item.key ? "active" : ""
|
|
||||||
}`}
|
|
||||||
>
|
|
||||||
{item.submenu.map((subItem, subIndex) => (
|
|
||||||
<li key={subIndex} className="submenu-item">
|
|
||||||
{renderLink(subItem)}
|
|
||||||
</li>
|
|
||||||
))}
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
);
|
|
||||||
|
|
||||||
return (
|
{roleUser.includes("admin") || roleUser.includes("medico") ?
|
||||||
<li key={index} className="sidebar-item">
|
<ToggleSidebar perfil={"medico"} items={DoctorItems}/>
|
||||||
{renderLink(item)}
|
:null
|
||||||
</li>
|
}
|
||||||
);
|
|
||||||
})}
|
|
||||||
|
|
||||||
{/* Logout */}
|
{roleUser.includes("admin") || roleUser.includes("financeiro") ?
|
||||||
|
<ToggleSidebar perfil={"financeiro"} items={FinanceiroItems}/>
|
||||||
|
:null
|
||||||
|
}
|
||||||
|
|
||||||
<TrocardePerfis />
|
{roleUser.includes("admin") || roleUser.includes("paciente") ?
|
||||||
|
<ToggleSidebar perfil={"paciente"} items={PacienteItems}/>
|
||||||
|
: null
|
||||||
|
}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
139
src/components/ToggleSidebar.jsx
Normal file
139
src/components/ToggleSidebar.jsx
Normal file
@ -0,0 +1,139 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import { useState, useEffect } from 'react'
|
||||||
|
import { Link, useLocation } from 'react-router-dom'
|
||||||
|
import "./Estilo/Toggle.css"
|
||||||
|
|
||||||
|
const ToggleSidebar = ({ perfil, items, defaultOpen = false }) => {
|
||||||
|
const [isOpen, setOpen] = useState(defaultOpen)
|
||||||
|
const [openSubmenu, setOpenSubmenu] = useState(null)
|
||||||
|
const [activeLink, setActiveLink] = useState('')
|
||||||
|
const location = useLocation()
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const currentPath = location.pathname
|
||||||
|
setActiveLink(currentPath)
|
||||||
|
|
||||||
|
const findActiveSubmenu = () => {
|
||||||
|
for (let item of items) {
|
||||||
|
if (item.submenu) {
|
||||||
|
const activeSubItem = item.submenu.find(subItem =>
|
||||||
|
subItem.url === currentPath
|
||||||
|
)
|
||||||
|
if (activeSubItem) {
|
||||||
|
setOpenSubmenu(item.key)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
} else if (item.url === currentPath) {
|
||||||
|
setActiveLink(currentPath)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
findActiveSubmenu()
|
||||||
|
}, [location.pathname, items])
|
||||||
|
|
||||||
|
const OpenClose = () => {
|
||||||
|
setOpen(!isOpen)
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleSubmenuClick = (key) => {
|
||||||
|
setOpenSubmenu(openSubmenu === key ? null : key)
|
||||||
|
}
|
||||||
|
|
||||||
|
const isLinkActive = (url) => {
|
||||||
|
return activeLink === url
|
||||||
|
}
|
||||||
|
|
||||||
|
const renderLink = (item, isSubmenu = false) => {
|
||||||
|
const isActive = isLinkActive(item.url)
|
||||||
|
const linkClass = `sidebar-link ${isActive ? 'active' : ''} ${isSubmenu ? 'submenu-link' : ''}`
|
||||||
|
|
||||||
|
if (item.url && item.url.startsWith("/")) {
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
to={item.url}
|
||||||
|
className={linkClass}
|
||||||
|
onClick={() => !isSubmenu && setActiveLink(item.url)}
|
||||||
|
>
|
||||||
|
{item.icon && <i className={`bi bi-${item.icon}`}></i>}
|
||||||
|
<span>{item.name}</span>
|
||||||
|
{isActive && <div className="active-indicator"></div>}
|
||||||
|
</Link>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<a
|
||||||
|
href={item.url}
|
||||||
|
className={linkClass}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
{item.icon && <i className={`bi bi-${item.icon}`}></i>}
|
||||||
|
<span>{item.name}</span>
|
||||||
|
<i className="bi bi-box-arrow-up-right external-icon"></i>
|
||||||
|
</a>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="toggle-sidebar-wrapper">
|
||||||
|
<div className='container-title' onClick={OpenClose}>
|
||||||
|
<p className='toggle-title'>{perfil}</p>
|
||||||
|
{isOpen
|
||||||
|
? <i className="bi bi-caret-down-fill toggle-arrow"></i>
|
||||||
|
: <i className="bi bi-caret-right-fill toggle-arrow"></i>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{isOpen && (
|
||||||
|
<ul className='sidebar-menu-list'>
|
||||||
|
{items.map((item, index) => {
|
||||||
|
if (item.isTitle) {
|
||||||
|
return (
|
||||||
|
<li key={`title-${index}`} className="sidebar-title">
|
||||||
|
<span>{item.name}</span>
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (item.submenu) {
|
||||||
|
const isSubmenuActive = openSubmenu === item.key
|
||||||
|
return (
|
||||||
|
<li
|
||||||
|
key={item.key || index}
|
||||||
|
className={`sidebar-item has-sub ${isSubmenuActive ? "active" : ""}`}
|
||||||
|
>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className={`sidebar-link btn ${isSubmenuActive ? "submenu-active" : ""}`}
|
||||||
|
onClick={() => handleSubmenuClick(item.key)}
|
||||||
|
>
|
||||||
|
<i className={`bi bi-${item.icon}`}></i>
|
||||||
|
<span>{item.name}</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<ul className={`submenu ${isSubmenuActive ? "active" : ""}`}>
|
||||||
|
{item.submenu.map((subItem, subIndex) => (
|
||||||
|
<li key={subIndex} className="submenu-item">
|
||||||
|
{renderLink(subItem, true)}
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<li key={item.key || index} className="sidebar-item">
|
||||||
|
{renderLink(item)}
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ToggleSidebar
|
||||||
@ -275,7 +275,6 @@ const handleAvailabilityUpdate = useCallback((newAvailability) => {
|
|||||||
if (formData.availability && formData.availability.length > 0) {
|
if (formData.availability && formData.availability.length > 0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
alert("Médico salvo com sucesso!");
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error("Erro ao salvar médico:", error);
|
console.error("Erro ao salvar médico:", error);
|
||||||
alert("Erro ao salvar médico.");
|
alert("Erro ao salvar médico.");
|
||||||
|
|||||||
@ -1,8 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"name": "Menu",
|
|
||||||
"isTitle": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Lista de Pacientes",
|
"name": "Lista de Pacientes",
|
||||||
"icon": "clipboard-heart-fill",
|
"icon": "clipboard-heart-fill",
|
||||||
|
|||||||
@ -1,8 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"name": "Menu-Financeiro",
|
|
||||||
"isTitle": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Controle Financeiro",
|
"name": "Controle Financeiro",
|
||||||
"icon": "cash-coin",
|
"icon": "cash-coin",
|
||||||
|
|||||||
@ -1,8 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"name": "Menu",
|
|
||||||
"isTitle": true
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Prontuário",
|
"name": "Prontuário",
|
||||||
|
|||||||
@ -1,9 +1,4 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"name": "Menu",
|
|
||||||
"isTitle": true
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name":"Início",
|
"name":"Início",
|
||||||
"url": "/secretaria/",
|
"url": "/secretaria/",
|
||||||
|
|||||||
@ -24,7 +24,7 @@ function PerfilSecretaria({ onLogout }) {
|
|||||||
return (
|
return (
|
||||||
// <Router>
|
// <Router>
|
||||||
<div id="app" className="active">
|
<div id="app" className="active">
|
||||||
<Sidebar onLogout={onLogout} menuItems={SecretariaItems} />
|
<Sidebar onLogout={onLogout} />
|
||||||
<div id="main">
|
<div id="main">
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/" element={<Inicio/>}/>
|
<Route path="/" element={<Inicio/>}/>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user