mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-20 00:08:02 +01:00
chore: remove compiler warnings from create-config (#6459)
## About the changes Some changes to fix compiler errors in create-config
This commit is contained in:
parent
ec6c439c09
commit
2cd80d31f8
@ -53,6 +53,8 @@ import { validateOrigins } from './util/validateOrigin';
|
||||
|
||||
const safeToUpper = (s?: string) => (s ? s.toUpperCase() : s);
|
||||
|
||||
type WithOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
||||
|
||||
export function authTypeFromString(
|
||||
s?: string,
|
||||
defaultType: IAuthType = IAuthType.OPEN_SOURCE,
|
||||
@ -179,7 +181,8 @@ const dateHandlingCallback = (connection, callback) => {
|
||||
});
|
||||
};
|
||||
|
||||
const defaultDbOptions: IDBOption = {
|
||||
const defaultDbOptions: WithOptional<IDBOption, 'user' | 'password' | 'host'> =
|
||||
{
|
||||
user: process.env.DATABASE_USERNAME,
|
||||
password: process.env.DATABASE_PASSWORD,
|
||||
host: process.env.DATABASE_HOST,
|
||||
@ -199,7 +202,10 @@ const defaultDbOptions: IDBOption = {
|
||||
process.env.DATABASE_POOL_IDLE_TIMEOUT_MS,
|
||||
secondsToMilliseconds(30),
|
||||
),
|
||||
...(parseEnvVarBoolean(process.env.ALLOW_NON_STANDARD_DB_DATES, false)
|
||||
...(parseEnvVarBoolean(
|
||||
process.env.ALLOW_NON_STANDARD_DB_DATES,
|
||||
false,
|
||||
)
|
||||
? { afterCreate: dateHandlingCallback }
|
||||
: {}),
|
||||
propagateCreateError: false,
|
||||
@ -271,7 +277,7 @@ const defaultAuthentication: IAuthOption = {
|
||||
initApiTokens: [],
|
||||
};
|
||||
|
||||
const defaultImport: IImportOption = {
|
||||
const defaultImport: WithOptional<IImportOption, 'file'> = {
|
||||
file: process.env.IMPORT_FILE,
|
||||
dropBeforeImport: parseEnvVarBoolean(
|
||||
process.env.IMPORT_DROP_BEFORE_IMPORT,
|
||||
@ -291,7 +297,6 @@ const defaultEmail: IEmailOption = {
|
||||
|
||||
const dbPort = (dbConfig: Partial<IDBOption>): Partial<IDBOption> => {
|
||||
if (typeof dbConfig.port === 'string') {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
dbConfig.port = Number.parseInt(dbConfig.port, 10);
|
||||
}
|
||||
return dbConfig;
|
||||
@ -300,7 +305,6 @@ const dbPort = (dbConfig: Partial<IDBOption>): Partial<IDBOption> => {
|
||||
const removeUndefinedKeys = (o: object): object =>
|
||||
Object.keys(o).reduce((a, key) => {
|
||||
if (o[key] !== undefined) {
|
||||
// eslint-disable-next-line no-param-reassign
|
||||
a[key] = o[key];
|
||||
return a;
|
||||
}
|
||||
@ -316,7 +320,6 @@ const formatServerOptions = (
|
||||
};
|
||||
}
|
||||
|
||||
/* eslint-disable-next-line */
|
||||
return {
|
||||
...serverOptions,
|
||||
baseUriPath: formatBaseUri(
|
||||
@ -467,7 +470,7 @@ export function createConfig(options: IUnleashOptions): IUnleashConfig {
|
||||
]);
|
||||
|
||||
const logLevel =
|
||||
options.logLevel || LogLevel[process.env.LOG_LEVEL] || LogLevel.error;
|
||||
options.logLevel || LogLevel[process.env.LOG_LEVEL ?? LogLevel.error];
|
||||
const getLogger = options.getLogger || getDefaultLogProvider(logLevel);
|
||||
validateLogProvider(getLogger);
|
||||
|
||||
@ -488,9 +491,9 @@ export function createConfig(options: IUnleashOptions): IUnleashConfig {
|
||||
|
||||
const authentication: IAuthOption = mergeAll([
|
||||
defaultAuthentication,
|
||||
options.authentication
|
||||
(options.authentication
|
||||
? removeUndefinedKeys(options.authentication)
|
||||
: options.authentication,
|
||||
: options.authentication) || {},
|
||||
{ initApiTokens: initApiTokens },
|
||||
]);
|
||||
|
||||
@ -512,7 +515,7 @@ export function createConfig(options: IUnleashOptions): IUnleashConfig {
|
||||
if (server.pipe) {
|
||||
listen = { path: server.pipe };
|
||||
} else {
|
||||
listen = { host: server.host || undefined, port: server.port };
|
||||
listen = { host: server.host || undefined, port: server.port ?? 4242 };
|
||||
}
|
||||
|
||||
const frontendApi = options.frontendApi || {
|
||||
|
Loading…
Reference in New Issue
Block a user