91 lines
3.7 KiB
JavaScript
91 lines
3.7 KiB
JavaScript
/*
|
|
|--------------------------------------------------------------------------
|
|
| Agência PSI
|
|
|--------------------------------------------------------------------------
|
|
| Criado e desenvolvido por Leonardo Nohama
|
|
|
|
|
| Tecnologia aplicada à escuta.
|
|
| Estrutura para o cuidado.
|
|
|
|
|
| Arquivo: src/navigation/menus/therapist.menu.js
|
|
| Data: 2026
|
|
| Local: São Carlos/SP — Brasil
|
|
|--------------------------------------------------------------------------
|
|
| © 2026 — Todos os direitos reservados
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
export default [
|
|
{
|
|
label: 'Início',
|
|
items: [{ label: 'Dashboard', icon: 'pi pi-fw pi-home', to: '/therapist' }]
|
|
},
|
|
|
|
{
|
|
label: 'Agenda',
|
|
items: [
|
|
{ label: 'Agenda', icon: 'pi pi-fw pi-calendar', to: '/therapist/agenda', feature: 'agenda.view', proBadge: true, badgeKey: 'agendaHoje' },
|
|
{ label: 'Recorrências', icon: 'pi pi-fw pi-refresh', to: '/therapist/agenda/recorrencias', feature: 'agenda.view', proBadge: true },
|
|
{ label: 'Compromissos', icon: 'pi pi-fw pi-clock', to: '/therapist/agenda/compromissos', feature: 'agenda.view', proBadge: true }
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Pacientes',
|
|
items: [
|
|
{ label: 'Meus pacientes', icon: 'pi pi-list', to: '/therapist/patients', quickCreate: true, quickCreateRoute: 'therapist-patients-cadastro', quickCreateLinkTo: '/therapist/patients/link-externo' },
|
|
{ label: 'Grupo de pacientes', icon: 'pi pi-fw pi-users', to: '/therapist/patients/grupos' },
|
|
{ label: 'Tags', icon: 'pi pi-tags', to: '/therapist/patients/tags' },
|
|
{ label: 'Médicos & Referências', icon: 'pi pi-heart', to: '/therapist/patients/medicos' },
|
|
{ label: 'Documentos', icon: 'pi pi-file', to: '/therapist/documents', feature: 'documents.upload' },
|
|
{ label: 'Templates', icon: 'pi pi-file-edit', to: '/therapist/documents/templates', feature: 'documents.templates', proBadge: true },
|
|
{ label: 'Meu link de cadastro', icon: 'pi pi-link', to: '/therapist/patients/link-externo' },
|
|
{ label: 'Cadastros recebidos', icon: 'pi pi-inbox', to: '/therapist/patients/cadastro/recebidos', badgeKey: 'cadastrosRecebidos' }
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Agendamento Online',
|
|
items: [
|
|
{
|
|
label: 'Configurar página',
|
|
icon: 'pi pi-fw pi-globe',
|
|
to: '/therapist/online-scheduling',
|
|
feature: 'online_scheduling.manage',
|
|
proBadge: true
|
|
},
|
|
{
|
|
label: 'Agendamentos Recebidos',
|
|
icon: 'pi pi-fw pi-inbox',
|
|
to: '/therapist/agendamentos-recebidos',
|
|
feature: 'online_scheduling.manage',
|
|
proBadge: true,
|
|
badgeKey: 'agendamentosRecebidos'
|
|
}
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Financeiro',
|
|
items: [
|
|
{ label: 'Cobranças', icon: 'pi pi-fw pi-wallet', to: '/therapist/financeiro' },
|
|
{ label: 'Lançamentos', icon: 'pi pi-fw pi-list', to: '/therapist/financeiro/lancamentos' }
|
|
]
|
|
},
|
|
|
|
{
|
|
label: 'Relatórios',
|
|
items: [{ label: 'Relatórios', icon: 'pi pi-fw pi-chart-bar', to: '/therapist/relatorios', feature: 'agenda.view' }]
|
|
},
|
|
|
|
{
|
|
label: 'Conta',
|
|
items: [
|
|
{ label: 'Meu plano', icon: 'pi pi-fw pi-credit-card', to: '/therapist/meu-plano' },
|
|
{ label: 'Meu Perfil', icon: 'pi pi-fw pi-user', to: '/account/profile' },
|
|
{ label: 'Meu Negócio', icon: 'pi pi-fw pi-building', to: '/account/negocio' },
|
|
{ label: 'Segurança', icon: 'pi pi-fw pi-shield', to: '/account/security' }
|
|
]
|
|
}
|
|
];
|