-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
86 additions
and
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export const TOUCH_START = 'touchstart'; | ||
export const TOUCH_MOVE = 'touchmove'; | ||
export const TOUCH_END = 'touchend'; | ||
export const TOUCH_CANCEL = 'touchcancel'; | ||
|
||
export const MOUSE_UP = 'mouseup'; | ||
export const MOUSE_MOVE = 'mousemove'; | ||
export const MOUSE_DOWN = 'mousedown'; | ||
|
||
|
||
export const CLIENT_X = 'clientX'; | ||
export const CLIENT_Y = 'clientY'; | ||
|
||
|
||
/** | ||
* 输入阶段 | ||
*/ | ||
export const TYPE_START = 'start'; | ||
export const TYPE_MOVE = 'move'; | ||
export const TYPE_CANCEL = 'cancel'; | ||
export const TYPE_END = 'end'; | ||
|
||
// const ObjectToString = Object.prototype.toString; | ||
export function isFunction(input: any): input is Function { | ||
return '[object Function]' === Object.prototype.toString.call(input); | ||
} |
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 |
---|---|---|
@@ -1,47 +1,13 @@ | ||
# @any-touch/share | ||
一些公用方法和常量. | ||
# @any-touch/shared | ||
在这里可以找到状态马 | ||
|
||
```javascript | ||
// input的类型 | ||
export const TYPE_START = 'start'; | ||
export const TYPE_MOVE = 'move'; | ||
export const TYPE_CANCEL = 'cancel'; | ||
export const TYPE_END = 'end'; | ||
|
||
export const TOUCH = 'touch'; | ||
export const MOUSE = 'mouse'; | ||
|
||
export const TOUCH_START = 'touchstart'; | ||
export const TOUCH_MOVE = 'touchmove'; | ||
export const TOUCH_END = 'touchend'; | ||
export const TOUCH_CANCEL = 'touchcancel'; | ||
|
||
export const MOUSE_UP = 'mouseup'; | ||
export const MOUSE_MOVE = 'mousemove'; | ||
export const MOUSE_DOWN = 'mousedown'; | ||
|
||
// 计算时候取touchs.clientX | clientY | ||
export const CLIENT_X = 'clientX'; | ||
export const CLIENT_Y = 'clientY'; | ||
|
||
export const COMPUTE_INTERVAL = 16; | ||
|
||
// 识别器状态码 | ||
// 注意: 此处的值会直接被事件名所用, 如panstart/panmove等等 | ||
// shared内部代码 | ||
export const STATUS_POSSIBLE = 'possible'; | ||
export const STATUS_START = 'start'; | ||
export const STATUS_MOVE = 'move'; | ||
export const STATUS_END = 'end'; | ||
export const STATUS_CANCELLED = 'cancel'; | ||
export const STATUS_FAILED = 'failed'; | ||
export const STATUS_RECOGNIZED = 'recognized'; | ||
|
||
|
||
// 方向 | ||
export const DIRECTION_LEFT = 'left'; | ||
export const DIRECTION_RIGHT = 'right'; | ||
export const DIRECTION_UP = 'up'; | ||
export const DIRECTION_DOWN = 'down'; | ||
export const NONE = 'none'; | ||
|
||
``` |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
export * from './is'; | ||
export * from './const'; | ||
export * from './types' | ||
export * from './pressMoveFlow' | ||
|
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.