54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import { Button, Space } from "antd";
|
|
import React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import {
|
|
selectAllmediaForJob,
|
|
deselectAllMediaForJob,
|
|
} from "../../redux/media/media.actions";
|
|
const mapStateToProps = createStructuredSelector({
|
|
//currentUser: selectCurrentUser
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
selectAllmediaForJob: (jobid) => dispatch(selectAllmediaForJob(jobid)),
|
|
deselectAllmediaForJob: (jobid) => dispatch(deselectAllMediaForJob(jobid)),
|
|
});
|
|
export default connect(
|
|
mapStateToProps,
|
|
mapDispatchToProps
|
|
)(JobsDocumentsLocalGallerySelectAllComponent);
|
|
|
|
export function JobsDocumentsLocalGallerySelectAllComponent({
|
|
jobid,
|
|
selectAllmediaForJob,
|
|
deselectAllmediaForJob,
|
|
}) {
|
|
const { t } = useTranslation();
|
|
|
|
// onSelectImage={(index, image) => {
|
|
// toggleMediaSelected({ jobid: job.id, filename: image.filename });
|
|
// }}
|
|
|
|
const handleSelectAll = () => {
|
|
selectAllmediaForJob({ jobid });
|
|
};
|
|
|
|
const handleDeselectAll = () => {
|
|
deselectAllmediaForJob({ jobid });
|
|
};
|
|
|
|
return (
|
|
<Space wrap>
|
|
<Button onClick={handleSelectAll}>
|
|
{t("general.actions.selectall")}
|
|
</Button>
|
|
|
|
<Button onClick={handleDeselectAll}>
|
|
{t("general.actions.deselectall")}
|
|
</Button>
|
|
</Space>
|
|
);
|
|
}
|