Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
428b06f920 | ||
|
|
7d6f2a4ca0 | ||
|
|
2fe7600ef3 | ||
|
|
985b8ef315 | ||
|
|
956fdec7f5 | ||
|
|
d44a511a3d | ||
|
|
0aebb87210 | ||
|
|
9509f12d73 | ||
|
|
021031ced7 | ||
|
|
22a9199d9d |
@@ -1,12 +0,0 @@
|
|||||||
import type { ConfigFile } from '@rtk-query/codegen-openapi'
|
|
||||||
|
|
||||||
const config: ConfigFile = {
|
|
||||||
schemaFile: 'https://platform.bro-js.ru/jrnl-bh/documentation/json',
|
|
||||||
apiFile: './src/__data__/api/api.ts',
|
|
||||||
apiImport: 'api',
|
|
||||||
outputFile: './src/__data__/api/jrnl.ts',
|
|
||||||
exportName: 'jrnlApi',
|
|
||||||
hooks: true,
|
|
||||||
}
|
|
||||||
|
|
||||||
export default config
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "journal.pl",
|
"name": "journal.pl",
|
||||||
"version": "3.5.0",
|
"version": "3.6.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "journal.pl",
|
"name": "journal.pl",
|
||||||
"version": "3.5.0",
|
"version": "3.6.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@brojs/cli": "^0.0.4-beta.0",
|
"@brojs/cli": "^0.0.4-beta.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "journal.pl",
|
"name": "journal.pl",
|
||||||
"version": "3.5.0",
|
"version": "3.6.0",
|
||||||
"description": "bro-js platform journal ui repo",
|
"description": "bro-js platform journal ui repo",
|
||||||
"main": "./src/index.tsx",
|
"main": "./src/index.tsx",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -19,7 +19,6 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rtk-query/codegen-openapi": "^1.2.0",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
||||||
"@typescript-eslint/parser": "^7.4.0",
|
"@typescript-eslint/parser": "^7.4.0",
|
||||||
"eslint": "^8.57.0",
|
"eslint": "^8.57.0",
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ export default (props) => <App {...props} />;
|
|||||||
|
|
||||||
let rootElement: ReactDOM.Root
|
let rootElement: ReactDOM.Root
|
||||||
|
|
||||||
export const mount = async (Сomponent, element = document.getElementById('app')) => {
|
export const mount = async (Component, element = document.getElementById('app')) => {
|
||||||
let user = null;
|
let user = null;
|
||||||
try {
|
try {
|
||||||
await keycloak.init({ onLoad: "login-required" });
|
await keycloak.init({ onLoad: "login-required" });
|
||||||
@@ -26,11 +26,11 @@ export const mount = async (Сomponent, element = document.getElementById('app')
|
|||||||
const store = createStore({ user });
|
const store = createStore({ user });
|
||||||
|
|
||||||
rootElement = ReactDOM.createRoot(element);
|
rootElement = ReactDOM.createRoot(element);
|
||||||
rootElement.render(<Сomponent store={store} />);
|
rootElement.render(<Component store={store} />);
|
||||||
|
|
||||||
if(module.hot) {
|
if(module.hot) {
|
||||||
module.hot.accept('./app', ()=> {
|
module.hot.accept('./app', ()=> {
|
||||||
rootElement.render(<Сomponent store={store} />);
|
rootElement.render(<Component store={store} />);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
import React, { useMemo } from 'react'
|
import React, { useMemo } from 'react'
|
||||||
import { useParams } from 'react-router-dom'
|
import { useParams } from 'react-router-dom'
|
||||||
import styled from '@emotion/styled'
|
import { Box, Heading, Tooltip, Text } from '@chakra-ui/react'
|
||||||
|
import dayjs from 'dayjs'
|
||||||
|
|
||||||
import { api } from '../../__data__/api/api'
|
import { api } from '../../__data__/api/api'
|
||||||
import { PageLoader } from '../../components/page-loader/page-loader'
|
import { PageLoader } from '../../components/page-loader/page-loader'
|
||||||
import { Box, Container, Heading } from '@chakra-ui/react'
|
|
||||||
import dayjs from 'dayjs'
|
|
||||||
|
|
||||||
export const Attendance = () => {
|
export const Attendance = () => {
|
||||||
const { courseId } = useParams()
|
const { courseId } = useParams()
|
||||||
@@ -25,15 +24,18 @@ export const Attendance = () => {
|
|||||||
|
|
||||||
attendance.forEach((lesson) => {
|
attendance.forEach((lesson) => {
|
||||||
lesson.students.forEach((student) => {
|
lesson.students.forEach((student) => {
|
||||||
|
const current = studentsMap.get(student.sub) || {}
|
||||||
|
|
||||||
studentsMap.set(student.sub, {
|
studentsMap.set(student.sub, {
|
||||||
...student,
|
...student,
|
||||||
value:
|
id: student.sub,
|
||||||
student.family_name && student.given_name
|
value: current.value || (student.family_name && student.given_name
|
||||||
? `${student.family_name} ${student.given_name}`
|
? `${student.family_name} ${student.given_name}`
|
||||||
: student.name || student.email,
|
: student.name || student.email || student.preferred_username || student.family_name || student.given_name),
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
const compare = Intl.Collator('ru').compare
|
const compare = Intl.Collator('ru').compare
|
||||||
|
|
||||||
const students = [...studentsMap.values()]
|
const students = [...studentsMap.values()]
|
||||||
@@ -61,7 +63,7 @@ export const Attendance = () => {
|
|||||||
<th>Дата</th>
|
<th>Дата</th>
|
||||||
<th>Название занятия</th>
|
<th>Название занятия</th>
|
||||||
{data.students.map((student) => (
|
{data.students.map((student) => (
|
||||||
<th key={student.sub}>{student.name}</th>
|
<th id={student.id || student.sub} key={student.sub}>{student.name || student.value || 'Имя не определено'}</th>
|
||||||
))}
|
))}
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -69,14 +71,22 @@ export const Attendance = () => {
|
|||||||
{attendance.map((lesson, index) => (
|
{attendance.map((lesson, index) => (
|
||||||
<tr key={lesson.name}>
|
<tr key={lesson.name}>
|
||||||
<td>{dayjs(lesson.date).format('DD.MM.YYYY')}</td>
|
<td>{dayjs(lesson.date).format('DD.MM.YYYY')}</td>
|
||||||
<td>{lesson.name}</td>
|
<td>{<ShortText text={lesson.name} />}</td>
|
||||||
|
|
||||||
{data.students.map((st) => {
|
{data.students.map((st) => {
|
||||||
const wasThere =
|
const wasThere =
|
||||||
lesson.students.findIndex((u) => u.sub === st.sub) !== -1
|
lesson.students.findIndex((u) => u.sub === st.sub) !== -1
|
||||||
return <td style={{
|
return (
|
||||||
textAlign: 'center',
|
<td
|
||||||
backgroundColor: wasThere ? '#8ef78a' : '#e09797',
|
style={{
|
||||||
}} key={st.sub}>{wasThere ? '+' : '-'}</td>
|
textAlign: 'center',
|
||||||
|
backgroundColor: wasThere ? '#8ef78a' : '#e09797',
|
||||||
|
}}
|
||||||
|
key={st.sub}
|
||||||
|
>
|
||||||
|
{wasThere ? '+' : '-'}
|
||||||
|
</td>
|
||||||
|
)
|
||||||
})}
|
})}
|
||||||
</tr>
|
</tr>
|
||||||
))}
|
))}
|
||||||
@@ -86,3 +96,17 @@ export const Attendance = () => {
|
|||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const ShortText = ({ text }: { text: string }) => {
|
||||||
|
const needShortText = text.length > 20
|
||||||
|
|
||||||
|
if (needShortText) {
|
||||||
|
return (
|
||||||
|
<Tooltip label="На страницу с лекциями" fontSize="12px" top="16px">
|
||||||
|
<Text>{text.slice(0, 20)}...</Text>
|
||||||
|
</Tooltip>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
return text
|
||||||
|
}
|
||||||
|
|||||||
@@ -57,21 +57,27 @@ export const CourseCard = ({ course }: { course: Course }) => {
|
|||||||
<CourseDetails populatedCourse={populatedCourse.data} />
|
<CourseDetails populatedCourse={populatedCourse.data} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<Tooltip label="На страницу с лекциями" fontSize="12px" top="16px">
|
{getNavigationsValue('link.journal.attendance') && (
|
||||||
<Button
|
<Tooltip
|
||||||
leftIcon={<LinkIcon />}
|
label="На страницу с лекциями"
|
||||||
as={ConnectedLink}
|
fontSize="12px"
|
||||||
variant="outline"
|
top="16px"
|
||||||
colorScheme="blue"
|
|
||||||
to={generatePath(
|
|
||||||
`${getNavigationsValue('journal.main')}${getNavigationsValue('link.journal.attendance')}`,
|
|
||||||
{ courseId: course.id },
|
|
||||||
)}
|
|
||||||
>
|
>
|
||||||
<Box mt={3}></Box>
|
<Button
|
||||||
Посещаемость
|
leftIcon={<LinkIcon />}
|
||||||
</Button>
|
as={ConnectedLink}
|
||||||
</Tooltip>
|
variant="outline"
|
||||||
|
colorScheme="blue"
|
||||||
|
to={generatePath(
|
||||||
|
`${getNavigationsValue('journal.main')}${getNavigationsValue('link.journal.attendance')}`,
|
||||||
|
{ courseId: course.id },
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<Box mt={3}></Box>
|
||||||
|
Посещаемость
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
|
)}
|
||||||
</Stack>
|
</Stack>
|
||||||
</CardBody>
|
</CardBody>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user