38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import React from 'react';
|
|
import tw, { styled } from 'twin.macro';
|
|
import Input from '@/components/elements/Input';
|
|
import { ServerContext } from '@/state/server';
|
|
|
|
export const FileActionCheckbox = styled(Input)`
|
|
${tw`w-4 h-4 transition-all duration-75 border rounded-sm cursor-pointer border-neutral-500 hover:border-neutral-300 text-primary-400`};
|
|
|
|
&& {
|
|
${tw`border-neutral-500 bg-transparent`};
|
|
|
|
&:not(:checked) {
|
|
${tw`hover:border-neutral-300`};
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default ({ name }: { name: string }) => {
|
|
const isChecked = ServerContext.useStoreState(state => state.files.selectedFiles.indexOf(name) >= 0);
|
|
const appendSelectedFile = ServerContext.useStoreActions(actions => actions.files.appendSelectedFile);
|
|
const removeSelectedFile = ServerContext.useStoreActions(actions => actions.files.removeSelectedFile);
|
|
|
|
return (
|
|
<FileActionCheckbox
|
|
name={'selectedFiles'}
|
|
value={name}
|
|
checked={isChecked}
|
|
type={'checkbox'}
|
|
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
|
|
if (e.currentTarget.checked) {
|
|
appendSelectedFile(name);
|
|
} else {
|
|
removeSelectedFile(name);
|
|
}
|
|
}}
|
|
/>
|
|
);
|
|
};
|