mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
190 lines
6.4 KiB
TypeScript
190 lines
6.4 KiB
TypeScript
// Type definitions for mobservable v0.6.10
|
|
// Project: https://mweststrate.github.io/mobservable
|
|
// Definitions by: Michel Weststrate <https://github.com/mweststrate/>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
interface _IMobservableStatic {
|
|
/**
|
|
* Turns an object, array or function into a reactive structure.
|
|
* @param value the value which should become observable.
|
|
*/
|
|
makeReactive: IMakeReactive;
|
|
|
|
/**
|
|
* Extends an object with reactive capabilities.
|
|
* @param target the object to which reactive properties should be added
|
|
* @param properties the properties that should be added and made reactive
|
|
* @returns targer
|
|
*/
|
|
extendReactive(target: Object, properties: Object):Object;
|
|
|
|
/**
|
|
* Returns true if the provided value is reactive.
|
|
* @param value object, function or array
|
|
* @param propertyName if propertyName is specified, checkes whether value.propertyName is reactive.
|
|
*/
|
|
isReactive(value: any, propertyName?:string): boolean;
|
|
|
|
/**
|
|
* Can be used in combination with makeReactive / extendReactive.
|
|
* Enforces that a reference to 'value' is stored as property,
|
|
* but that 'value' itself is not turned into something reactive.
|
|
* Future assignments to the same property will inherit this behavior.
|
|
* @param value initial value of the reactive property that is being defined.
|
|
*/
|
|
asReference<T>(value: any):{value:T};
|
|
|
|
/**
|
|
* ES6 / Typescript decorator which can to make class properties and getter functions reactive.
|
|
*/
|
|
observable(target: Object, key: string):any; // decorator / annotation
|
|
|
|
/**
|
|
* Creates a reactive view and keeps it alive, so that the view is always
|
|
* updated if one of the dependencies changes, even when the view is not further used by something else.
|
|
* @param func The reactive view
|
|
* @param scope (optional)
|
|
* @returns disposer function, which can be used to stop the view from being updated in the future.
|
|
*/
|
|
observe(func: Mobservable.Lambda, scope?: any): Mobservable.Lambda;
|
|
|
|
/**
|
|
* Deprecated, use mobservable.observe instead.
|
|
*/
|
|
sideEffect(func: Mobservable.Lambda, scope?: any): Mobservable.Lambda;
|
|
|
|
/**
|
|
* Similar to 'observer', observes the given predicate until it returns true.
|
|
* Once it returns true, the 'effect' function is invoked an the observation is cancelled.
|
|
* @param predicate
|
|
* @param effect
|
|
* @param scope (optional)
|
|
* @returns disposer function to prematurely end the observer.
|
|
*/
|
|
observeUntil(predicate: ()=>boolean, effect: Mobservable.Lambda, scope?: any): Mobservable.Lambda;
|
|
|
|
/**
|
|
* During a transaction no views are updated until the end of the transaction.
|
|
* The transaction will be run synchronously nonetheless.
|
|
* @param action a function that updates some reactive state
|
|
* @returns any value that was returned by the 'action' parameter.
|
|
*/
|
|
transaction<T>(action: ()=>T): T;
|
|
|
|
/**
|
|
* Converts a reactive structure into a non-reactive structure.
|
|
* Basically a deep-clone.
|
|
*/
|
|
toJSON<T>(value: T): T;
|
|
|
|
/**
|
|
* Sets the reporting level Defaults to 1. Use 0 for production or 2 for increased verbosity.
|
|
*/
|
|
logLevel: number; // 0 = production, 1 = development, 2 = debugging
|
|
|
|
extras: {
|
|
getDependencyTree(thing:any, property?:string): Mobservable.IDependencyTree;
|
|
|
|
getObserverTree(thing:any, property?:string): Mobservable.IObserverTree;
|
|
|
|
trackTransitions(extensive?:boolean, onReport?:(lines:Mobservable.ITransitionEvent) => void) : Mobservable.Lambda;
|
|
}
|
|
}
|
|
|
|
interface IMakeReactive {
|
|
<T>(value: T[], opts?: Mobservable.IMakeReactiveOptions): Mobservable.IObservableArray<T>;
|
|
<T>(value: ()=>T, opts?: Mobservable.IMakeReactiveOptions): Mobservable.IObservableValue<T>;
|
|
<T extends string|number|boolean|Date|RegExp|Function|void>(value: T, opts?: Mobservable.IMakeReactiveOptions): Mobservable.IObservableValue<T>;
|
|
<T extends Object>(value: Object, opts?: Mobservable.IMakeReactiveOptions): T;
|
|
}
|
|
|
|
interface IMobservableStatic extends _IMobservableStatic, IMakeReactive {
|
|
}
|
|
|
|
declare namespace Mobservable {
|
|
interface IMakeReactiveOptions {
|
|
as?: string /* "auto" | "reference" | TODO: see #8 "structure" */
|
|
scope?: Object,
|
|
context?: Object,
|
|
recurse?: boolean;
|
|
name?: string;
|
|
// protected: boolean TODO: see #9
|
|
}
|
|
|
|
export interface IContextInfoStruct {
|
|
object: Object;
|
|
name: string;
|
|
}
|
|
|
|
export type IContextInfo = IContextInfoStruct | string;
|
|
|
|
interface Lambda {
|
|
(): void;
|
|
name?: string;
|
|
}
|
|
|
|
interface IObservable {
|
|
observe(callback: (...args: any[])=>void, fireImmediately?: boolean): Lambda;
|
|
}
|
|
|
|
interface IObservableValue<T> extends IObservable {
|
|
(): T;
|
|
(value: T):void;
|
|
observe(callback: (newValue: T, oldValue: T)=>void, fireImmediately?: boolean): Lambda;
|
|
}
|
|
|
|
interface IObservableArray<T> extends IObservable, Array<T> {
|
|
spliceWithArray(index: number, deleteCount?: number, newItems?: T[]): T[];
|
|
observe(listener: (changeData: IArrayChange<T>|IArraySplice<T>)=>void, fireImmediately?: boolean): Lambda;
|
|
clear(): T[];
|
|
replace(newItems: T[]): T[];
|
|
find(predicate: (item: T,index: number,array: IObservableArray<T>)=>boolean,thisArg?: any,fromIndex?: number): T;
|
|
remove(value: T): boolean;
|
|
}
|
|
|
|
interface IArrayChange<T> {
|
|
type: string; // Always: 'update'
|
|
object: IObservableArray<T>;
|
|
index: number;
|
|
oldValue: T;
|
|
}
|
|
|
|
interface IArraySplice<T> {
|
|
type: string; // Always: 'splice'
|
|
object: IObservableArray<T>;
|
|
index: number;
|
|
removed: T[];
|
|
addedCount: number;
|
|
}
|
|
|
|
interface IDependencyTree {
|
|
id: number;
|
|
name: string;
|
|
context: any;
|
|
dependencies?: IDependencyTree[];
|
|
}
|
|
|
|
interface IObserverTree {
|
|
id: number;
|
|
name: string;
|
|
context: any;
|
|
observers?: IObserverTree[];
|
|
listeners?: number; // amount of functions manually attached using an .observe method
|
|
}
|
|
|
|
interface ITransitionEvent {
|
|
id: number;
|
|
name: string;
|
|
context: Object;
|
|
state: string;
|
|
changed: boolean;
|
|
newValue: string;
|
|
}
|
|
}
|
|
|
|
declare module "mobservable" {
|
|
var m : IMobservableStatic;
|
|
export = m;
|
|
}
|