From 9bf5412b0d7220e12a4c9052ea19e1d6b95b52ad Mon Sep 17 00:00:00 2001 From: Kacper Donat Date: Sun, 15 Nov 2020 15:43:48 +0100 Subject: [PATCH] Add ability to log in as sample manager --- package.json | 1 + public/img/pg-logo.svg | 53 ++ src/app.tsx | 4 +- src/pages/user/login.tsx | 36 +- src/state/actions/user.ts | 2 + src/state/reducer/user.ts | 5 +- translations/pl.yaml | 5 + yarn.lock | 1050 ++++++++++++++++++++++++++++++++++++- 8 files changed, 1145 insertions(+), 11 deletions(-) create mode 100644 public/img/pg-logo.svg diff --git a/package.json b/package.json index 51d8da2..e01bd37 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "@material-ui/icons": "^4.9.1", "@material-ui/lab": "^4.0.0-alpha.55", "@material-ui/pickers": "^3.2.10", + "@svgr/webpack": "^5.5.0", "@types/classnames": "^2.2.10", "@types/node": "^12.0.0", "@types/react": "^16.9.0", diff --git a/public/img/pg-logo.svg b/public/img/pg-logo.svg new file mode 100644 index 0000000..a7c3d65 --- /dev/null +++ b/public/img/pg-logo.svg @@ -0,0 +1,53 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/src/app.tsx b/src/app.tsx index 95e05e1..dc69b6d 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -15,6 +15,7 @@ import { getLocale, Locale } from "@/state/reducer/settings"; import i18n from "@/i18n"; import moment from "moment-timezone"; import { Container } from "@material-ui/core"; +import { useCurrentUser } from "@/hooks"; const UserMenu = (props: HTMLProps) => { const student = useSelector(state => state.student as Student); @@ -62,6 +63,7 @@ const LanguageSwitcher = ({ className, ...props }: HTMLProps) function App() { const { t } = useTranslation(); const locale = useSelector(state => getLocale(state.settings)); + const user = useCurrentUser(); useEffect(() => { i18n.changeLanguage(locale); @@ -104,7 +106,7 @@ function App() {