diff --git a/deploy-dev.sh b/deploy-dev.sh new file mode 100644 index 0000000..2628f3e --- /dev/null +++ b/deploy-dev.sh @@ -0,0 +1,7 @@ +BASEDIR=$(dirname "$0") + +npx webpack --mode production --progress || exit $? + +rsync -azv $BASEDIR/public/* system-praktyk@kadet.net:~/dev/front +rsync -azv $BASEDIR/build/* system-praktyk@kadet.net:~/dev/front + diff --git a/src/api/index.ts b/src/api/index.ts index 5f76ba3..930d924 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -13,7 +13,7 @@ import * as internship from "./internship"; import * as upload from "./upload"; export const axios = Axios.create({ - baseURL: process.env.API_BASE_URL || "https://system-praktyk.stg.kadet.net/api/", + baseURL: process.env.API_BASE_URL || `https://${window.location.hostname}/api/`, }) axios.interceptors.request.use(config => { diff --git a/src/components/confirm.tsx b/src/components/confirm.tsx index a384647..d08032e 100644 --- a/src/components/confirm.tsx +++ b/src/components/confirm.tsx @@ -1,7 +1,7 @@ import { useState } from "react"; import React from "react"; import { createPortal } from "react-dom"; -import { Button, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle } from "@material-ui/core"; +import { Button, ButtonProps, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle } from "@material-ui/core"; import { useTranslation } from "react-i18next"; export type ConfirmProps = { @@ -10,9 +10,10 @@ export type ConfirmProps = { content?: React.ReactNode, onConfirm?: () => void, onCancel?: () => void, + confirm?: (props: Pick) => React.ReactNode, } -export function Confirm({ children, title, content, onConfirm, onCancel }: ConfirmProps) { +export function Confirm({ children, title, content, confirm, onConfirm, onCancel }: ConfirmProps) { const [ open, setOpen ] = useState(false); const { t } = useTranslation(); @@ -35,7 +36,7 @@ export function Confirm({ children, title, content, onConfirm, onCancel }: Confi { content || t('confirmation') } - + { confirm ? confirm({ onClick: handleConfirm }) : } , diff --git a/src/management/page/list.tsx b/src/management/page/list.tsx index 2a00a83..15376f3 100644 --- a/src/management/page/list.tsx +++ b/src/management/page/list.tsx @@ -17,6 +17,7 @@ import { Add, Edit } from "@material-ui/icons"; import { createPortal } from "react-dom"; import { EditStaticPageDialog } from "@/management/page/edit"; import { Confirm } from "@/components/confirm"; +import useTheme from "@material-ui/core/styles/useTheme"; export const StaticPageManagement = () => { const { t } = useTranslation("management"); @@ -69,6 +70,8 @@ export const StaticPageManagement = () => { } const DeleteStaticPageAction = ({ page, children }: { page: OneOrMany, children?: (action: any) => React.ReactNode }) => { + const theme = useTheme(); + const handlePageDeletion = async () => { await api.page.remove(page); updatePageList(); @@ -88,7 +91,20 @@ export const StaticPageManagement = () => { } ; - return + return + + } + > { action => children ? children(action) : } ; } @@ -153,6 +169,7 @@ export const StaticPageManagement = () => { { selected.length > 0 && + { t("actions.bulk") }: { action => } diff --git a/translations/management.pl.yaml b/translations/management.pl.yaml index 1ebd647..96f8166 100644 --- a/translations/management.pl.yaml +++ b/translations/management.pl.yaml @@ -7,6 +7,7 @@ cancel: anuluj actions: label: Akcje + bulk: Akcje masowe preview: Podgląd delete: Usuń edit: Edytuj