refactor: some util by ts

pull/2992/head
tangjinzhou 2020-10-13 22:26:56 +08:00
parent ac863a6a11
commit 93b64061db
14 changed files with 141 additions and 134 deletions

View File

@ -425,13 +425,13 @@ const KeyCode = {
* WIN_IME * WIN_IME
*/ */
WIN_IME: 229, WIN_IME: 229,
};
/* // ======================== Function ========================
whether text and modified key is entered at the same time. /**
* whether text and modified key is entered at the same time.
*/ */
KeyCode.isTextModifyingKeyEvent = function isTextModifyingKeyEvent(e) { isTextModifyingKeyEvent: function isTextModifyingKeyEvent(e: KeyboardEvent) {
const keyCode = e.keyCode; const { keyCode } = e;
if ( if (
(e.altKey && !e.ctrlKey) || (e.altKey && !e.ctrlKey) ||
e.metaKey || e.metaKey ||
@ -471,12 +471,12 @@ KeyCode.isTextModifyingKeyEvent = function isTextModifyingKeyEvent(e) {
default: default:
return true; return true;
} }
}; },
/* /**
whether character is entered. * whether character is entered.
*/ */
KeyCode.isCharacterKey = function isCharacterKey(keyCode) { isCharacterKey: function isCharacterKey(keyCode: number) {
if (keyCode >= KeyCode.ZERO && keyCode <= KeyCode.NINE) { if (keyCode >= KeyCode.ZERO && keyCode <= KeyCode.NINE) {
return true; return true;
} }
@ -490,7 +490,7 @@ KeyCode.isCharacterKey = function isCharacterKey(keyCode) {
} }
// Safari sends zero key code for non-latin characters. // Safari sends zero key code for non-latin characters.
if (window.navigation.userAgent.indexOf('WebKit') !== -1 && keyCode === 0) { if (window.navigator.userAgent.indexOf('WebKit') !== -1 && keyCode === 0) {
return true; return true;
} }
@ -516,6 +516,7 @@ KeyCode.isCharacterKey = function isCharacterKey(keyCode) {
default: default:
return false; return false;
} }
},
}; };
export default KeyCode; export default KeyCode;

View File

@ -1,10 +0,0 @@
export default {
methods: {
setState(state, callback) {
Object.assign(this.$data, state);
this.$nextTick(() => {
callback && callback();
});
},
},
};

View File

