@hed-hog/operations 0.0.3 → 0.0.286
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +122 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/operations-data.controller.d.ts +139 -0
- package/dist/operations-data.controller.d.ts.map +1 -0
- package/dist/operations-data.controller.js +113 -0
- package/dist/operations-data.controller.js.map +1 -0
- package/dist/operations-growth.controller.d.ts +48 -0
- package/dist/operations-growth.controller.d.ts.map +1 -0
- package/dist/operations-growth.controller.js +90 -0
- package/dist/operations-growth.controller.js.map +1 -0
- package/dist/operations.module.d.ts.map +1 -1
- package/dist/operations.module.js +10 -4
- package/dist/operations.module.js.map +1 -1
- package/dist/operations.service.d.ts +178 -0
- package/dist/operations.service.d.ts.map +1 -0
- package/dist/operations.service.js +134 -0
- package/dist/operations.service.js.map +1 -0
- package/hedhog/data/menu.yaml +251 -132
- package/hedhog/data/operations_career_level.yaml +102 -0
- package/hedhog/data/operations_career_track.yaml +8 -0
- package/hedhog/data/operations_certification.yaml +38 -0
- package/hedhog/data/operations_evaluation_cycle.yaml +18 -0
- package/hedhog/data/operations_performance_criterion.yaml +48 -0
- package/hedhog/data/role.yaml +14 -7
- package/hedhog/data/route.yaml +143 -80
- package/hedhog/frontend/app/_components/allocation-calendar.tsx.ejs +56 -56
- package/hedhog/frontend/app/_components/kanban-board.tsx.ejs +626 -83
- package/hedhog/frontend/app/_components/operations-header.tsx.ejs +29 -29
- package/hedhog/frontend/app/_components/section-card.tsx.ejs +32 -32
- package/hedhog/frontend/app/_components/status-badge.tsx.ejs +15 -15
- package/hedhog/frontend/app/_components/timesheet-entry-dialog.tsx.ejs +142 -142
- package/hedhog/frontend/app/_lib/hooks/use-operations-data.ts.ejs +41 -41
- package/hedhog/frontend/app/_lib/hooks/use-operations-growth-data.ts.ejs +63 -0
- package/hedhog/frontend/app/_lib/mocks/allocations.mock.ts.ejs +74 -74
- package/hedhog/frontend/app/_lib/mocks/contracts.mock.ts.ejs +74 -74
- package/hedhog/frontend/app/_lib/mocks/operations-growth.mock.ts.ejs +824 -0
- package/hedhog/frontend/app/_lib/mocks/projects.mock.ts.ejs +455 -60
- package/hedhog/frontend/app/_lib/mocks/tasks.mock.ts.ejs +117 -88
- package/hedhog/frontend/app/_lib/mocks/timesheets.mock.ts.ejs +84 -84
- package/hedhog/frontend/app/_lib/mocks/users.mock.ts.ejs +67 -67
- package/hedhog/frontend/app/_lib/services/contracts.service.ts.ejs +10 -10
- package/hedhog/frontend/app/_lib/services/operations-growth.service.ts.ejs +31 -0
- package/hedhog/frontend/app/_lib/services/projects.service.ts.ejs +10 -10
- package/hedhog/frontend/app/_lib/services/tasks.service.ts.ejs +10 -10
- package/hedhog/frontend/app/_lib/services/timesheets.service.ts.ejs +10 -10
- package/hedhog/frontend/app/_lib/types/operations-growth.ts.ejs +209 -0
- package/hedhog/frontend/app/_lib/types/operations.ts.ejs +156 -95
- package/hedhog/frontend/app/_lib/utils/format.ts.ejs +25 -25
- package/hedhog/frontend/app/_lib/utils/growth.ts.ejs +62 -0
- package/hedhog/frontend/app/_lib/utils/metrics.ts.ejs +103 -103
- package/hedhog/frontend/app/_lib/utils/status.ts.ejs +80 -80
- package/hedhog/frontend/app/allocations/page.tsx.ejs +155 -99
- package/hedhog/frontend/app/approvals/page.tsx.ejs +147 -147
- package/hedhog/frontend/app/career/page.tsx.ejs +143 -0
- package/hedhog/frontend/app/certifications/page.tsx.ejs +202 -0
- package/hedhog/frontend/app/contracts/[id]/page.tsx.ejs +108 -108
- package/hedhog/frontend/app/contracts/page.tsx.ejs +181 -124
- package/hedhog/frontend/app/evaluations/page.tsx.ejs +278 -0
- package/hedhog/frontend/app/goals/page.tsx.ejs +171 -0
- package/hedhog/frontend/app/growth/page.tsx.ejs +288 -0
- package/hedhog/frontend/app/layout.tsx.ejs +9 -9
- package/hedhog/frontend/app/manager/page.tsx.ejs +175 -0
- package/hedhog/frontend/app/page.tsx.ejs +177 -177
- package/hedhog/frontend/app/projects/[id]/page.tsx.ejs +936 -186
- package/hedhog/frontend/app/projects/page.tsx.ejs +1074 -111
- package/hedhog/frontend/app/rewards/page.tsx.ejs +196 -0
- package/hedhog/frontend/app/tasks/page.tsx.ejs +999 -47
- package/hedhog/frontend/app/timesheets/page.tsx.ejs +126 -126
- package/hedhog/frontend/messages/en.json +454 -142
- package/hedhog/frontend/messages/pt.json +454 -142
- package/hedhog/table/operations_allocation.yaml +52 -0
- package/hedhog/table/operations_calibration_item.yaml +61 -0
- package/hedhog/table/operations_calibration_session.yaml +25 -0
- package/hedhog/table/operations_career_level.yaml +75 -0
- package/hedhog/table/operations_career_track.yaml +21 -0
- package/hedhog/table/operations_certification.yaml +48 -0
- package/hedhog/table/operations_contract.yaml +57 -0
- package/hedhog/table/operations_employee.yaml +64 -0
- package/hedhog/table/operations_employee_certification.yaml +43 -0
- package/hedhog/table/operations_employee_connect.yaml +61 -0
- package/hedhog/table/operations_employee_evaluation.yaml +113 -0
- package/hedhog/table/operations_employee_evaluation_item.yaml +39 -0
- package/hedhog/table/operations_employee_profile.yaml +80 -0
- package/hedhog/table/operations_employee_skill_matrix.yaml +30 -0
- package/hedhog/table/operations_evaluation_cycle.yaml +31 -0
- package/hedhog/table/operations_goal.yaml +67 -0
- package/hedhog/table/operations_goal_progress.yaml +31 -0
- package/hedhog/table/operations_performance_criterion.yaml +29 -0
- package/hedhog/table/operations_project.yaml +66 -0
- package/hedhog/table/operations_promotion_readiness.yaml +49 -0
- package/hedhog/table/operations_promotion_recommendation.yaml +63 -0
- package/hedhog/table/operations_public_recognition.yaml +46 -0
- package/hedhog/table/operations_reward.yaml +100 -0
- package/hedhog/table/operations_score_event.yaml +81 -0
- package/hedhog/table/operations_task.yaml +60 -0
- package/hedhog/table/operations_timesheet.yaml +49 -0
- package/hedhog/table/operations_timesheet_entry.yaml +51 -0
- package/package.json +4 -4
- package/src/index.ts +2 -1
- package/src/language/en.json +8 -8
- package/src/language/pt.json +8 -8
- package/src/operations-data.controller.ts +54 -0
- package/src/operations-growth.controller.ts +44 -0
- package/src/operations.module.ts +21 -15
- package/src/operations.service.ts +137 -0
|
@@ -1,126 +1,126 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import { Page } from '@/components/entity-list';
|
|
4
|
-
import { Input } from '@/components/ui/input';
|
|
5
|
-
import {
|
|
6
|
-
Table,
|
|
7
|
-
TableBody,
|
|
8
|
-
TableCell,
|
|
9
|
-
TableHead,
|
|
10
|
-
TableHeader,
|
|
11
|
-
TableRow,
|
|
12
|
-
} from '@/components/ui/table';
|
|
13
|
-
import { useTranslations } from 'next-intl';
|
|
14
|
-
import { useMemo, useState } from 'react';
|
|
15
|
-
import { OperationsHeader } from '../_components/operations-header';
|
|
16
|
-
import { SectionCard } from '../_components/section-card';
|
|
17
|
-
import { StatusBadge } from '../_components/status-badge';
|
|
18
|
-
import { TimesheetEntryDialog } from '../_components/timesheet-entry-dialog';
|
|
19
|
-
import { useOperationsData } from '../_lib/hooks/use-operations-data';
|
|
20
|
-
import { formatDate, formatHours } from '../_lib/utils/format';
|
|
21
|
-
import { getApprovalBadgeClasses, getApprovalLabel } from '../_lib/utils/status';
|
|
22
|
-
|
|
23
|
-
export default function TimesheetsPage() {
|
|
24
|
-
const t = useTranslations('operations.TimesheetsPage');
|
|
25
|
-
const { timesheets, users, projects, tasks, dailyTotals } =
|
|
26
|
-
useOperationsData();
|
|
27
|
-
const [search, setSearch] = useState('');
|
|
28
|
-
|
|
29
|
-
const filteredTimesheets = useMemo(
|
|
30
|
-
() =>
|
|
31
|
-
timesheets.filter((entry) => {
|
|
32
|
-
const user = users.find((item) => item.id === entry.userId);
|
|
33
|
-
const project = projects.find((item) => item.id === entry.projectId);
|
|
34
|
-
const task = tasks.find((item) => item.id === entry.taskId);
|
|
35
|
-
|
|
36
|
-
return `${user?.name} ${project?.name} ${task?.title} ${entry.description}`
|
|
37
|
-
.toLowerCase()
|
|
38
|
-
.includes(search.toLowerCase());
|
|
39
|
-
}),
|
|
40
|
-
[timesheets, users, projects, tasks, search]
|
|
41
|
-
);
|
|
42
|
-
|
|
43
|
-
const weeklyTotal = filteredTimesheets.reduce(
|
|
44
|
-
(sum, entry) => sum + entry.hours,
|
|
45
|
-
0
|
|
46
|
-
);
|
|
47
|
-
|
|
48
|
-
return (
|
|
49
|
-
<Page>
|
|
50
|
-
<OperationsHeader
|
|
51
|
-
title={t('title')}
|
|
52
|
-
description={t('description')}
|
|
53
|
-
current={t('breadcrumb')}
|
|
54
|
-
actions={
|
|
55
|
-
<TimesheetEntryDialog users={users} projects={projects} tasks={tasks} />
|
|
56
|
-
}
|
|
57
|
-
/>
|
|
58
|
-
|
|
59
|
-
<div className="grid gap-4 md:grid-cols-3">
|
|
60
|
-
<SectionCard title={t('summary.totalHours')}>
|
|
61
|
-
<p className="text-3xl font-semibold">{formatHours(weeklyTotal)}</p>
|
|
62
|
-
</SectionCard>
|
|
63
|
-
<SectionCard title={t('summary.dailyTotals')}>
|
|
64
|
-
<div className="space-y-2 text-sm">
|
|
65
|
-
{Object.entries(dailyTotals).map(([date, total]) => (
|
|
66
|
-
<div key={date} className="flex items-center justify-between">
|
|
67
|
-
<span>{formatDate(date)}</span>
|
|
68
|
-
<span>{formatHours(total)}</span>
|
|
69
|
-
</div>
|
|
70
|
-
))}
|
|
71
|
-
</div>
|
|
72
|
-
</SectionCard>
|
|
73
|
-
<SectionCard title={t('summary.weeklyTotal')}>
|
|
74
|
-
<p className="text-3xl font-semibold">{formatHours(weeklyTotal)}</p>
|
|
75
|
-
</SectionCard>
|
|
76
|
-
</div>
|
|
77
|
-
|
|
78
|
-
<SectionCard title={t('gridTitle')} description={t('gridDescription')}>
|
|
79
|
-
<div className="mb-4">
|
|
80
|
-
<Input
|
|
81
|
-
value={search}
|
|
82
|
-
onChange={(event) => setSearch(event.target.value)}
|
|
83
|
-
placeholder={t('searchPlaceholder')}
|
|
84
|
-
/>
|
|
85
|
-
</div>
|
|
86
|
-
<Table>
|
|
87
|
-
<TableHeader>
|
|
88
|
-
<TableRow>
|
|
89
|
-
<TableHead>{t('columns.date')}</TableHead>
|
|
90
|
-
<TableHead>{t('columns.user')}</TableHead>
|
|
91
|
-
<TableHead>{t('columns.project')}</TableHead>
|
|
92
|
-
<TableHead>{t('columns.task')}</TableHead>
|
|
93
|
-
<TableHead>{t('columns.hours')}</TableHead>
|
|
94
|
-
<TableHead>{t('columns.description')}</TableHead>
|
|
95
|
-
<TableHead>{t('columns.status')}</TableHead>
|
|
96
|
-
</TableRow>
|
|
97
|
-
</TableHeader>
|
|
98
|
-
<TableBody>
|
|
99
|
-
{filteredTimesheets.map((entry) => {
|
|
100
|
-
const user = users.find((item) => item.id === entry.userId);
|
|
101
|
-
const project = projects.find((item) => item.id === entry.projectId);
|
|
102
|
-
const task = tasks.find((item) => item.id === entry.taskId);
|
|
103
|
-
|
|
104
|
-
return (
|
|
105
|
-
<TableRow key={entry.id}>
|
|
106
|
-
<TableCell>{formatDate(entry.date)}</TableCell>
|
|
107
|
-
<TableCell>{user?.name}</TableCell>
|
|
108
|
-
<TableCell>{project?.name}</TableCell>
|
|
109
|
-
<TableCell>{task?.title}</TableCell>
|
|
110
|
-
<TableCell>{formatHours(entry.hours)}</TableCell>
|
|
111
|
-
<TableCell>{entry.description}</TableCell>
|
|
112
|
-
<TableCell>
|
|
113
|
-
<StatusBadge
|
|
114
|
-
label={getApprovalLabel(entry.status)}
|
|
115
|
-
className={getApprovalBadgeClasses(entry.status)}
|
|
116
|
-
/>
|
|
117
|
-
</TableCell>
|
|
118
|
-
</TableRow>
|
|
119
|
-
);
|
|
120
|
-
})}
|
|
121
|
-
</TableBody>
|
|
122
|
-
</Table>
|
|
123
|
-
</SectionCard>
|
|
124
|
-
</Page>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { Page } from '@/components/entity-list';
|
|
4
|
+
import { Input } from '@/components/ui/input';
|
|
5
|
+
import {
|
|
6
|
+
Table,
|
|
7
|
+
TableBody,
|
|
8
|
+
TableCell,
|
|
9
|
+
TableHead,
|
|
10
|
+
TableHeader,
|
|
11
|
+
TableRow,
|
|
12
|
+
} from '@/components/ui/table';
|
|
13
|
+
import { useTranslations } from 'next-intl';
|
|
14
|
+
import { useMemo, useState } from 'react';
|
|
15
|
+
import { OperationsHeader } from '../_components/operations-header';
|
|
16
|
+
import { SectionCard } from '../_components/section-card';
|
|
17
|
+
import { StatusBadge } from '../_components/status-badge';
|
|
18
|
+
import { TimesheetEntryDialog } from '../_components/timesheet-entry-dialog';
|
|
19
|
+
import { useOperationsData } from '../_lib/hooks/use-operations-data';
|
|
20
|
+
import { formatDate, formatHours } from '../_lib/utils/format';
|
|
21
|
+
import { getApprovalBadgeClasses, getApprovalLabel } from '../_lib/utils/status';
|
|
22
|
+
|
|
23
|
+
export default function TimesheetsPage() {
|
|
24
|
+
const t = useTranslations('operations.TimesheetsPage');
|
|
25
|
+
const { timesheets, users, projects, tasks, dailyTotals } =
|
|
26
|
+
useOperationsData();
|
|
27
|
+
const [search, setSearch] = useState('');
|
|
28
|
+
|
|
29
|
+
const filteredTimesheets = useMemo(
|
|
30
|
+
() =>
|
|
31
|
+
timesheets.filter((entry) => {
|
|
32
|
+
const user = users.find((item) => item.id === entry.userId);
|
|
33
|
+
const project = projects.find((item) => item.id === entry.projectId);
|
|
34
|
+
const task = tasks.find((item) => item.id === entry.taskId);
|
|
35
|
+
|
|
36
|
+
return `${user?.name} ${project?.name} ${task?.title} ${entry.description}`
|
|
37
|
+
.toLowerCase()
|
|
38
|
+
.includes(search.toLowerCase());
|
|
39
|
+
}),
|
|
40
|
+
[timesheets, users, projects, tasks, search]
|
|
41
|
+
);
|
|
42
|
+
|
|
43
|
+
const weeklyTotal = filteredTimesheets.reduce(
|
|
44
|
+
(sum, entry) => sum + entry.hours,
|
|
45
|
+
0
|
|
46
|
+
);
|
|
47
|
+
|
|
48
|
+
return (
|
|
49
|
+
<Page>
|
|
50
|
+
<OperationsHeader
|
|
51
|
+
title={t('title')}
|
|
52
|
+
description={t('description')}
|
|
53
|
+
current={t('breadcrumb')}
|
|
54
|
+
actions={
|
|
55
|
+
<TimesheetEntryDialog users={users} projects={projects} tasks={tasks} />
|
|
56
|
+
}
|
|
57
|
+
/>
|
|
58
|
+
|
|
59
|
+
<div className="grid gap-4 md:grid-cols-3">
|
|
60
|
+
<SectionCard title={t('summary.totalHours')}>
|
|
61
|
+
<p className="text-3xl font-semibold">{formatHours(weeklyTotal)}</p>
|
|
62
|
+
</SectionCard>
|
|
63
|
+
<SectionCard title={t('summary.dailyTotals')}>
|
|
64
|
+
<div className="space-y-2 text-sm">
|
|
65
|
+
{Object.entries(dailyTotals).map(([date, total]) => (
|
|
66
|
+
<div key={date} className="flex items-center justify-between">
|
|
67
|
+
<span>{formatDate(date)}</span>
|
|
68
|
+
<span>{formatHours(total)}</span>
|
|
69
|
+
</div>
|
|
70
|
+
))}
|
|
71
|
+
</div>
|
|
72
|
+
</SectionCard>
|
|
73
|
+
<SectionCard title={t('summary.weeklyTotal')}>
|
|
74
|
+
<p className="text-3xl font-semibold">{formatHours(weeklyTotal)}</p>
|
|
75
|
+
</SectionCard>
|
|
76
|
+
</div>
|
|
77
|
+
|
|
78
|
+
<SectionCard title={t('gridTitle')} description={t('gridDescription')}>
|
|
79
|
+
<div className="mb-4">
|
|
80
|
+
<Input
|
|
81
|
+
value={search}
|
|
82
|
+
onChange={(event) => setSearch(event.target.value)}
|
|
83
|
+
placeholder={t('searchPlaceholder')}
|
|
84
|
+
/>
|
|
85
|
+
</div>
|
|
86
|
+
<Table>
|
|
87
|
+
<TableHeader>
|
|
88
|
+
<TableRow>
|
|
89
|
+
<TableHead>{t('columns.date')}</TableHead>
|
|
90
|
+
<TableHead>{t('columns.user')}</TableHead>
|
|
91
|
+
<TableHead>{t('columns.project')}</TableHead>
|
|
92
|
+
<TableHead>{t('columns.task')}</TableHead>
|
|
93
|
+
<TableHead>{t('columns.hours')}</TableHead>
|
|
94
|
+
<TableHead>{t('columns.description')}</TableHead>
|
|
95
|
+
<TableHead>{t('columns.status')}</TableHead>
|
|
96
|
+
</TableRow>
|
|
97
|
+
</TableHeader>
|
|
98
|
+
<TableBody>
|
|
99
|
+
{filteredTimesheets.map((entry) => {
|
|
100
|
+
const user = users.find((item) => item.id === entry.userId);
|
|
101
|
+
const project = projects.find((item) => item.id === entry.projectId);
|
|
102
|
+
const task = tasks.find((item) => item.id === entry.taskId);
|
|
103
|
+
|
|
104
|
+
return (
|
|
105
|
+
<TableRow key={entry.id}>
|
|
106
|
+
<TableCell>{formatDate(entry.date)}</TableCell>
|
|
107
|
+
<TableCell>{user?.name}</TableCell>
|
|
108
|
+
<TableCell>{project?.name}</TableCell>
|
|
109
|
+
<TableCell>{task?.title}</TableCell>
|
|
110
|
+
<TableCell>{formatHours(entry.hours)}</TableCell>
|
|
111
|
+
<TableCell>{entry.description}</TableCell>
|
|
112
|
+
<TableCell>
|
|
113
|
+
<StatusBadge
|
|
114
|
+
label={getApprovalLabel(entry.status)}
|
|
115
|
+
className={getApprovalBadgeClasses(entry.status)}
|
|
116
|
+
/>
|
|
117
|
+
</TableCell>
|
|
118
|
+
</TableRow>
|
|
119
|
+
);
|
|
120
|
+
})}
|
|
121
|
+
</TableBody>
|
|
122
|
+
</Table>
|
|
123
|
+
</SectionCard>
|
|
124
|
+
</Page>
|
|
125
|
+
);
|
|
126
|
+
}
|