2024-12-04 14:24:53 +05:30
|
|
|
import { API_BASE_URL } from "@plane/constants";
|
2024-12-04 17:22:41 +05:30
|
|
|
import { TFileMetaDataLite, TFileSignedURLResponse } from "@plane/types";
|
2024-10-11 20:13:38 +05:30
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description from the provided signed URL response, generate a payload to be used to upload the file
|
|
|
|
|
* @param {TFileSignedURLResponse} signedURLResponse
|
|
|
|
|
* @param {File} file
|
|
|
|
|
* @returns {FormData} file upload request payload
|
|
|
|
|
*/
|
|
|
|
|
export const generateFileUploadPayload = (signedURLResponse: TFileSignedURLResponse, file: File): FormData => {
|
|
|
|
|
const formData = new FormData();
|
|
|
|
|
Object.entries(signedURLResponse.upload_data.fields).forEach(([key, value]) => formData.append(key, value));
|
|
|
|
|
formData.append("file", file);
|
|
|
|
|
return formData;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description combine the file path with the base URL
|
|
|
|
|
* @param {string} path
|
|
|
|
|
* @returns {string} final URL with the base URL
|
|
|
|
|
*/
|
|
|
|
|
export const getFileURL = (path: string): string | undefined => {
|
|
|
|
|
if (!path) return undefined;
|
2024-10-12 23:39:50 +05:30
|
|
|
const isValidURL = path.startsWith("http");
|
2024-10-11 20:13:38 +05:30
|
|
|
if (isValidURL) return path;
|
|
|
|
|
return `${API_BASE_URL}${path}`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description returns the necessary file meta data to upload a file
|
|
|
|
|
* @param {File} file
|
|
|
|
|
* @returns {TFileMetaDataLite} payload with file info
|
|
|
|
|
*/
|
|
|
|
|
export const getFileMetaDataForUpload = (file: File): TFileMetaDataLite => ({
|
|
|
|
|
name: file.name,
|
|
|
|
|
size: file.size,
|
|
|
|
|
type: file.type,
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @description this function returns the assetId from the asset source
|
|
|
|
|
* @param {string} src
|
|
|
|
|
* @returns {string} assetId
|
|
|
|
|
*/
|
|
|
|
|
export const getAssetIdFromUrl = (src: string): string => {
|
|
|
|
|
const sourcePaths = src.split("/");
|
|
|
|
|
const assetUrl = sourcePaths[sourcePaths.length - 1];
|
2025-08-19 07:36:42 -07:00
|
|
|
return assetUrl ?? "";
|
2024-10-11 20:13:38 +05:30
|
|
|
};
|