diff --git a/bro.config.js b/bro.config.js index 96b420c..c376278 100644 --- a/bro.config.js +++ b/bro.config.js @@ -39,6 +39,11 @@ module.exports = { value: '', key: 'course.statistics', }, + 'courses.statistics': { + on: true, + value: '', + key: 'courses.statistics', + }, }, }, config: { diff --git a/src/pages/course-list/course-list.tsx b/src/pages/course-list/course-list.tsx index 2d26d1c..9ebe06d 100644 --- a/src/pages/course-list/course-list.tsx +++ b/src/pages/course-list/course-list.tsx @@ -9,6 +9,7 @@ import { } from '@chakra-ui/react' import { AddIcon } from '@chakra-ui/icons' import { useTranslation } from 'react-i18next' +import { getFeatures } from '@brojs/cli' import { useAppSelector } from '../../__data__/store' import { api } from '../../__data__/api/api' @@ -28,6 +29,10 @@ export const CoursesList = () => { const { t } = useTranslation() const { colorMode } = useColorMode() + // Получаем значения фичей + const features = getFeatures('journal') + const coursesStatistics = features?.['courses.statistics'] + // Создаем API запросы для получения уроков const [getLessons] = api.useLazyLessonListQuery() @@ -99,7 +104,7 @@ export const CoursesList = () => { )} - {!showForm && ( + {!showForm && coursesStatistics && (