mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 18:50:07 +00:00
35 lines
873 B
TypeScript
35 lines
873 B
TypeScript
import { app } from 'electron';
|
|
import { existsSync, mkdirSync, writeFileSync } from 'fs';
|
|
|
|
export const BACKUP_DIR = `${app.getPath('userData')}/backups`;
|
|
console.log('Saving backups to', BACKUP_DIR);
|
|
|
|
export function backupData(ev, data) {
|
|
if (!existsSync(BACKUP_DIR)) {
|
|
mkdirSync(BACKUP_DIR);
|
|
}
|
|
const filePath = `${BACKUP_DIR}/${getDateStr()}.json`;
|
|
|
|
try {
|
|
const backup = JSON.stringify(data);
|
|
writeFileSync(filePath, backup);
|
|
} catch (e) {
|
|
console.log('Error while backing up');
|
|
console.error(e);
|
|
}
|
|
}
|
|
|
|
function getDateStr(): string {
|
|
const today = new Date();
|
|
const dd = today.getDate();
|
|
const mm = today.getMonth() + 1; // January is 0!
|
|
const yyyy = today.getFullYear();
|
|
|
|
const dds = (dd < 10)
|
|
? '0' + dd
|
|
: dd.toString();
|
|
const mms = (mm < 10)
|
|
? '0' + mm
|
|
: mm.toString();
|
|
return `${yyyy}-${mms}-${dds}`;
|
|
}
|