Created
January 6, 2018 16:34
-
-
Save grind086/d6c5ad708bb0ae0f3dfd51bfe4c08615 to your computer and use it in GitHub Desktop.
Type-safe singleton superclass
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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