@ -1,8 +1,8 @@
import { isArray, isString, isObject } from './util'; import { isArray, isString, isObject } from './util';
function classNames() { function classNames(...args: any[]) {
let classes = []; const classes = [];
for (let i = 0; i < arguments.length; i++) { for (let i = 0; i < args.length; i++) {
const value = arguments[i]; const value = args[i];
if (!value) continue; if (!value) continue;
if (isString(value)) { if (isString(value)) {
classes.push(value); classes.push(value);

View File

@ -1,4 +1,4 @@
export function easeInOutCubic(t, b, c, d) { export function easeInOutCubic(t: number, b: number, c: number, d: number) {
const cc = c - b; const cc = c - b;
t /= d / 2; t /= d / 2;
if (t < 1) { if (t < 1) {

View File

@ -1,14 +1,10 @@
/* eslint-disable no-undef */ /* eslint-disable no-undef */
// Browser environment sniffing // Browser environment sniffing
export const inBrowser = typeof window !== 'undefined'; export const inBrowser = typeof window !== 'undefined';
export const inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;
export const weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();
export const UA = inBrowser && window.navigator.userAgent.toLowerCase(); export const UA = inBrowser && window.navigator.userAgent.toLowerCase();
export const isIE = UA && /msie|trident/.test(UA); export const isIE = UA && /msie|trident/.test(UA);
export const isIE9 = UA && UA.indexOf('msie 9.0') > 0; export const isIE9 = UA && UA.indexOf('msie 9.0') > 0;
export const isEdge = UA && UA.indexOf('edge/') > 0; export const isEdge = UA && UA.indexOf('edge/') > 0;
export const isAndroid = (UA && UA.indexOf('android') > 0) || weexPlatform === 'android';
export const isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || weexPlatform === 'ios';
export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge; export const isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
export const isPhantomJS = UA && /phantomjs/.test(UA); export const isPhantomJS = UA && /phantomjs/.test(UA);
export const isFF = UA && UA.match(/firefox\/(\d+)/); export const isFF = UA && UA.match(/firefox\/(\d+)/);

View File

@ -1,4 +1,5 @@
const isNumeric = value => { const isNumeric = (value: any): boolean => {
return !isNaN(parseFloat(value)) && isFinite(value); return !isNaN(parseFloat(value)) && isFinite(value);
}; };
export default isNumeric; export default isNumeric;

View File

@ -1,4 +1,4 @@
const isValid = value => { const isValid = (value: any): boolean => {
return value !== undefined && value !== null && value !== ''; return value !== undefined && value !== null && value !== '';
}; };
export default isValid; export default isValid;

View File

@ -25,16 +25,22 @@ const propList = `${attributes} ${eventsName}`.split(/[\s\n]+/);
const ariaPrefix = 'aria-'; const ariaPrefix = 'aria-';
const dataPrefix = 'data-'; const dataPrefix = 'data-';
function match(key, prefix) { function match(key: string, prefix: string) {
return key.indexOf(prefix) === 0; return key.indexOf(prefix) === 0;
} }
export interface PickConfig {
aria?: boolean;
data?: boolean;
attr?: boolean;
}
/** /**
* Picker props from exist props with filter * Picker props from exist props with filter
* @param props Passed props * @param props Passed props
* @param ariaOnly boolean | { aria?: boolean; data?: boolean; attr?: boolean; } filter config * @param ariaOnly boolean | { aria?: boolean; data?: boolean; attr?: boolean; } filter config
*/ */
export default function pickAttrs(props, ariaOnly = false) { export default function pickAttrs(props: object, ariaOnly: boolean | PickConfig = false) {
let mergedConfig; let mergedConfig;
if (ariaOnly === false) { if (ariaOnly === false) {
mergedConfig = { mergedConfig = {

View File

@ -1,12 +1,16 @@
import raf from 'raf'; import raf from 'raf';
interface RafMap {
[id: number]: number;
}
let id = 0; let id = 0;
const ids = {}; const ids: RafMap = {};
// Support call raf with delay specified frame // Support call raf with delay specified frame
export default function wrapperRaf(callback, delayFrames = 1) { export default function wrapperRaf(callback: () => void, delayFrames = 1): number {
const myId = id++; const myId: number = id++;
let restFrames = delayFrames; let restFrames: number = delayFrames;
function internalCallback() { function internalCallback() {
restFrames -= 1; restFrames -= 1;
@ -24,9 +28,11 @@ export default function wrapperRaf(callback, delayFrames = 1) {
return myId; return myId;
} }
wrapperRaf.cancel = function(pid) { wrapperRaf.cancel = function cancel(pid?: number) {
if (pid === undefined) return; if (pid === undefined) return;
raf.cancel(ids[pid]); raf.cancel(ids[pid]);
delete ids[pid]; delete ids[pid];
}; };
wrapperRaf.ids = ids; // export this for test usage wrapperRaf.ids = ids; // export this for test usage

View File

@ -2,16 +2,16 @@ import raf from 'raf';
import getScroll from './getScroll'; import getScroll from './getScroll';
import { easeInOutCubic } from './easings'; import { easeInOutCubic } from './easings';
// interface ScrollToOptions { interface ScrollToOptions {
// /** Scroll container, default as window */ /** Scroll container, default as window */
// getContainer?: () => HTMLElement | Window; getContainer?: () => HTMLElement | Window;
// /** Scroll end callback */ /** Scroll end callback */
// callback?: () => any; callback?: () => any;
// /** Animation duration, default as 450 */ /** Animation duration, default as 450 */
// duration?: number; duration?: number;
// } }
export default function scrollTo(y, options = {}) { export default function scrollTo(y: number, options: ScrollToOptions = {}) {
const { getContainer = () => window, callback, duration = 450 } = options; const { getContainer = () => window, callback, duration = 450 } = options;
const container = getContainer(); const container = getContainer();
@ -25,7 +25,7 @@ export default function scrollTo(y, options = {}) {
if (container === window) { if (container === window) {
window.scrollTo(window.pageXOffset, nextScrollTop); window.scrollTo(window.pageXOffset, nextScrollTop);
} else { } else {
container.scrollTop = nextScrollTop; (container as HTMLElement).scrollTop = nextScrollTop;
} }
if (time < duration) { if (time < duration) {
raf(frameFunc); raf(frameFunc);

View File

@ -1,12 +1,17 @@
import { CSSProperties } from 'vue';
/** /**
* Easy to set element style, return previous style * Easy to set element style, return previous style
* IE browser compatible(IE browser doesn't merge overflow style, need to set it separately) * IE browser compatible(IE browser doesn't merge overflow style, need to set it separately)
* https://github.com/ant-design/ant-design/issues/19393 * https://github.com/ant-design/ant-design/issues/19393
* *
*/ */
function setStyle(style, options = {}) { export interface SetStyleOptions {
element?: HTMLElement;
}
function setStyle(style: CSSProperties, options: SetStyleOptions = {}): CSSProperties {
const { element = document.body } = options; const { element = document.body } = options;
const oldStyle = {}; const oldStyle: CSSProperties = {};
const styleKeys = Object.keys(style); const styleKeys = Object.keys(style);

View File

@ -1,4 +1,4 @@
const isStyleSupport = styleName => { const isStyleSupport = (styleName: string | Array<string>): boolean => {
if (typeof window !== 'undefined' && window.document && window.document.documentElement) { if (typeof window !== 'undefined' && window.document && window.document.documentElement) {
const styleNameList = Array.isArray(styleName) ? styleName : [styleName]; const styleNameList = Array.isArray(styleName) ? styleName : [styleName];
const { documentElement } = window.document; const { documentElement } = window.document;

View File

@ -1,31 +1,33 @@
import raf from 'raf'; import raf from 'raf';
export default function throttleByAnimationFrame(fn) { export default function throttleByAnimationFrame(fn: (...args: any[]) => void) {
let requestId; let requestId: number | null;
const later = args => () => { const later = (args: any[]) => () => {
requestId = null; requestId = null;
fn(...args); fn(...args);
}; };
const throttled = (...args) => { const throttled = (...args: any[]) => {
if (requestId == null) { if (requestId == null) {
requestId = raf(later(args)); requestId = raf(later(args));
} }
}; };
throttled.cancel = () => raf.cancel(requestId); (throttled as any).cancel = () => raf.cancel(requestId!);
return throttled; return throttled;
} }
export function throttleByAnimationFrameDecorator() { export function throttleByAnimationFrameDecorator() {
return function(target, key, descriptor) { // eslint-disable-next-line func-names
return function(target: any, key: string, descriptor: any) {
const fn = descriptor.value; const fn = descriptor.value;
let definingProperty = false; let definingProperty = false;
return { return {
configurable: true, configurable: true,
get() { get() {
// eslint-disable-next-line no-prototype-builtins
if (definingProperty || this === target.prototype || this.hasOwnProperty(key)) { if (definingProperty || this === target.prototype || this.hasOwnProperty(key)) {
return fn; return fn;
} }

View File

@ -1,4 +1,4 @@
export default function triggerEvent(el, type) { export default function triggerEvent(el: Element, type: string) {
if ('createEvent' in document) { if ('createEvent' in document) {
// modern browsers, IE9+ // modern browsers, IE9+
const e = document.createEvent('HTMLEvents'); const e = document.createEvent('HTMLEvents');