balena-cli/lib/utils/lazy.ts
2020-07-09 10:51:10 +01:00

63 lines
1.8 KiB
TypeScript

/*
Copyright 2020 Balena
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// tslint:disable:import-blacklist - the import blacklist is to enforce lazy loading so exempt this file
import type * as BalenaSdk from 'balena-sdk';
import type { Chalk } from 'chalk';
import type * as visuals from 'resin-cli-visuals';
import type * as CliForm from 'resin-cli-form';
import type { stripIndent as StripIndent } from 'common-tags';
// Equivalent of _.once but avoiding the need to import lodash for lazy deps
const once = <T>(fn: () => T) => {
let cached: T;
return (): T => {
if (!cached) {
cached = fn();
}
return cached;
};
};
export const onceAsync = <T>(fn: () => Promise<T>) => {
let cached: T;
return async (): Promise<T> => {
if (!cached) {
cached = await fn();
}
return cached;
};
};
export const getBalenaSdk = once(() =>
(require('balena-sdk') as typeof BalenaSdk).fromSharedOptions(),
);
export const getVisuals = once(
() => require('resin-cli-visuals') as typeof visuals,
);
export const getChalk = once(() => require('chalk') as Chalk);
export const getCliForm = once(
() => require('resin-cli-form') as typeof CliForm,
);
// Directly export stripIndent as we always use it immediately, but importing just `stripIndent` reduces startup time
// tslint:disable-next-line:no-var-requires
export const stripIndent = require('common-tags/lib/stripIndent') as typeof StripIndent;