123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import {
- ADD_FILE,
- REMOVE_FILE,
- UPDATE_FILE_UPLOAD_PROGRESS,
- UPLOAD_FILES,
- DOWNLOAD_FILE
- } from './actionTypes';
- import { IFileMetadata } from './types';
-
- /**
- * Upload files.
- *
- * @param {File[]} files - The files to upload.
- * @returns {Object}
- */
- export function uploadFiles(files: File[]) {
- return {
- type: UPLOAD_FILES,
- files
- };
- }
-
- /**
- * Update a file's upload progress.
- *
- * @param {string} fileId - The ID of the file to update.
- * @param {number} progress - The new progress value.
- * @returns {Object}
- */
- export function updateFileProgress(fileId: string, progress: number) {
- return {
- type: UPDATE_FILE_UPLOAD_PROGRESS,
- fileId,
- progress
- };
- }
-
- /**
- * Add a file.
- *
- * @param {IFileMetadata} file - The file to add to the state.
- * @returns {Object}
- */
- export function addFile(file: IFileMetadata) {
- return {
- type: ADD_FILE,
- file
- };
- }
-
- /**
- * Remove a file.
- *
- * @param {string} fileId - The ID of the file to remove.
- * @returns {Object}
- */
- export function removeFile(fileId: string) {
- return {
- type: REMOVE_FILE,
- fileId
- };
- }
-
- /**
- * Download a file.
- *
- * @param {string} fileId - The ID of the file to download.
- * @returns {Object}
- */
- export function downloadFile(fileId: string) {
- return {
- type: DOWNLOAD_FILE,
- fileId
- };
- }
|