Vue3
的工具函數對比於Vue2
的工具函數變化還是很大的,個人感覺主要還是體現在語法上,已經全面擁抱es6
了;【相關推薦:vuejs影片教學、#web前端開發】
對比於工具類別的功能變化並沒有多少,大多數基本上都是一樣的,只是語法上和實作上有略微的區別;
原始碼位址:
#之前介紹了許多閱讀方式,這次就直接跳過了,直接開始閱讀原始碼;: 產生一個類似
Set的對象,用於判斷是否存在某個值
: 空物件
: 空數組
: 空函數
: 傳回
false的函數
: 判斷是否是
on 開頭的事件
: 判斷
onUpdate開頭的字串
Map
Set
Date
RegExp
Symbol
Promise
Object.prototype.toString
##toTypeString的簡寫
toRawType
isPlainObject
isIntegerKey
#isReservedProp
# isBuiltInDirective
camelize
hyphenate
capitalize
#toHandlerKey
#hasChanged
invokeArrayFns
#def
looseToNumber
toNumber
getGlobalThis
genPropsAccessExp的存取運算式
這其中有大部分和Vue2的閱讀經驗,所以這次快速閱讀;
如果想要詳細的可以看我之前寫的文章:
【原始碼共讀】Vue2原始碼shared 模組中的36個實用工具函數分析
js,所以直接閱讀
ts原始碼;
#正式開始
export function makeMap( str: string, expectsLowerCase?: boolean ): (key: string) => boolean { const map: Record<string, boolean> = Object.create(null) const list: Array<string> = str.split(',') for (let i = 0; i < list.length; i++) { map[list[i]] = true } return expectsLowerCase ? val => !!map[val.toLowerCase()] : val => !!map[val] }
makeMap.ts檔案中,引入進來之後直接使用
export關鍵字匯出,實作方式和
Vue2的實作方式相同;
export const EMPTY_OBJ: { readonly [key: string]: any } = __DEV__ ? Object.freeze({}) : {} export const EMPTY_ARR = __DEV__ ? Object.freeze([]) : []
EMPTY_OBJ
和EMPTY_ARR
的实现方式和Vue2
的emptyObject
相同,都是使用Object.freeze
冻结对象,防止对象被修改;
export const NOOP = () => {}
和Vue2
的noop
实现方式相同,都是一个空函数,移除了入参;
/** * Always return false. */ export const NO = () => false
和Vue2
的no
实现方式相同,都是一个返回false
的函数,移除了入参;
const onRE = /^on[^a-z]/ export const isOn = (key: string) => onRE.test(key)
判断是否是on
开头的事件,并且on
后面的第一个字符不是小写字母;
export const isModelListener = (key: string) => key.startsWith('onUpdate:')
判断是否是onUpdate:
开头的字符串;
参考:startWith
export const extend = Object.assign
直接拥抱es6
的Object.assign
,Vue2
的实现方式是使用for in
循环;
export const remove = <T>(arr: T[], el: T) => { const i = arr.indexOf(el) if (i > -1) { arr.splice(i, 1) } }
对比于Vue2
删除了一些代码,之前的快速删除最后一个元素的判断不见了;
猜测可能是因为有bug
,因为大家都知道Vue2
的数组响应式必须使用Array
的api
,那样操作可能会导致数组响应式失效;
const hasOwnProperty = Object.prototype.hasOwnProperty export const hasOwn = ( val: object, key: string | symbol ): key is keyof typeof val => hasOwnProperty.call(val, key)
使用的是Object.prototype.hasOwnProperty
,和Vue2
相同;
export const isArray = Array.isArray
使用的是Array.isArray
,和Vue2
相同;
export const isMap = (val: unknown): val is Map<any, any> => toTypeString(val) === '[object Map]' export const isSet = (val: unknown): val is Set<any> => toTypeString(val) === '[object Set]' export const isDate = (val: unknown): val is Date => toTypeString(val) === '[object Date]' export const isRegExp = (val: unknown): val is RegExp => toTypeString(val) === '[object RegExp]'
都是使用Object.toString
来判断类型,对比于Vue2
新增了isMap
和isSet
和isDate
,实现方式没变;
export const isFunction = (val: unknown): val is Function => typeof val === 'function' export const isString = (val: unknown): val is string => typeof val === 'string' export const isSymbol = (val: unknown): val is symbol => typeof val === 'symbol' export const isObject = (val: unknown): val is Record<any, any> => val !== null && typeof val === 'object'
和Vue2
的实现方式相同,都是使用typeof
来判断类型,新增了isSymbol
;
export const isPromise = <T = any>(val: unknown): val is Promise<T> => { return isObject(val) && isFunction(val.then) && isFunction(val.catch) }
和Vue2
对比修改了实现方式,但是判断逻辑没变;
export const objectToString = Object.prototype.toString
直接是Object.prototype.toString
;
export const toTypeString = (value: unknown): string => objectToString.call(value)
对入参执行Object.prototype.toString
;
export const toRawType = (value: unknown): string => { // extract "RawType" from strings like "[object RawType]" return toTypeString(value).slice(8, -1) }
和Vue2
的实现方式相同;
export const isPlainObject = (val: unknown): val is object => toTypeString(val) === '[object Object]'
和Vue2
的实现方式相同;
export const isIntegerKey = (key: unknown) => isString(key) && key !== 'NaN' && key[0] !== '-' && '' + parseInt(key, 10) === key
判断一个字符串是不是由一个整数组成的;
export const isReservedProp = /*#__PURE__*/ makeMap( // the leading comma is intentional so empty string "" is also included ',key,ref,ref_for,ref_key,' + 'onVnodeBeforeMount,onVnodeMounted,' + 'onVnodeBeforeUpdate,onVnodeUpdated,' + 'onVnodeBeforeUnmount,onVnodeUnmounted' )
使用makeMap
生成一个对象,用于判断入参是否是内部保留的属性;
export const isBuiltInDirective = /*#__PURE__*/ makeMap( 'bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo' )
使用makeMap
生成一个对象,用于判断入参是否是内置的指令;
const cacheStringFunction = <T extends (str: string) => string>(fn: T): T => { const cache: Record<string, string> = Object.create(null) return ((str: string) => { const hit = cache[str] return hit || (cache[str] = fn(str)) }) as T }
同Vue2
的cached
相同,用于缓存字符串;
const camelizeRE = /-(\w)/g /** * @private */ export const camelize = cacheStringFunction((str: string): string => { return str.replace(camelizeRE, (_, c) => (c ? c.toUpperCase() : '')) })
将-
连接的字符串转换为驼峰式,同Vue2
的camelize
相同;
const hyphenateRE = /\B([A-Z])/g /** * @private */ export const hyphenate = cacheStringFunction((str: string) => str.replace(hyphenateRE, '-$1').toLowerCase() )
将驼峰式字符串转换为-
连接的字符串,同Vue2
的hyphenate
相同;
/** * @private */ export const capitalize = cacheStringFunction( (str: string) => str.charAt(0).toUpperCase() + str.slice(1) )
将字符串首字母大写,同Vue2
的capitalize
相同;
/** * @private */ export const toHandlerKey = cacheStringFunction((str: string) => str ? `on${capitalize(str)}` : `` )
将字符串首字母大写并在前面加上on
;
// compare whether a value has changed, accounting for NaN. export const hasChanged = (value: any, oldValue: any): boolean => !Object.is(value, oldValue)
和Vue2
相比,移除了polyfill
,直接使用Object.is
;
export const invokeArrayFns = (fns: Function[], arg?: any) => { for (let i = 0; i < fns.length; i++) { fns[i](arg) } }
批量调用传递过来的函数列表,如果有参数,会将参数传递给每个函数;
export const def = (obj: object, key: string | symbol, value: any) => { Object.defineProperty(obj, key, { configurable: true, enumerable: false, value }) }
使用Object.defineProperty
定义一个属性,并使这个属性不可枚举;
/** * "123-foo" will be parsed to 123 * This is used for the .number modifier in v-model */ export const looseToNumber = (val: any): any => { const n = parseFloat(val) return isNaN(n) ? val : n }
将字符串转换为数字,如果转换失败,返回原字符串;
通过注释知道主要用于v-model
的.number
修饰符;
/** * Only conerces number-like strings * "123-foo" will be returned as-is */ export const toNumber = (val: any): any => { const n = isString(val) ? Number(val) : NaN return isNaN(n) ? val : n }
将字符串转换为数字,如果转换失败,返回原数据;
let _globalThis: any export const getGlobalThis = (): any => { return ( _globalThis || (_globalThis = typeof globalThis !== 'undefined' ? globalThis : typeof self !== 'undefined' ? self : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : {}) ) }
获取全局对象,根据环境不同返回的对象也不同;
const identRE = /^[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*$/ export function genPropsAccessExp(name: string) { return identRE.test(name) ? `__props.${name}` : `__props[${JSON.stringify(name)}]` }
生成props
的访问表达式,如果name
是合法的标识符,直接返回__props.name
,否则返回通过JSON.stringify
转换后的__props[name]
;
通过这次的源码阅读,我们巩固了一些基础知识,通过对比Vue2
的工具函数,我们也了解了Vue3
的一些变化;
这些变化个人感觉主要集中在拥抱es6
,可以看到放弃ie
是多么自由而奔放;
话外题,不知道大家有没有发现MDN
上面的浏览器兼容性表格,已经没有了ie
的相关信息。
以上是聊聊Vue3 shared模組下38個工具函數(原始碼閱讀)的詳細內容。更多資訊請關注PHP中文網其他相關文章!