-
-
Notifications
You must be signed in to change notification settings - Fork 635
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add enhanced typings * Cleanup * Import JSX, whoops * Refactor Events definition; add support for linkEvent * Remove fixed TODO * Lots of cleanup, also address #1295 * Clean up WrapperComponent #1287 (comment) * Remove global.d.ts
- Loading branch information
Showing
14 changed files
with
3,560 additions
and
74 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// | ||
// Event System | ||
// ---------------------------------------------------------------------- | ||
|
||
import { | ||
NativeAnimationEvent, NativeClipboardEvent, NativeCompositionEvent, NativeDragEvent, NativeFocusEvent, | ||
NativeKeyboardEvent, | ||
NativeMouseEvent, NativeTouchEvent, NativeTransitionEvent, NativeUIEvent, NativeWheelEvent | ||
} from "../../JSX"; | ||
import { LinkedEvent } from "./linkEvent"; | ||
|
||
export interface SemiSyntheticEvent<T> extends Event { | ||
/** | ||
* A reference to the element on which the event listener is registered. | ||
*/ | ||
currentTarget: EventTarget & T; | ||
} | ||
|
||
export type ClipboardEvent<T> = SemiSyntheticEvent<T> & NativeClipboardEvent; | ||
export type CompositionEvent<T> = SemiSyntheticEvent<T> & NativeCompositionEvent; | ||
export type DragEvent<T> = MouseEvent<T> & NativeDragEvent; | ||
export type FocusEvent<T> = SemiSyntheticEvent<T> & NativeFocusEvent; | ||
export type FormEvent<T> = SemiSyntheticEvent<T>; | ||
|
||
export interface InvalidEvent<T> extends SemiSyntheticEvent<T> { | ||
target: EventTarget & T; | ||
} | ||
|
||
export interface ChangeEvent<T> extends SemiSyntheticEvent<T> { | ||
target: EventTarget & T; | ||
} | ||
|
||
export type KeyboardEvent<T> = SemiSyntheticEvent<T> & NativeKeyboardEvent; | ||
export type MouseEvent<T> = SemiSyntheticEvent<T> & NativeMouseEvent; | ||
export type TouchEvent<T> = SemiSyntheticEvent<T> & NativeTouchEvent; | ||
export type UIEvent<T> = SemiSyntheticEvent<T> & NativeUIEvent; | ||
export type WheelEvent<T> = MouseEvent<T> & NativeWheelEvent; | ||
export type AnimationEvent<T> = SemiSyntheticEvent<T> & NativeAnimationEvent; | ||
export type TransitionEvent<T> = SemiSyntheticEvent<T> & NativeTransitionEvent; | ||
|
||
// | ||
// Event Handler Types | ||
// ---------------------------------------------------------------------- | ||
|
||
export type EventHandler<E extends SemiSyntheticEvent<any>> = { bivarianceHack(event: E): void }["bivarianceHack"] | LinkedEvent<any, E>; | ||
|
||
export type InfernoEventHandler<T> = EventHandler<SemiSyntheticEvent<T>>; | ||
|
||
export type ClipboardEventHandler<T> = EventHandler<ClipboardEvent<T>>; | ||
export type CompositionEventHandler<T> = EventHandler<CompositionEvent<T>>; | ||
export type DragEventHandler<T> = EventHandler<DragEvent<T>>; | ||
export type FocusEventHandler<T> = EventHandler<FocusEvent<T>>; | ||
export type FormEventHandler<T> = EventHandler<FormEvent<T>>; | ||
export type ChangeEventHandler<T> = EventHandler<ChangeEvent<T>>; | ||
export type KeyboardEventHandler<T> = EventHandler<KeyboardEvent<T>>; | ||
export type MouseEventHandler<T> = EventHandler<MouseEvent<T>>; | ||
export type TouchEventHandler<T> = EventHandler<TouchEvent<T>>; | ||
export type UIEventHandler<T> = EventHandler<UIEvent<T>>; | ||
export type WheelEventHandler<T> = EventHandler<WheelEvent<T>>; | ||
export type AnimationEventHandler<T> = EventHandler<AnimationEvent<T>>; | ||
export type TransitionEventHandler<T> = EventHandler<TransitionEvent<T>>; |
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
Oops, something went wrong.