Skip to content

Commit

Permalink
Fixed linting errors after web-version
Browse files Browse the repository at this point in the history
  • Loading branch information
samueljd committed Oct 3, 2023
1 parent 56fdfa6 commit 2f924cc
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const checkandDownloadObsImages = async () => {
const obsImagePath = `${packageInfo.name}/common/${environment.OBS_IMAGE_DIR}`;
const { data: exist } = await sbStorageList(obsImagePath);
if (!exist) {
await createDirectory({path:obsImagePath});
await createDirectory({ path: obsImagePath });
}
const { data: filesInDir } = await sbStorageDownload(obsImagePath);
console.log({ filesInDir });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,10 @@ const DownloadCreateSBforHelps = async (projectResource, setLoading, update = fa
const { data: folderExist } = await sbStorageList(folder);
console.log({ folderExist });
if (!folderExist) {
await createDirectory({path:folder});
await createDirectory({ path: folder });
}
// writing zip to local
await createDirectory({path:`${folder}/${projectResource?.name}.zip}`,payload: Buffer.from(blob)});
await createDirectory({ path: `${folder}/${projectResource?.name}.zip}`, payload: Buffer.from(blob) });

// extract zip
const { data: filecontent, error: fileContentError } = await sbStorageDownload(`${folder}/${projectResource?.name}.zip}`);
Expand All @@ -170,18 +170,18 @@ const DownloadCreateSBforHelps = async (projectResource, setLoading, update = fa
for (const key of keys) {
const item = result.files[key];
if (item.dir) {
await createDirectory({path:`${folder}/${item.name}`});
await createDirectory({ path: `${folder}/${item.name}` });
} else {
const bufferContent = Buffer.from(await item.async('arraybuffer'));
await createDirectory({path:`${folder}/${item.name}`,payload: bufferContent});
await createDirectory({ path: `${folder}/${item.name}`, payload: bufferContent });
}
}

await fetch(projectResource.metadata_json_url).then((res) => res.json()).then(async (data) => {
data.agOffline = true;
data.meta = projectResource;
data.lastUpdatedAg = moment().format();
await createDirectory({path:`${folder}/${projectResource?.name}/metadata.json`, payload :JSON.stringify(data)});
await createDirectory({ path: `${folder}/${projectResource?.name}/metadata.json`, payload: JSON.stringify(data) });
}).catch((err) => {
console.log('DownloadCreateSBforHelps.js', 'failed to save yml metadata.json : ', err);
});
Expand Down
2 changes: 1 addition & 1 deletion renderer/src/components/Resources/useReadLocalResources.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default async function readLocalResources(username, setSubMenuItems) {
const parseData = [];
const projectsDir = `${newPath}/${email}/resources`;
const userResourceMetaPath = `${newPath}/${email}/resources`;
createDirectory({path:userResourceMetaPath});
createDirectory({ path: userResourceMetaPath });
readResourceMetadata(projectsDir, userResourceMetaPath, setSubMenuItems, parseData);
}
}
2 changes: 1 addition & 1 deletion renderer/src/core/Login/handleJson.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const handleJsonWeb = async (values) => {
});

console.log('handleJson.js', 'Successfully added new user to the existing list in file', { newUser });
await createDirectory({path:`${newpath}/${values.email}/projects`});
await createDirectory({ path: `${newpath}/${values.email}/projects` });

console.log('handleJson.js', 'Successfully created directories for new user');
// Add new user to localForage:
Expand Down
30 changes: 15 additions & 15 deletions renderer/src/core/editor/writeToFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ const writeToFile = async ({
username, projectname, filename, data,
});
if (!IsElectron) {
const filePath = `${newPath}/${username}/projects/${projectname}/${filename}`;
const { data: projectsPath, error } = await sbStorageDownload(filePath);
if (projectsPath) {
// appending to an existing file
console.log('writeToFile.js', 'Appending to the existing file');
sbStorageUpdate({ path: filePath, payload: data });
} else {
// Creating new file if nothing present
console.log('writeToFile.js', 'Creating new file to write');
sbStorageUpload(filePath, data);
}
if (error) {
console.log(error);
}
}
const filePath = `${newPath}/${username}/projects/${projectname}/${filename}`;
const { data: projectsPath, error } = await sbStorageDownload(filePath);
if (projectsPath) {
// appending to an existing file
console.log('writeToFile.js', 'Appending to the existing file');
sbStorageUpdate({ path: filePath, payload: data });
} else {
// Creating new file if nothing present
console.log('writeToFile.js', 'Creating new file to write');
sbStorageUpload(filePath, data);
}
if (error) {
console.log(error);
}
}
};

export default writeToFile;
2 changes: 1 addition & 1 deletion renderer/src/core/projects/saveProjetcsMeta.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export const saveSupabaseProjectsMeta = async (projectMetaObj) => {
const userProfile = await localforage.getItem('userProfile');
const currentUser = userProfile.user.email;
const status = [];
await createDirectory({path:`${newPath}/${currentUser}/projects`});
await createDirectory({ path: `${newPath}/${currentUser}/projects` });
const projectDir = `${newPath}/${currentUser}/projects}`;
let projectNameExists = false;
let checkCanon = false;
Expand Down

0 comments on commit 2f924cc

Please sign in to comment.