mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
/**
|
|
* Typescript definition tests for d3/d3-dispatch module
|
|
*
|
|
* Note: These tests are intended to test the definitions only
|
|
* in the sense of typing and call signature consistency. They
|
|
* are not intended as functional tests.
|
|
*/
|
|
|
|
import * as d3Dispatch from 'd3-dispatch';
|
|
|
|
// Preparation --------------------------------------------
|
|
|
|
interface Datum {
|
|
a: number;
|
|
b: string;
|
|
}
|
|
|
|
let dispatch: d3Dispatch.Dispatch<HTMLElement>;
|
|
let callback: (this: HTMLElement, ...args: any[]) => void;
|
|
let callbackOrUndef: ((this: HTMLElement, ...args: any[]) => void) | undefined;
|
|
let undef: undefined;
|
|
|
|
// Signature Tests ----------------------------------------
|
|
|
|
// create new dispatch object
|
|
dispatch = d3Dispatch.dispatch('foo', 'bar');
|
|
|
|
function cbFn(this: HTMLElement, d: Datum, i: number) {
|
|
console.log(this.baseURI ? this.baseURI : 'nada');
|
|
console.log(d ? d.a : 'nada');
|
|
}
|
|
|
|
function cbFn2(this: SVGElement, d: Datum, i: number) {
|
|
console.log(this.baseURI ? this.baseURI : 'nada');
|
|
console.log(d ? d.a : 'nada');
|
|
}
|
|
|
|
dispatch.on('foo', cbFn);
|
|
// $ExpectError
|
|
dispatch.on('foo', cbFn2); // test fails as 'this' context type is mismatched between dispatch and callback function
|
|
|
|
callback = dispatch.on('bar')!;
|
|
callbackOrUndef = dispatch.on('bar');
|
|
callbackOrUndef = dispatch.on('unknown');
|
|
undef = dispatch.on('unknown') as undefined;
|
|
|
|
dispatch.on('bar', dispatch.on('bar')!);
|
|
|
|
dispatch.call('foo');
|
|
dispatch.call('foo', document.body);
|
|
dispatch.call('foo', document.body, { a: 3, b: 'test' }, 1);
|
|
|
|
dispatch.apply('bar');
|
|
dispatch.apply('bar', document.body);
|
|
dispatch.apply('bar', document.body, [{ a: 3, b: 'test' }, 1]);
|
|
|
|
dispatch.on('bar', null);
|
|
|
|
// Copy dispatch -----------------------------------------------
|
|
const copy: d3Dispatch.Dispatch<HTMLElement> = dispatch.copy();
|
|
// $ExpectError
|
|
const copy2: d3Dispatch.Dispatch<SVGElement> = dispatch.copy(); // test fails type mismatch of underlying event target
|