Skip to content

Instantly share code, notes, and snippets.

@grind086
Created January 6, 2018 16:34
Show Gist options
  • Save grind086/d6c5ad708bb0ae0f3dfd51bfe4c08615 to your computer and use it in GitHub Desktop.
Save grind086/d6c5ad708bb0ae0f3dfd51bfe4c08615 to your computer and use it in GitHub Desktop.
Type-safe singleton superclass
import { Singleton } from './Singleton';
class MySingleton extends Singleton {
public sayHello() {
console.log('Hello, world!');
}
}
console.log(MySingleton.getInstance() === MySingleton.getInstance());
// > true
MySingleton.getInstance().sayHello();
// > Hello, world!
/**
* A superclass for singleton classes. If constructor arguments are needed a single call to `new ClassName(...args)` is
* possible, but only before using `ClassName.getInstance()`. Attempting to create additional instances will throw an
* error.
*/
export abstract class Singleton {
/**
* Retrieves the singleton instance.
*/
public static getInstance<T extends Singleton>(this: { [key: string]: any; new (): T }): T {
return this._instance || new this();
}
private static _instance: Singleton;
constructor() {
const ctor = <typeof Singleton>this.constructor;
if (ctor._instance) {
const name = ctor.name;
throw new Error(`${name} is a singleton class. Use ${name}.getInstance() instead.`);
}
ctor._instance = this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment