Date formatting per workspace member settings (#6408)

Implement date formatting per workspace member settings

We'll need another round to maybe initialize all workspaces on the
default settings.

For now the default behavior is to take system settings if nothing is
found in DB.

---------

Co-authored-by: Weiko <corentin@twenty.com>
This commit is contained in:
Lucas Bordeau
2024-07-30 14:52:10 +02:00
committed by GitHub
parent 45ebb0b824
commit ccf4d1eeec
64 changed files with 1176 additions and 165 deletions

View File

@ -2,6 +2,7 @@ import { Injectable } from '@nestjs/common';
import { existsSync } from 'fs';
import fs from 'fs/promises';
import { join as joinPath } from 'path';
import { kebabCase } from 'src/utils/kebab-case';
@ -23,7 +24,7 @@ export class CommandLogger {
fileName: string,
data: unknown,
append = false,
): Promise<void> {
): Promise<string> {
const path = `./logs/${kebabCase(this.className)}`;
if (existsSync(path) === false) {
@ -31,17 +32,20 @@ export class CommandLogger {
}
try {
await fs.writeFile(
`${path}/${fileName}.json`,
JSON.stringify(data, null, 2),
{
flag: append ? 'a' : 'w',
},
);
const logFilePath = `${path}/${fileName}.json`;
await fs.writeFile(logFilePath, JSON.stringify(data, null, 2), {
flag: append ? 'a' : 'w',
});
const absoluteLogFilePath = joinPath(process.cwd(), logFilePath);
return absoluteLogFilePath;
} catch (err) {
console.error(
`Error writing to file ${path}/${fileName}.json: ${err?.message}`,
);
throw err;
}
}