2024-04-11 06:31:44 +00:00
if ( typeof Promise !== "undefined" && ! Promise . prototype . finally ) {
Promise . prototype . finally = function ( callback ) {
const promise = this . constructor ;
return this . then (
( value ) => promise . resolve ( callback ( ) ) . then ( ( ) => value ) ,
( reason ) => promise . resolve ( callback ( ) ) . then ( ( ) => {
throw reason ;
} )
) ;
} ;
}
;
if ( typeof uni !== "undefined" && uni && uni . requireGlobal ) {
const global = uni . requireGlobal ( ) ;
ArrayBuffer = global . ArrayBuffer ;
Int8Array = global . Int8Array ;
Uint8Array = global . Uint8Array ;
Uint8ClampedArray = global . Uint8ClampedArray ;
Int16Array = global . Int16Array ;
Uint16Array = global . Uint16Array ;
Int32Array = global . Int32Array ;
Uint32Array = global . Uint32Array ;
Float32Array = global . Float32Array ;
Float64Array = global . Float64Array ;
BigInt64Array = global . BigInt64Array ;
BigUint64Array = global . BigUint64Array ;
}
;
if ( uni . restoreGlobal ) {
uni . restoreGlobal ( Vue , weex , plus , setTimeout , clearTimeout , setInterval , clearInterval ) ;
}
( function ( vue ) {
"use strict" ;
2024-07-09 09:36:30 +00:00
var _e2 , _f , _g , _h , _i , _j , _k , _l , _m , _n ;
2024-07-09 10:55:32 +00:00
const mpMixin = { } ;
2024-07-09 09:36:30 +00:00
function formatAppLog ( type , filename , ... args ) {
if ( uni . _ _log _ _ ) {
uni . _ _log _ _ ( type , filename , ... args ) ;
} else {
console [ type ] . apply ( console , [ ... args , filename ] ) ;
}
}
function resolveEasycom ( component , easycom ) {
return typeof component === "string" ? easycom : component ;
}
function email ( value ) {
return /^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/ . test ( value ) ;
}
function mobile ( value ) {
return /^1([3589]\d|4[5-9]|6[1-2,4-7]|7[0-8])\d{8}$/ . test ( value ) ;
}
function url ( value ) {
return /^((https|http|ftp|rtsp|mms):\/\/)(([0-9a-zA-Z_!~*'().&=+$%-]+: )?[0-9a-zA-Z_!~*'().&=+$%-]+@)?(([0-9]{1,3}.){3}[0-9]{1,3}|([0-9a-zA-Z_!~*'()-]+.)*([0-9a-zA-Z][0-9a-zA-Z-]{0,61})?[0-9a-zA-Z].[a-zA-Z]{2,6})(:[0-9]{1,4})?((\/?)|(\/[0-9a-zA-Z_!~*'().;?:@&=+$,%#-]+)+\/?)$/ . test ( value ) ;
}
function date ( value ) {
if ( ! value )
return false ;
if ( number ( value ) )
value = + value ;
return ! /Invalid|NaN/ . test ( new Date ( value ) . toString ( ) ) ;
}
function dateISO ( value ) {
return /^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/ . test ( value ) ;
}
function number ( value ) {
return /^[\+-]?(\d+\.?\d*|\.\d+|\d\.\d+e\+\d+)$/ . test ( value ) ;
}
function string ( value ) {
return typeof value === "string" ;
}
function digits ( value ) {
return /^\d+$/ . test ( value ) ;
}
function idCard ( value ) {
return /^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/ . test (
value
) ;
}
function carNo ( value ) {
const xreg = /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/ ;
const creg = /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/ ;
if ( value . length === 7 ) {
return creg . test ( value ) ;
}
if ( value . length === 8 ) {
return xreg . test ( value ) ;
}
return false ;
}
function amount ( value ) {
return /^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/ . test ( value ) ;
}
function chinese ( value ) {
const reg = /^[\u4e00-\u9fa5]+$/gi ;
return reg . test ( value ) ;
}
function letter ( value ) {
return /^[a-zA-Z]*$/ . test ( value ) ;
}
function enOrNum ( value ) {
const reg = /^[0-9a-zA-Z]*$/g ;
return reg . test ( value ) ;
}
function contains ( value , param ) {
return value . indexOf ( param ) >= 0 ;
}
function range$1 ( value , param ) {
return value >= param [ 0 ] && value <= param [ 1 ] ;
}
function rangeLength ( value , param ) {
return value . length >= param [ 0 ] && value . length <= param [ 1 ] ;
}
function landline ( value ) {
const reg = /^\d{3,4}-\d{7,8}(-\d{3,4})?$/ ;
return reg . test ( value ) ;
}
function empty ( value ) {
switch ( typeof value ) {
case "undefined" :
return true ;
case "string" :
if ( value . replace ( /(^[ \t\n\r]*)|([ \t\n\r]*$)/g , "" ) . length == 0 )
return true ;
break ;
case "boolean" :
if ( ! value )
return true ;
break ;
case "number" :
if ( value === 0 || isNaN ( value ) )
return true ;
break ;
case "object" :
if ( value === null || value . length === 0 )
return true ;
for ( const i2 in value ) {
return false ;
}
return true ;
}
return false ;
}
function jsonString ( value ) {
if ( typeof value === "string" ) {
try {
const obj = JSON . parse ( value ) ;
if ( typeof obj === "object" && obj ) {
return true ;
}
return false ;
} catch ( e2 ) {
return false ;
}
}
return false ;
}
function array ( value ) {
if ( typeof Array . isArray === "function" ) {
return Array . isArray ( value ) ;
}
return Object . prototype . toString . call ( value ) === "[object Array]" ;
}
function object ( value ) {
return Object . prototype . toString . call ( value ) === "[object Object]" ;
}
function code ( value , len = 6 ) {
return new RegExp ( ` ^ \\ d{ ${ len } } $ ` ) . test ( value ) ;
}
function func ( value ) {
return typeof value === "function" ;
}
function promise ( value ) {
return object ( value ) && func ( value . then ) && func ( value . catch ) ;
}
function image ( value ) {
const newValue = value . split ( "?" ) [ 0 ] ;
const IMAGE _REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i ;
return IMAGE _REGEXP . test ( newValue ) ;
}
function video ( value ) {
const VIDEO _REGEXP = /\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8)/i ;
return VIDEO _REGEXP . test ( value ) ;
}
function regExp ( o2 ) {
return o2 && Object . prototype . toString . call ( o2 ) === "[object RegExp]" ;
}
const test = /* @__PURE__ */ Object . freeze ( /* @__PURE__ */ Object . defineProperty ( {
_ _proto _ _ : null ,
amount ,
array ,
carNo ,
chinese ,
code ,
contains ,
date ,
dateISO ,
digits ,
email ,
empty ,
enOrNum ,
func ,
idCard ,
image ,
jsonString ,
landline ,
letter ,
mobile ,
number ,
object ,
promise ,
range : range$1 ,
rangeLength ,
regExp ,
string ,
url ,
video
} , Symbol . toStringTag , { value : "Module" } ) ) ;
function strip ( num , precision = 15 ) {
return + parseFloat ( Number ( num ) . toPrecision ( precision ) ) ;
}
function digitLength ( num ) {
const eSplit = num . toString ( ) . split ( /[eE]/ ) ;
const len = ( eSplit [ 0 ] . split ( "." ) [ 1 ] || "" ) . length - + ( eSplit [ 1 ] || 0 ) ;
return len > 0 ? len : 0 ;
}
function float2Fixed ( num ) {
if ( num . toString ( ) . indexOf ( "e" ) === - 1 ) {
return Number ( num . toString ( ) . replace ( "." , "" ) ) ;
}
const dLen = digitLength ( num ) ;
return dLen > 0 ? strip ( Number ( num ) * Math . pow ( 10 , dLen ) ) : Number ( num ) ;
}
function checkBoundary ( num ) {
{
if ( num > Number . MAX _SAFE _INTEGER || num < Number . MIN _SAFE _INTEGER ) {
formatAppLog ( "warn" , "at uni_modules/uv-ui-tools/libs/function/digit.js:45" , ` ${ num } 超出了精度限制,结果可能不正确 ` ) ;
}
}
}
function iteratorOperation ( arr , operation ) {
const [ num1 , num2 , ... others ] = arr ;
let res = operation ( num1 , num2 ) ;
others . forEach ( ( num ) => {
res = operation ( res , num ) ;
} ) ;
return res ;
}
function times ( ... nums ) {
if ( nums . length > 2 ) {
return iteratorOperation ( nums , times ) ;
}
const [ num1 , num2 ] = nums ;
const num1Changed = float2Fixed ( num1 ) ;
const num2Changed = float2Fixed ( num2 ) ;
const baseNum = digitLength ( num1 ) + digitLength ( num2 ) ;
const leftValue = num1Changed * num2Changed ;
checkBoundary ( leftValue ) ;
return leftValue / Math . pow ( 10 , baseNum ) ;
}
function divide ( ... nums ) {
if ( nums . length > 2 ) {
return iteratorOperation ( nums , divide ) ;
}
const [ num1 , num2 ] = nums ;
const num1Changed = float2Fixed ( num1 ) ;
const num2Changed = float2Fixed ( num2 ) ;
checkBoundary ( num1Changed ) ;
checkBoundary ( num2Changed ) ;
return times ( num1Changed / num2Changed , strip ( Math . pow ( 10 , digitLength ( num2 ) - digitLength ( num1 ) ) ) ) ;
}
function round ( num , ratio ) {
const base = Math . pow ( 10 , ratio ) ;
let result = divide ( Math . round ( Math . abs ( times ( num , base ) ) ) , base ) ;
if ( num < 0 && result !== 0 ) {
result = times ( result , - 1 ) ;
}
return result ;
}
function range ( min = 0 , max = 0 , value = 0 ) {
return Math . max ( min , Math . min ( max , Number ( value ) ) ) ;
}
function getPx ( value , unit = false ) {
if ( number ( value ) ) {
return unit ? ` ${ value } px ` : Number ( value ) ;
}
if ( /(rpx|upx)$/ . test ( value ) ) {
return unit ? ` ${ uni . upx2px ( parseInt ( value ) ) } px ` : Number ( uni . upx2px ( parseInt ( value ) ) ) ;
}
return unit ? ` ${ parseInt ( value ) } px ` : parseInt ( value ) ;
}
function sleep ( value = 30 ) {
return new Promise ( ( resolve ) => {
setTimeout ( ( ) => {
resolve ( ) ;
} , value ) ;
} ) ;
}
function os$1 ( ) {
return uni . getSystemInfoSync ( ) . platform . toLowerCase ( ) ;
}
function sys ( ) {
return uni . getSystemInfoSync ( ) ;
}
function random ( min , max ) {
if ( min >= 0 && max > 0 && max >= min ) {
const gab = max - min + 1 ;
return Math . floor ( Math . random ( ) * gab + min ) ;
}
return 0 ;
}
function guid ( len = 32 , firstU = true , radix = null ) {
const chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" . split ( "" ) ;
const uuid = [ ] ;
radix = radix || chars . length ;
if ( len ) {
for ( let i2 = 0 ; i2 < len ; i2 ++ )
uuid [ i2 ] = chars [ 0 | Math . random ( ) * radix ] ;
} else {
let r2 ;
uuid [ 8 ] = uuid [ 13 ] = uuid [ 18 ] = uuid [ 23 ] = "-" ;
uuid [ 14 ] = "4" ;
for ( let i2 = 0 ; i2 < 36 ; i2 ++ ) {
if ( ! uuid [ i2 ] ) {
r2 = 0 | Math . random ( ) * 16 ;
uuid [ i2 ] = chars [ i2 == 19 ? r2 & 3 | 8 : r2 ] ;
}
}
}
if ( firstU ) {
uuid . shift ( ) ;
return ` u ${ uuid . join ( "" ) } ` ;
}
return uuid . join ( "" ) ;
}
function $parent ( name = void 0 ) {
let parent = this . $parent ;
while ( parent ) {
if ( parent . $options && parent . $options . name !== name ) {
parent = parent . $parent ;
} else {
return parent ;
}
}
return false ;
}
function addStyle ( customStyle , target = "object" ) {
if ( empty ( customStyle ) || typeof customStyle === "object" && target === "object" || target === "string" && typeof customStyle === "string" ) {
return customStyle ;
}
if ( target === "object" ) {
customStyle = trim ( customStyle ) ;
const styleArray = customStyle . split ( ";" ) ;
const style = { } ;
for ( let i2 = 0 ; i2 < styleArray . length ; i2 ++ ) {
if ( styleArray [ i2 ] ) {
const item = styleArray [ i2 ] . split ( ":" ) ;
style [ trim ( item [ 0 ] ) ] = trim ( item [ 1 ] ) ;
}
}
return style ;
}
let string2 = "" ;
for ( const i2 in customStyle ) {
const key = i2 . replace ( /([A-Z])/g , "-$1" ) . toLowerCase ( ) ;
string2 += ` ${ key } : ${ customStyle [ i2 ] } ; ` ;
}
return trim ( string2 ) ;
}
function addUnit ( value = "auto" , unit = ( ( _b ) => ( _b = ( ( _a ) => ( _a = uni == null ? void 0 : uni . $uv ) == null ? void 0 : _a . config ) ( ) ) == null ? void 0 : _b . unit ) ( ) ? ( ( _d ) => ( _d = ( ( _c ) => ( _c = uni == null ? void 0 : uni . $uv ) == null ? void 0 : _c . config ) ( ) ) == null ? void 0 : _d . unit ) ( ) : "px" ) {
value = String ( value ) ;
return number ( value ) ? ` ${ value } ${ unit } ` : value ;
}
function deepClone ( obj , cache = /* @__PURE__ */ new WeakMap ( ) ) {
if ( obj === null || typeof obj !== "object" )
return obj ;
if ( cache . has ( obj ) )
return cache . get ( obj ) ;
let clone ;
if ( obj instanceof Date ) {
clone = new Date ( obj . getTime ( ) ) ;
} else if ( obj instanceof RegExp ) {
clone = new RegExp ( obj ) ;
} else if ( obj instanceof Map ) {
clone = new Map ( Array . from ( obj , ( [ key , value ] ) => [ key , deepClone ( value , cache ) ] ) ) ;
} else if ( obj instanceof Set ) {
clone = new Set ( Array . from ( obj , ( value ) => deepClone ( value , cache ) ) ) ;
} else if ( Array . isArray ( obj ) ) {
clone = obj . map ( ( value ) => deepClone ( value , cache ) ) ;
} else if ( Object . prototype . toString . call ( obj ) === "[object Object]" ) {
clone = Object . create ( Object . getPrototypeOf ( obj ) ) ;
cache . set ( obj , clone ) ;
for ( const [ key , value ] of Object . entries ( obj ) ) {
clone [ key ] = deepClone ( value , cache ) ;
}
} else {
clone = Object . assign ( { } , obj ) ;
}
cache . set ( obj , clone ) ;
return clone ;
}
function deepMerge ( target = { } , source = { } ) {
target = deepClone ( target ) ;
if ( typeof target !== "object" || target === null || typeof source !== "object" || source === null )
return target ;
const merged = Array . isArray ( target ) ? target . slice ( ) : Object . assign ( { } , target ) ;
for ( const prop in source ) {
if ( ! source . hasOwnProperty ( prop ) )
continue ;
const sourceValue = source [ prop ] ;
const targetValue = merged [ prop ] ;
if ( sourceValue instanceof Date ) {
merged [ prop ] = new Date ( sourceValue ) ;
} else if ( sourceValue instanceof RegExp ) {
merged [ prop ] = new RegExp ( sourceValue ) ;
} else if ( sourceValue instanceof Map ) {
merged [ prop ] = new Map ( sourceValue ) ;
} else if ( sourceValue instanceof Set ) {
merged [ prop ] = new Set ( sourceValue ) ;
} else if ( typeof sourceValue === "object" && sourceValue !== null ) {
merged [ prop ] = deepMerge ( targetValue , sourceValue ) ;
} else {
merged [ prop ] = sourceValue ;
}
}
return merged ;
}
function error ( err ) {
{
formatAppLog ( "error" , "at uni_modules/uv-ui-tools/libs/function/index.js:250" , ` uvui提示: ${ err } ` ) ;
}
}
function randomArray ( array2 = [ ] ) {
return array2 . sort ( ( ) => Math . random ( ) - 0.5 ) ;
}
if ( ! String . prototype . padStart ) {
String . prototype . padStart = function ( maxLength , fillString = " " ) {
if ( Object . prototype . toString . call ( fillString ) !== "[object String]" ) {
throw new TypeError (
"fillString must be String"
) ;
}
const str = this ;
if ( str . length >= maxLength )
return String ( str ) ;
const fillLength = maxLength - str . length ;
let times2 = Math . ceil ( fillLength / fillString . length ) ;
while ( times2 >>= 1 ) {
fillString += fillString ;
if ( times2 === 1 ) {
fillString += fillString ;
}
}
return fillString . slice ( 0 , fillLength ) + str ;
} ;
}
function timeFormat ( dateTime = null , formatStr = "yyyy-mm-dd" ) {
let date2 ;
if ( ! dateTime ) {
date2 = /* @__PURE__ */ new Date ( ) ;
} else if ( /^\d{10}$/ . test ( dateTime == null ? void 0 : dateTime . toString ( ) . trim ( ) ) ) {
date2 = new Date ( dateTime * 1e3 ) ;
} else if ( typeof dateTime === "string" && /^\d+$/ . test ( dateTime . trim ( ) ) ) {
date2 = new Date ( Number ( dateTime ) ) ;
} else if ( typeof dateTime === "string" && dateTime . includes ( "-" ) && ! dateTime . includes ( "T" ) ) {
date2 = new Date ( dateTime . replace ( /-/g , "/" ) ) ;
} else {
date2 = new Date ( dateTime ) ;
}
const timeSource = {
"y" : date2 . getFullYear ( ) . toString ( ) ,
// 年
"m" : ( date2 . getMonth ( ) + 1 ) . toString ( ) . padStart ( 2 , "0" ) ,
// 月
"d" : date2 . getDate ( ) . toString ( ) . padStart ( 2 , "0" ) ,
// 日
"h" : date2 . getHours ( ) . toString ( ) . padStart ( 2 , "0" ) ,
// 时
"M" : date2 . getMinutes ( ) . toString ( ) . padStart ( 2 , "0" ) ,
// 分
"s" : date2 . getSeconds ( ) . toString ( ) . padStart ( 2 , "0" )
// 秒
// 有其他格式化字符需求可以继续添加,必须转化成字符串
} ;
for ( const key in timeSource ) {
const [ ret ] = new RegExp ( ` ${ key } + ` ) . exec ( formatStr ) || [ ] ;
if ( ret ) {
const beginIndex = key === "y" && ret . length === 2 ? 2 : 0 ;
formatStr = formatStr . replace ( ret , timeSource [ key ] . slice ( beginIndex ) ) ;
}
}
return formatStr ;
}
function timeFrom ( timestamp = null , format = "yyyy-mm-dd" ) {
if ( timestamp == null )
timestamp = Number ( /* @__PURE__ */ new Date ( ) ) ;
timestamp = parseInt ( timestamp ) ;
if ( timestamp . toString ( ) . length == 10 )
timestamp *= 1e3 ;
let timer = ( /* @__PURE__ */ new Date ( ) ) . getTime ( ) - timestamp ;
timer = parseInt ( timer / 1e3 ) ;
let tips = "" ;
switch ( true ) {
case timer < 300 :
tips = "刚刚" ;
break ;
case ( timer >= 300 && timer < 3600 ) :
tips = ` ${ parseInt ( timer / 60 ) } 分钟前 ` ;
break ;
case ( timer >= 3600 && timer < 86400 ) :
tips = ` ${ parseInt ( timer / 3600 ) } 小时前 ` ;
break ;
case ( timer >= 86400 && timer < 2592e3 ) :
tips = ` ${ parseInt ( timer / 86400 ) } 天前 ` ;
break ;
default :
if ( format === false ) {
if ( timer >= 2592e3 && timer < 365 * 86400 ) {
tips = ` ${ parseInt ( timer / ( 86400 * 30 ) ) } 个月前 ` ;
} else {
tips = ` ${ parseInt ( timer / ( 86400 * 365 ) ) } 年前 ` ;
}
} else {
tips = timeFormat ( timestamp , format ) ;
}
}
return tips ;
}
function trim ( str , pos = "both" ) {
str = String ( str ) ;
if ( pos == "both" ) {
return str . replace ( /^\s+|\s+$/g , "" ) ;
}
if ( pos == "left" ) {
return str . replace ( /^\s*/ , "" ) ;
}
if ( pos == "right" ) {
return str . replace ( /(\s*$)/g , "" ) ;
}
if ( pos == "all" ) {
return str . replace ( /\s+/g , "" ) ;
}
return str ;
}
function queryParams ( data = { } , isPrefix = true , arrayFormat = "brackets" ) {
const prefix = isPrefix ? "?" : "" ;
const _result = [ ] ;
if ( [ "indices" , "brackets" , "repeat" , "comma" ] . indexOf ( arrayFormat ) == - 1 )
arrayFormat = "brackets" ;
for ( const key in data ) {
const value = data [ key ] ;
if ( [ "" , void 0 , null ] . indexOf ( value ) >= 0 ) {
continue ;
}
if ( value . constructor === Array ) {
switch ( arrayFormat ) {
case "indices" :
for ( let i2 = 0 ; i2 < value . length ; i2 ++ ) {
_result . push ( ` ${ key } [ ${ i2 } ]= ${ value [ i2 ] } ` ) ;
}
break ;
case "brackets" :
value . forEach ( ( _value ) => {
_result . push ( ` ${ key } []= ${ _value } ` ) ;
} ) ;
break ;
case "repeat" :
value . forEach ( ( _value ) => {
_result . push ( ` ${ key } = ${ _value } ` ) ;
} ) ;
break ;
case "comma" :
let commaStr = "" ;
value . forEach ( ( _value ) => {
commaStr += ( commaStr ? "," : "" ) + _value ;
} ) ;
_result . push ( ` ${ key } = ${ commaStr } ` ) ;
break ;
default :
value . forEach ( ( _value ) => {
_result . push ( ` ${ key } []= ${ _value } ` ) ;
} ) ;
}
} else {
_result . push ( ` ${ key } = ${ value } ` ) ;
}
}
return _result . length ? prefix + _result . join ( "&" ) : "" ;
}
function toast ( title , duration = 2e3 ) {
uni . showToast ( {
title : String ( title ) ,
icon : "none" ,
duration
} ) ;
}
function type2icon ( type = "success" , fill = false ) {
if ( [ "primary" , "info" , "error" , "warning" , "success" ] . indexOf ( type ) == - 1 )
type = "success" ;
let iconName = "" ;
switch ( type ) {
case "primary" :
iconName = "info-circle" ;
break ;
case "info" :
iconName = "info-circle" ;
break ;
case "error" :
iconName = "close-circle" ;
break ;
case "warning" :
iconName = "error-circle" ;
break ;
case "success" :
iconName = "checkmark-circle" ;
break ;
default :
iconName = "checkmark-circle" ;
}
if ( fill )
iconName += "-fill" ;
return iconName ;
}
function priceFormat ( number2 , decimals = 0 , decimalPoint = "." , thousandsSeparator = "," ) {
number2 = ` ${ number2 } ` . replace ( /[^0-9+-Ee.]/g , "" ) ;
const n2 = ! isFinite ( + number2 ) ? 0 : + number2 ;
const prec = ! isFinite ( + decimals ) ? 0 : Math . abs ( decimals ) ;
const sep = typeof thousandsSeparator === "undefined" ? "," : thousandsSeparator ;
const dec = typeof decimalPoint === "undefined" ? "." : decimalPoint ;
let s2 = "" ;
s2 = ( prec ? round ( n2 , prec ) + "" : ` ${ Math . round ( n2 ) } ` ) . split ( "." ) ;
const re2 = /(-?\d+)(\d{3})/ ;
while ( re2 . test ( s2 [ 0 ] ) ) {
s2 [ 0 ] = s2 [ 0 ] . replace ( re2 , ` $ 1 ${ sep } $ 2 ` ) ;
}
if ( ( s2 [ 1 ] || "" ) . length < prec ) {
s2 [ 1 ] = s2 [ 1 ] || "" ;
s2 [ 1 ] += new Array ( prec - s2 [ 1 ] . length + 1 ) . join ( "0" ) ;
}
return s2 . join ( dec ) ;
}
function getDuration ( value , unit = true ) {
const valueNum = parseInt ( value ) ;
if ( unit ) {
if ( /s$/ . test ( value ) )
return value ;
return value > 30 ? ` ${ value } ms ` : ` ${ value } s ` ;
}
if ( /ms$/ . test ( value ) )
return valueNum ;
if ( /s$/ . test ( value ) )
return valueNum > 30 ? valueNum : valueNum * 1e3 ;
return valueNum ;
}
function padZero ( value ) {
return ` 00 ${ value } ` . slice ( - 2 ) ;
}
function formValidate ( instance , event ) {
const formItem = $parent . call ( instance , "uv-form-item" ) ;
const form = $parent . call ( instance , "uv-form" ) ;
if ( formItem && form ) {
form . validateField ( formItem . prop , ( ) => {
} , event ) ;
}
}
function getProperty ( obj , key ) {
if ( ! obj ) {
return ;
}
if ( typeof key !== "string" || key === "" ) {
return "" ;
}
if ( key . indexOf ( "." ) !== - 1 ) {
const keys = key . split ( "." ) ;
let firstObj = obj [ keys [ 0 ] ] || { } ;
for ( let i2 = 1 ; i2 < keys . length ; i2 ++ ) {
if ( firstObj ) {
firstObj = firstObj [ keys [ i2 ] ] ;
}
}
return firstObj ;
}
return obj [ key ] ;
}
function setProperty ( obj , key , value ) {
if ( ! obj ) {
return ;
}
const inFn = function ( _obj , keys , v2 ) {
if ( keys . length === 1 ) {
_obj [ keys [ 0 ] ] = v2 ;
return ;
}
while ( keys . length > 1 ) {
const k = keys [ 0 ] ;
if ( ! _obj [ k ] || typeof _obj [ k ] !== "object" ) {
_obj [ k ] = { } ;
}
keys . shift ( ) ;
inFn ( _obj [ k ] , keys , v2 ) ;
}
} ;
if ( typeof key !== "string" || key === "" )
;
else if ( key . indexOf ( "." ) !== - 1 ) {
const keys = key . split ( "." ) ;
inFn ( obj , keys , value ) ;
} else {
obj [ key ] = value ;
}
}
function page ( ) {
var _a ;
const pages2 = getCurrentPages ( ) ;
const route2 = ( _a = pages2 [ pages2 . length - 1 ] ) == null ? void 0 : _a . route ;
return ` / ${ route2 ? route2 : "" } ` ;
}
function pages$1 ( ) {
const pages2 = getCurrentPages ( ) ;
return pages2 ;
}
function getHistoryPage ( back = 0 ) {
const pages2 = getCurrentPages ( ) ;
const len = pages2 . length ;
return pages2 [ len - 1 + back ] ;
}
function setConfig ( {
props : props2 = { } ,
config : config2 = { } ,
color = { } ,
zIndex = { }
} ) {
const {
deepMerge : deepMerge2
} = uni . $uv ;
uni . $uv . config = deepMerge2 ( uni . $uv . config , config2 ) ;
uni . $uv . props = deepMerge2 ( uni . $uv . props , props2 ) ;
uni . $uv . color = deepMerge2 ( uni . $uv . color , color ) ;
uni . $uv . zIndex = deepMerge2 ( uni . $uv . zIndex , zIndex ) ;
}
const index = /* @__PURE__ */ Object . freeze ( /* @__PURE__ */ Object . defineProperty ( {
_ _proto _ _ : null ,
$parent ,
addStyle ,
addUnit ,
deepClone ,
deepMerge ,
error ,
formValidate ,
getDuration ,
getHistoryPage ,
getProperty ,
getPx ,
guid ,
os : os$1 ,
padZero ,
page ,
pages : pages$1 ,
priceFormat ,
queryParams ,
random ,
randomArray ,
range ,
setConfig ,
setProperty ,
sleep ,
sys ,
timeFormat ,
timeFrom ,
toast ,
trim ,
type2icon
} , Symbol . toStringTag , { value : "Module" } ) ) ;
class Router {
constructor ( ) {
this . config = {
type : "navigateTo" ,
url : "" ,
delta : 1 ,
// navigateBack页面后退时,回退的层数
params : { } ,
// 传递的参数
animationType : "pop-in" ,
// 窗口动画,只在APP有效
animationDuration : 300 ,
// 窗口动画持续时间,单位毫秒,只在APP有效
intercept : false ,
// 是否需要拦截
events : { }
// 页面间通信接口, 用于监听被打开页面发送到当前页面的数据。hbuilderx 2.8.9+ 开始支持。
} ;
this . route = this . route . bind ( this ) ;
}
// 判断url前面是否有"/",如果没有则加上,否则无法跳转
addRootPath ( url2 ) {
return url2 [ 0 ] === "/" ? url2 : ` / ${ url2 } ` ;
}
// 整合路由参数
mixinParam ( url2 , params ) {
url2 = url2 && this . addRootPath ( url2 ) ;
let query = "" ;
if ( /.*\/.*\?.*=.*/ . test ( url2 ) ) {
query = queryParams ( params , false ) ;
return url2 += ` & ${ query } ` ;
}
query = queryParams ( params ) ;
return url2 += query ;
}
// 对外的方法名称
async route ( options = { } , params = { } ) {
let mergeConfig = { } ;
if ( typeof options === "string" ) {
mergeConfig . url = this . mixinParam ( options , params ) ;
mergeConfig . type = "navigateTo" ;
} else {
mergeConfig = deepMerge ( this . config , options ) ;
mergeConfig . url = this . mixinParam ( options . url , options . params ) ;
}
if ( mergeConfig . url === page ( ) )
return ;
if ( params . intercept ) {
mergeConfig . intercept = params . intercept ;
}
mergeConfig . params = params ;
mergeConfig = deepMerge ( this . config , mergeConfig ) ;
if ( typeof mergeConfig . intercept === "function" ) {
const isNext = await new Promise ( ( resolve , reject ) => {
mergeConfig . intercept ( mergeConfig , resolve ) ;
} ) ;
isNext && this . openPage ( mergeConfig ) ;
} else {
this . openPage ( mergeConfig ) ;
}
}
// 执行路由跳转
openPage ( config2 ) {
const {
url : url2 ,
type ,
delta ,
animationType ,
animationDuration ,
events
} = config2 ;
if ( config2 . type == "navigateTo" || config2 . type == "to" ) {
uni . navigateTo ( {
url : url2 ,
animationType ,
animationDuration ,
events
} ) ;
}
if ( config2 . type == "redirectTo" || config2 . type == "redirect" ) {
uni . redirectTo ( {
url : url2
} ) ;
}
if ( config2 . type == "switchTab" || config2 . type == "tab" ) {
uni . switchTab ( {
url : url2
} ) ;
}
if ( config2 . type == "reLaunch" || config2 . type == "launch" ) {
uni . reLaunch ( {
url : url2
} ) ;
}
if ( config2 . type == "navigateBack" || config2 . type == "back" ) {
uni . navigateBack ( {
delta
} ) ;
}
}
}
const route = new Router ( ) . route ;
let timeout = null ;
function debounce ( func2 , wait = 500 , immediate = false ) {
if ( timeout !== null )
clearTimeout ( timeout ) ;
if ( immediate ) {
const callNow = ! timeout ;
timeout = setTimeout ( ( ) => {
timeout = null ;
} , wait ) ;
if ( callNow )
typeof func2 === "function" && func2 ( ) ;
} else {
timeout = setTimeout ( ( ) => {
typeof func2 === "function" && func2 ( ) ;
} , wait ) ;
}
}
let flag ;
function throttle ( func2 , wait = 500 , immediate = true ) {
if ( immediate ) {
if ( ! flag ) {
flag = true ;
typeof func2 === "function" && func2 ( ) ;
setTimeout ( ( ) => {
flag = false ;
} , wait ) ;
}
} else if ( ! flag ) {
flag = true ;
setTimeout ( ( ) => {
flag = false ;
typeof func2 === "function" && func2 ( ) ;
} , wait ) ;
}
}
const mixin = {
// 定义每个组件都可能需要用到的外部样式以及类名
props : {
// 每个组件都有的父组件传递的样式,可以为字符串或者对象形式
customStyle : {
type : [ Object , String ] ,
default : ( ) => ( { } )
} ,
customClass : {
type : String ,
default : ""
} ,
// 跳转的页面路径
url : {
type : String ,
default : ""
} ,
// 页面跳转的类型
linkType : {
type : String ,
default : "navigateTo"
}
} ,
data ( ) {
return { } ;
} ,
onLoad ( ) {
this . $uv . getRect = this . $uvGetRect ;
} ,
created ( ) {
this . $uv . getRect = this . $uvGetRect ;
} ,
computed : {
$uv ( ) {
var _a , _b ;
return {
... index ,
test ,
route ,
debounce ,
throttle ,
unit : ( _b = ( _a = uni == null ? void 0 : uni . $uv ) == null ? void 0 : _a . config ) == null ? void 0 : _b . unit
} ;
} ,
/ * *
* 生成bem规则类名
* 由于微信小程序 , H5 , nvue之间绑定class的差异 , 无法通过 : class = "[bem()]" 的形式进行同用
* 故采用如下折中做法 , 最后返回的是数组 ( 一般平台 ) 或字符串 ( 支付宝和字节跳动平台 ) , 类似 [ 'a' , 'b' , 'c' ] 或 'a b c' 的形式
* @ param { String } name 组件名称
* @ param { Array } fixed 一直会存在的类名
* @ param { Array } change 会根据变量值为true或者false而出现或者隐藏的类名
* @ returns { Array | string }
* /
bem ( ) {
return function ( name , fixed , change ) {
const prefix = ` uv- ${ name } -- ` ;
const classes = { } ;
if ( fixed ) {
fixed . map ( ( item ) => {
classes [ prefix + this [ item ] ] = true ;
} ) ;
}
if ( change ) {
change . map ( ( item ) => {
this [ item ] ? classes [ prefix + item ] = this [ item ] : delete classes [ prefix + item ] ;
} ) ;
}
return Object . keys ( classes ) ;
} ;
}
} ,
methods : {
// 跳转某一个页面
openPage ( urlKey = "url" ) {
const url2 = this [ urlKey ] ;
if ( url2 ) {
uni [ this . linkType ] ( {
url : url2
} ) ;
}
} ,
// 查询节点信息
// 目前此方法在支付宝小程序中无法获取组件跟接点的尺寸, 为支付宝的bug(2020-07-21)
// 解决办法为在组件根部再套一个没有任何作用的view元素
$uvGetRect ( selector , all ) {
return new Promise ( ( resolve ) => {
uni . createSelectorQuery ( ) . in ( this ) [ all ? "selectAll" : "select" ] ( selector ) . boundingClientRect ( ( rect ) => {
if ( all && Array . isArray ( rect ) && rect . length ) {
resolve ( rect ) ;
}
if ( ! all && rect ) {
resolve ( rect ) ;
}
} ) . exec ( ) ;
} ) ;
} ,
getParentData ( parentName = "" ) {
if ( ! this . parent )
this . parent = { } ;
this . parent = this . $uv . $parent . call ( this , parentName ) ;
if ( this . parent . children ) {
this . parent . children . indexOf ( this ) === - 1 && this . parent . children . push ( this ) ;
}
if ( this . parent && this . parentData ) {
Object . keys ( this . parentData ) . map ( ( key ) => {
this . parentData [ key ] = this . parent [ key ] ;
} ) ;
}
} ,
// 阻止事件冒泡
preventEvent ( e2 ) {
e2 && typeof e2 . stopPropagation === "function" && e2 . stopPropagation ( ) ;
} ,
// 空操作
noop ( e2 ) {
this . preventEvent ( e2 ) ;
}
} ,
onReachBottom ( ) {
uni . $emit ( "uvOnReachBottom" ) ;
} ,
beforeDestroy ( ) {
if ( this . parent && array ( this . parent . children ) ) {
const childrenList = this . parent . children ;
childrenList . map ( ( child , index2 ) => {
if ( child === this ) {
childrenList . splice ( index2 , 1 ) ;
}
} ) ;
}
} ,
// 兼容vue3
unmounted ( ) {
if ( this . parent && array ( this . parent . children ) ) {
const childrenList = this . parent . children ;
childrenList . map ( ( child , index2 ) => {
if ( child === this ) {
childrenList . splice ( index2 , 1 ) ;
}
} ) ;
}
}
} ;
const icons = {
"uvicon-level" : "e68f" ,
"uvicon-checkbox-mark" : "e659" ,
"uvicon-folder" : "e694" ,
"uvicon-movie" : "e67c" ,
"uvicon-star-fill" : "e61e" ,
"uvicon-star" : "e618" ,
"uvicon-phone-fill" : "e6ac" ,
"uvicon-phone" : "e6ba" ,
"uvicon-apple-fill" : "e635" ,
"uvicon-backspace" : "e64d" ,
"uvicon-attach" : "e640" ,
"uvicon-empty-data" : "e671" ,
"uvicon-empty-address" : "e68a" ,
"uvicon-empty-favor" : "e662" ,
"uvicon-empty-car" : "e657" ,
"uvicon-empty-order" : "e66b" ,
"uvicon-empty-list" : "e672" ,
"uvicon-empty-search" : "e677" ,
"uvicon-empty-permission" : "e67d" ,
"uvicon-empty-news" : "e67e" ,
"uvicon-empty-history" : "e685" ,
"uvicon-empty-coupon" : "e69b" ,
"uvicon-empty-page" : "e60e" ,
"uvicon-empty-wifi-off" : "e6cc" ,
"uvicon-reload" : "e627" ,
"uvicon-order" : "e695" ,
"uvicon-server-man" : "e601" ,
"uvicon-search" : "e632" ,
"uvicon-more-dot-fill" : "e66f" ,
"uvicon-scan" : "e631" ,
"uvicon-map" : "e665" ,
"uvicon-map-fill" : "e6a8" ,
"uvicon-tags" : "e621" ,
"uvicon-tags-fill" : "e613" ,
"uvicon-eye" : "e664" ,
"uvicon-eye-fill" : "e697" ,
"uvicon-eye-off" : "e69c" ,
"uvicon-eye-off-outline" : "e688" ,
"uvicon-mic" : "e66d" ,
"uvicon-mic-off" : "e691" ,
"uvicon-calendar" : "e65c" ,
"uvicon-trash" : "e623" ,
"uvicon-trash-fill" : "e6ce" ,
"uvicon-play-left" : "e6bf" ,
"uvicon-play-right" : "e6b3" ,
"uvicon-minus" : "e614" ,
"uvicon-plus" : "e625" ,
"uvicon-info-circle" : "e69f" ,
"uvicon-info-circle-fill" : "e6a7" ,
"uvicon-question-circle" : "e622" ,
"uvicon-question-circle-fill" : "e6bc" ,
"uvicon-close" : "e65a" ,
"uvicon-checkmark" : "e64a" ,
"uvicon-checkmark-circle" : "e643" ,
"uvicon-checkmark-circle-fill" : "e668" ,
"uvicon-setting" : "e602" ,
"uvicon-setting-fill" : "e6d0" ,
"uvicon-heart" : "e6a2" ,
"uvicon-heart-fill" : "e68b" ,
"uvicon-camera" : "e642" ,
"uvicon-camera-fill" : "e650" ,
"uvicon-more-circle" : "e69e" ,
"uvicon-more-circle-fill" : "e684" ,
"uvicon-chat" : "e656" ,
"uvicon-chat-fill" : "e63f" ,
"uvicon-bag" : "e647" ,
"uvicon-error-circle" : "e66e" ,
"uvicon-error-circle-fill" : "e655" ,
"uvicon-close-circle" : "e64e" ,
"uvicon-close-circle-fill" : "e666" ,
"uvicon-share" : "e629" ,
"uvicon-share-fill" : "e6bb" ,
"uvicon-share-square" : "e6c4" ,
"uvicon-shopping-cart" : "e6cb" ,
"uvicon-shopping-cart-fill" : "e630" ,
"uvicon-bell" : "e651" ,
"uvicon-bell-fill" : "e604" ,
"uvicon-list" : "e690" ,
"uvicon-list-dot" : "e6a9" ,
"uvicon-zhifubao-circle-fill" : "e617" ,
"uvicon-weixin-circle-fill" : "e6cd" ,
"uvicon-weixin-fill" : "e620" ,
"uvicon-qq-fill" : "e608" ,
"uvicon-qq-circle-fill" : "e6b9" ,
"uvicon-moments-circel-fill" : "e6c2" ,
"uvicon-moments" : "e6a0" ,
"uvicon-car" : "e64f" ,
"uvicon-car-fill" : "e648" ,
"uvicon-warning-fill" : "e6c7" ,
"uvicon-warning" : "e6c1" ,
"uvicon-clock-fill" : "e64b" ,
"uvicon-clock" : "e66c" ,
"uvicon-edit-pen" : "e65d" ,
"uvicon-edit-pen-fill" : "e679" ,
"uvicon-email" : "e673" ,
"uvicon-email-fill" : "e683" ,
"uvicon-minus-circle" : "e6a5" ,
"uvicon-plus-circle" : "e603" ,
"uvicon-plus-circle-fill" : "e611" ,
"uvicon-file-text" : "e687" ,
"uvicon-file-text-fill" : "e67f" ,
"uvicon-pushpin" : "e6d1" ,
"uvicon-pushpin-fill" : "e6b6" ,
"uvicon-grid" : "e68c" ,
"uvicon-grid-fill" : "e698" ,
"uvicon-play-circle" : "e6af" ,
"uvicon-play-circle-fill" : "e62a" ,
"uvicon-pause-circle-fill" : "e60c" ,
"uvicon-pause" : "e61c" ,
"uvicon-pause-circle" : "e696" ,
"uvicon-gift-fill" : "e6b0" ,
"uvicon-gift" : "e680" ,
"uvicon-kefu-ermai" : "e660" ,
"uvicon-server-fill" : "e610" ,
"uvicon-coupon-fill" : "e64c" ,
"uvicon-coupon" : "e65f" ,
"uvicon-integral" : "e693" ,
"uvicon-integral-fill" : "e6b1" ,
"uvicon-home-fill" : "e68e" ,
"uvicon-home" : "e67b" ,
"uvicon-account" : "e63a" ,
"uvicon-account-fill" : "e653" ,
"uvicon-thumb-down-fill" : "e628" ,
"uvicon-thumb-down" : "e60a" ,
"uvicon-thumb-up" : "e612" ,
"uvicon-thumb-up-fill" : "e62c" ,
"uvicon-lock-fill" : "e6a6" ,
"uvicon-lock-open" : "e68d" ,
"uvicon-lock-opened-fill" : "e6a1" ,
"uvicon-lock" : "e69d" ,
"uvicon-red-packet" : "e6c3" ,
"uvicon-photo-fill" : "e6b4" ,
"uvicon-photo" : "e60d" ,
"uvicon-volume-off-fill" : "e6c8" ,
"uvicon-volume-off" : "e6bd" ,
"uvicon-volume-fill" : "e624" ,
"uvicon-volume" : "e605" ,
"uvicon-download" : "e670" ,
"uvicon-arrow-up-fill" : "e636" ,
"uvicon-arrow-down-fill" : "e638" ,
"uvicon-play-left-fill" : "e6ae" ,
"uvicon-play-right-fill" : "e6ad" ,
"uvicon-arrow-downward" : "e634" ,
"uvicon-arrow-leftward" : "e63b" ,
"uvicon-arrow-rightward" : "e644" ,
"uvicon-arrow-upward" : "e641" ,
"uvicon-arrow-down" : "e63e" ,
"uvicon-arrow-right" : "e63c" ,
"uvicon-arrow-left" : "e646" ,
"uvicon-arrow-up" : "e633" ,
"uvicon-skip-back-left" : "e6c5" ,
"uvicon-skip-forward-right" : "e61f" ,
"uvicon-arrow-left-double" : "e637" ,
"uvicon-man" : "e675" ,
"uvicon-woman" : "e626" ,
"uvicon-en" : "e6b8" ,
"uvicon-twitte" : "e607" ,
"uvicon-twitter-circle-fill" : "e6cf"
} ;
const props$4 = {
props : {
// 图标类名
name : {
type : String ,
default : ""
} ,
// 图标颜色,可接受主题色
color : {
type : String ,
default : "#606266"
} ,
// 字体大小, 单位px
size : {
type : [ String , Number ] ,
default : "16px"
} ,
// 是否显示粗体
bold : {
type : Boolean ,
default : false
} ,
// 点击图标的时候传递事件出去的index( 用于区分点击了哪一个)
index : {
type : [ String , Number ] ,
default : null
} ,
// 触摸图标时的类名
hoverClass : {
type : String ,
default : ""
} ,
// 自定义扩展前缀,方便用户扩展自己的图标库
customPrefix : {
type : String ,
default : "uvicon"
} ,
// 图标右边或者下面的文字
label : {
type : [ String , Number ] ,
default : ""
} ,
// label的位置, 只能右边或者下边
labelPos : {
type : String ,
default : "right"
} ,
// label的大小
labelSize : {
type : [ String , Number ] ,
default : "15px"
} ,
// label的颜色
labelColor : {
type : String ,
default : "#606266"
} ,
// label与图标的距离
space : {
type : [ String , Number ] ,
default : "3px"
} ,
// 图片的mode
imgMode : {
type : String ,
default : "aspectFit"
} ,
// 用于显示图片小图标时,图片的宽度
width : {
type : [ String , Number ] ,
default : ""
} ,
// 用于显示图片小图标时,图片的高度
height : {
type : [ String , Number ] ,
default : ""
} ,
// 用于解决某些情况下,让图标垂直居中的用途
top : {
type : [ String , Number ] ,
default : 0
} ,
// 是否阻止事件传播
stop : {
type : Boolean ,
default : false
} ,
... ( _f = ( _e2 = uni . $uv ) == null ? void 0 : _e2 . props ) == null ? void 0 : _f . icon
}
} ;
2024-07-09 10:55:32 +00:00
const _export _sfc = ( sfc , props2 ) => {
const target = sfc . _ _vccOpts || sfc ;
for ( const [ key , val ] of props2 ) {
target [ key ] = val ;
}
return target ;
} ;
const _sfc _main$8 = {
2024-07-09 09:36:30 +00:00
name : "uv-icon" ,
emits : [ "click" ] ,
mixins : [ mpMixin , mixin , props$4 ] ,
data ( ) {
return {
colorType : [
"primary" ,
"success" ,
"info" ,
"error" ,
"warning"
]
} ;
} ,
computed : {
uClasses ( ) {
let classes = [ ] ;
classes . push ( this . customPrefix ) ;
classes . push ( this . customPrefix + "-" + this . name ) ;
if ( this . color && this . colorType . includes ( this . color ) )
classes . push ( "uv-icon__icon--" + this . color ) ;
return classes ;
} ,
iconStyle ( ) {
let style = { } ;
style = {
fontSize : this . $uv . addUnit ( this . size ) ,
lineHeight : this . $uv . addUnit ( this . size ) ,
fontWeight : this . bold ? "bold" : "normal" ,
// 某些特殊情况需要设置一个到顶部的距离,才能更好的垂直居中
top : this . $uv . addUnit ( this . top )
} ;
if ( this . color && ! this . colorType . includes ( this . color ) )
style . color = this . color ;
return style ;
} ,
// 判断传入的name属性, 是否图片路径, 只要带有"/"均认为是图片形式
isImg ( ) {
const isBase64 = this . name . indexOf ( "data:" ) > - 1 && this . name . indexOf ( "base64" ) > - 1 ;
return this . name . indexOf ( "/" ) !== - 1 || isBase64 ;
} ,
imgStyle ( ) {
let style = { } ;
style . width = this . width ? this . $uv . addUnit ( this . width ) : this . $uv . addUnit ( this . size ) ;
style . height = this . height ? this . $uv . addUnit ( this . height ) : this . $uv . addUnit ( this . size ) ;
return style ;
} ,
// 通过图标名,查找对应的图标
icon ( ) {
const code2 = icons [ "uvicon-" + this . name ] ;
return code2 ? unescape ( ` %u ${ code2 } ` ) : [ "uvicon" ] . indexOf ( this . customPrefix ) > - 1 ? this . name : "" ;
}
} ,
methods : {
clickHandler ( e2 ) {
this . $emit ( "click" , this . index ) ;
this . stop && this . preventEvent ( e2 ) ;
}
}
} ;
function _sfc _render$5 ( _ctx , _cache , $props , $setup , $data , $options ) {
return vue . openBlock ( ) , vue . createElementBlock (
"view" ,
{
class : vue . normalizeClass ( [ "uv-icon" , [ "uv-icon--" + _ctx . labelPos ] ] ) ,
onClick : _cache [ 0 ] || ( _cache [ 0 ] = ( ... args ) => $options . clickHandler && $options . clickHandler ( ... args ) )
} ,
[
$options . isImg ? ( vue . openBlock ( ) , vue . createElementBlock ( "image" , {
key : 0 ,
class : "uv-icon__img" ,
src : _ctx . name ,
mode : _ctx . imgMode ,
style : vue . normalizeStyle ( [ $options . imgStyle , _ctx . $uv . addStyle ( _ctx . customStyle ) ] )
} , null , 12 , [ "src" , "mode" ] ) ) : ( vue . openBlock ( ) , vue . createElementBlock ( "text" , {
key : 1 ,
class : vue . normalizeClass ( [ "uv-icon__icon" , $options . uClasses ] ) ,
style : vue . normalizeStyle ( [ $options . iconStyle , _ctx . $uv . addStyle ( _ctx . customStyle ) ] ) ,
"hover-class" : _ctx . hoverClass
} , vue . toDisplayString ( $options . icon ) , 15 , [ "hover-class" ] ) ) ,
vue . createCommentVNode ( ' 这里进行空字符串判断, 如果仅仅是v-if="label", 可能会出现传递0的时候, 结果也无法显示 ' ) ,
_ctx . label !== "" ? ( vue . openBlock ( ) , vue . createElementBlock (
"text" ,
{
key : 2 ,
class : "uv-icon__label" ,
style : vue . normalizeStyle ( {
color : _ctx . labelColor ,
fontSize : _ctx . $uv . addUnit ( _ctx . labelSize ) ,
marginLeft : _ctx . labelPos == "right" ? _ctx . $uv . addUnit ( _ctx . space ) : 0 ,
marginTop : _ctx . labelPos == "bottom" ? _ctx . $uv . addUnit ( _ctx . space ) : 0 ,
marginRight : _ctx . labelPos == "left" ? _ctx . $uv . addUnit ( _ctx . space ) : 0 ,
marginBottom : _ctx . labelPos == "top" ? _ctx . $uv . addUnit ( _ctx . space ) : 0
} )
} ,
vue . toDisplayString ( _ctx . label ) ,
5
/* TEXT, STYLE */
) ) : vue . createCommentVNode ( "v-if" , true )
] ,
2
/* CLASS */
) ;
}
2024-07-09 10:55:32 +00:00
const _ _easycom _0$2 = /* @__PURE__ */ _export _sfc ( _sfc _main$8 , [ [ "render" , _sfc _render$5 ] , [ "__scopeId" , "data-v-b7a6dd5d" ] , [ "__file" , "D:/WebstormProjects/oa-base/uni_modules/uv-icon/components/uv-icon/uv-icon.vue" ] ] ) ;
2024-07-09 09:36:30 +00:00
function colorGradient ( startColor = "rgb(0, 0, 0)" , endColor = "rgb(255, 255, 255)" , step = 10 ) {
const startRGB = hexToRgb ( startColor , false ) ;
const startR = startRGB [ 0 ] ;
const startG = startRGB [ 1 ] ;
const startB = startRGB [ 2 ] ;
const endRGB = hexToRgb ( endColor , false ) ;
const endR = endRGB [ 0 ] ;
const endG = endRGB [ 1 ] ;
const endB = endRGB [ 2 ] ;
const sR = ( endR - startR ) / step ;
const sG = ( endG - startG ) / step ;
const sB = ( endB - startB ) / step ;
const colorArr = [ ] ;
for ( let i2 = 0 ; i2 < step ; i2 ++ ) {
let hex = rgbToHex ( ` rgb( ${ Math . round ( sR * i2 + startR ) } , ${ Math . round ( sG * i2 + startG ) } , ${ Math . round ( sB * i2 + startB ) } ) ` ) ;
if ( i2 === 0 )
hex = rgbToHex ( startColor ) ;
if ( i2 === step - 1 )
hex = rgbToHex ( endColor ) ;
colorArr . push ( hex ) ;
}
return colorArr ;
}
function hexToRgb ( sColor , str = true ) {
const reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/ ;
sColor = String ( sColor ) . toLowerCase ( ) ;
if ( sColor && reg . test ( sColor ) ) {
if ( sColor . length === 4 ) {
let sColorNew = "#" ;
for ( let i2 = 1 ; i2 < 4 ; i2 += 1 ) {
sColorNew += sColor . slice ( i2 , i2 + 1 ) . concat ( sColor . slice ( i2 , i2 + 1 ) ) ;
}
sColor = sColorNew ;
}
const sColorChange = [ ] ;
for ( let i2 = 1 ; i2 < 7 ; i2 += 2 ) {
sColorChange . push ( parseInt ( ` 0x ${ sColor . slice ( i2 , i2 + 2 ) } ` ) ) ;
}
if ( ! str ) {
return sColorChange ;
}
return ` rgb( ${ sColorChange [ 0 ] } , ${ sColorChange [ 1 ] } , ${ sColorChange [ 2 ] } ) ` ;
}
if ( /^(rgb|RGB)/ . test ( sColor ) ) {
const arr = sColor . replace ( /(?:\(|\)|rgb|RGB)*/g , "" ) . split ( "," ) ;
return arr . map ( ( val ) => Number ( val ) ) ;
}
return sColor ;
}
function rgbToHex ( rgb ) {
const _this = rgb ;
const reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/ ;
if ( /^(rgb|RGB)/ . test ( _this ) ) {
const aColor = _this . replace ( /(?:\(|\)|rgb|RGB)*/g , "" ) . split ( "," ) ;
let strHex = "#" ;
for ( let i2 = 0 ; i2 < aColor . length ; i2 ++ ) {
let hex = Number ( aColor [ i2 ] ) . toString ( 16 ) ;
hex = String ( hex ) . length == 1 ? ` ${ 0 } ${ hex } ` : hex ;
if ( hex === "0" ) {
hex += hex ;
}
strHex += hex ;
}
if ( strHex . length !== 7 ) {
strHex = _this ;
}
return strHex ;
}
if ( reg . test ( _this ) ) {
const aNum = _this . replace ( /#/ , "" ) . split ( "" ) ;
if ( aNum . length === 6 ) {
return _this ;
}
if ( aNum . length === 3 ) {
let numHex = "#" ;
for ( let i2 = 0 ; i2 < aNum . length ; i2 += 1 ) {
numHex += aNum [ i2 ] + aNum [ i2 ] ;
}
return numHex ;
}
} else {
return _this ;
}
}
const props$3 = {
props : {
// 是否显示组件
show : {
type : Boolean ,
default : true
} ,
// 颜色
color : {
type : String ,
default : "#909193"
} ,
// 提示文字颜色
textColor : {
type : String ,
default : "#909193"
} ,
// 文字和图标是否垂直排列
vertical : {
type : Boolean ,
default : false
} ,
// 模式选择, circle-圆形, spinner-花朵形, semicircle-半圆形
mode : {
type : String ,
default : "spinner"
} ,
// 图标大小, 单位默认px
size : {
type : [ String , Number ] ,
default : 24
} ,
// 文字大小
textSize : {
type : [ String , Number ] ,
default : 15
} ,
// 文字样式
textStyle : {
type : Object ,
default ( ) {
return { } ;
}
} ,
// 文字内容
text : {
type : [ String , Number ] ,
default : ""
} ,
// 动画模式 https://www.runoob.com/cssref/css3-pr-animation-timing-function.html
timingFunction : {
type : String ,
default : "linear"
} ,
// 动画执行周期时间
duration : {
type : [ String , Number ] ,
default : 1200
} ,
// mode=circle时的暗边颜色
inactiveColor : {
type : String ,
default : ""
} ,
... ( _h = ( _g = uni . $uv ) == null ? void 0 : _g . props ) == null ? void 0 : _h . loadingIcon
}
} ;
2024-07-09 10:55:32 +00:00
const _sfc _main$7 = {
2024-07-09 09:36:30 +00:00
name : "uv-loading-icon" ,
mixins : [ mpMixin , mixin , props$3 ] ,
data ( ) {
return {
// Array.form可以通过一个伪数组对象创建指定长度的数组
// https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array/from
array12 : Array . from ( {
length : 12
} ) ,
// 这里需要设置默认值为360, 否则在安卓nvue上, 会延迟一个duration周期后才执行
// 在iOS nvue上, 则会一开始默认执行两个周期的动画
aniAngel : 360 ,
// 动画旋转角度
webviewHide : false ,
// 监听webview的状态, 如果隐藏了页面, 则停止动画, 以免性能消耗
loading : false
// 是否运行中, 针对nvue使用
} ;
} ,
computed : {
// 当为circle类型时, 给其另外三边设置一个更轻一些的颜色
// 之所以需要这么做的原因是, 比如父组件传了color为红色, 那么需要另外的三个边为浅红色
// 而不能是固定的某一个其他颜色(因为这个固定的颜色可能浅蓝,导致效果没有那么细腻良好)
otherBorderColor ( ) {
const lightColor = colorGradient ( this . color , "#ffffff" , 100 ) [ 80 ] ;
if ( this . mode === "circle" ) {
return this . inactiveColor ? this . inactiveColor : lightColor ;
} else {
return "transparent" ;
}
}
} ,
watch : {
show ( n2 ) {
}
} ,
mounted ( ) {
this . init ( ) ;
} ,
methods : {
init ( ) {
setTimeout ( ( ) => {
this . show && this . addEventListenerToWebview ( ) ;
} , 20 ) ;
} ,
// 监听webview的显示与隐藏
addEventListenerToWebview ( ) {
const pages2 = getCurrentPages ( ) ;
const page2 = pages2 [ pages2 . length - 1 ] ;
const currentWebview = page2 . $getAppWebview ( ) ;
currentWebview . addEventListener ( "hide" , ( ) => {
this . webviewHide = true ;
} ) ;
currentWebview . addEventListener ( "show" , ( ) => {
this . webviewHide = false ;
} ) ;
}
}
} ;
function _sfc _render$4 ( _ctx , _cache , $props , $setup , $data , $options ) {
return _ctx . show ? ( vue . openBlock ( ) , vue . createElementBlock (
"view" ,
{
key : 0 ,
class : vue . normalizeClass ( [ "uv-loading-icon" , [ _ctx . vertical && "uv-loading-icon--vertical" ] ] ) ,
style : vue . normalizeStyle ( [ _ctx . $uv . addStyle ( _ctx . customStyle ) ] )
} ,
[
! $data . webviewHide ? ( vue . openBlock ( ) , vue . createElementBlock (
"view" ,
{
key : 0 ,
class : vue . normalizeClass ( [ "uv-loading-icon__spinner" , [ ` uv-loading-icon__spinner-- ${ _ctx . mode } ` ] ] ) ,
ref : "ani" ,
style : vue . normalizeStyle ( {
color : _ctx . color ,
width : _ctx . $uv . addUnit ( _ctx . size ) ,
height : _ctx . $uv . addUnit ( _ctx . size ) ,
borderTopColor : _ctx . color ,
borderBottomColor : $options . otherBorderColor ,
borderLeftColor : $options . otherBorderColor ,
borderRightColor : $options . otherBorderColor ,
"animation-duration" : ` ${ _ctx . duration } ms ` ,
"animation-timing-function" : _ctx . mode === "semicircle" || _ctx . mode === "circle" ? _ctx . timingFunction : ""
} )
} ,
[
_ctx . mode === "spinner" ? ( vue . openBlock ( true ) , vue . createElementBlock (
vue . Fragment ,
{ key : 0 } ,
vue . renderList ( $data . array12 , ( item , index2 ) => {
return vue . openBlock ( ) , vue . createElementBlock ( "view" , {
key : index2 ,
class : "uv-loading-icon__dot"
} ) ;
} ) ,
128
/* KEYED_FRAGMENT */
) ) : vue . createCommentVNode ( "v-if" , true )
] ,
6
/* CLASS, STYLE */
) ) : vue . createCommentVNode ( "v-if" , true ) ,
_ctx . text ? ( vue . openBlock ( ) , vue . createElementBlock (
"text" ,
{
key : 1 ,
class : "uv-loading-icon__text" ,
style : vue . normalizeStyle ( [ {
fontSize : _ctx . $uv . addUnit ( _ctx . textSize ) ,
color : _ctx . textColor
} , _ctx . $uv . addStyle ( _ctx . textStyle ) ] )
} ,
vue . toDisplayString ( _ctx . text ) ,
5
/* TEXT, STYLE */
) ) : vue . createCommentVNode ( "v-if" , true )
] ,
6
/* CLASS, STYLE */
) ) : vue . createCommentVNode ( "v-if" , true ) ;
}
2024-07-09 10:55:32 +00:00
const _ _easycom _0$1 = /* @__PURE__ */ _export _sfc ( _sfc _main$7 , [ [ "render" , _sfc _render$4 ] , [ "__scopeId" , "data-v-29b619ea" ] , [ "__file" , "D:/WebstormProjects/oa-base/uni_modules/uv-loading-icon/components/uv-loading-icon/uv-loading-icon.vue" ] ] ) ;
2024-07-09 09:36:30 +00:00
const props$2 = {
props : {
// 是否细边框
hairline : {
type : Boolean ,
default : true
} ,
// 按钮的预置样式, info, primary, error, warning, success
type : {
type : String ,
default : "info"
} ,
// 按钮尺寸, large, normal, small, mini
size : {
type : String ,
default : "normal"
} ,
// 按钮形状, circle( 两边为半圆) , square( 带圆角)
shape : {
type : String ,
default : "square"
} ,
// 按钮是否镂空
plain : {
type : Boolean ,
default : false
} ,
// 是否禁止状态
disabled : {
type : Boolean ,
default : false
} ,
// 是否加载中
loading : {
type : Boolean ,
default : false
} ,
// 加载中提示文字
loadingText : {
type : [ String , Number ] ,
default : ""
} ,
// 加载状态图标类型
loadingMode : {
type : String ,
default : "spinner"
} ,
// 加载图标大小
loadingSize : {
type : [ String , Number ] ,
default : 14
} ,
// 开放能力, 具体请看uniapp稳定关于button组件部分说明
// https://uniapp.dcloud.io/component/button
openType : {
type : String ,
default : ""
} ,
// 用于 <form> 组件,点击分别会触发 <form> 组件的 submit/reset 事件
// 取值为submit( 提交表单) , reset( 重置表单)
formType : {
type : String ,
default : ""
} ,
// 打开 APP 时,向 APP 传递的参数, open-type=launchApp时有效
// 只微信小程序、QQ小程序有效
appParameter : {
type : String ,
default : ""
} ,
// 指定是否阻止本节点的祖先节点出现点击态,微信小程序有效
hoverStopPropagation : {
type : Boolean ,
default : true
} ,
// 指定返回用户信息的语言, zh_CN 简体中文, zh_TW 繁体中文, en 英文。只微信小程序有效
lang : {
type : String ,
default : "en"
} ,
// 会话来源, open-type="contact"时有效。只微信小程序有效
sessionFrom : {
type : String ,
default : ""
} ,
// 会话内消息卡片标题, open-type="contact"时有效
// 默认当前标题,只微信小程序有效
sendMessageTitle : {
type : String ,
default : ""
} ,
// 会话内消息卡片点击跳转小程序路径, open-type="contact"时有效
// 默认当前分享路径,只微信小程序有效
sendMessagePath : {
type : String ,
default : ""
} ,
// 会话内消息卡片图片, open-type="contact"时有效
// 默认当前页面截图,只微信小程序有效
sendMessageImg : {
type : String ,
default : ""
} ,
// 是否显示会话内消息卡片,设置此参数为 true, 用户进入客服会话会在右下角显示"可能要发送的小程序"提示,
// 用户点击后可以快速发送小程序消息, open-type="contact"时有效
showMessageCard : {
type : Boolean ,
default : true
} ,
// 额外传参参数, 用于小程序的data-xxx属性, 通过target.dataset.name获取
dataName : {
type : String ,
default : ""
} ,
// 节流,一定时间内只能触发一次
throttleTime : {
type : [ String , Number ] ,
default : 0
} ,
// 按住后多久出现点击态,单位毫秒
hoverStartTime : {
type : [ String , Number ] ,
default : 0
} ,
// 手指松开后点击态保留时间,单位毫秒
hoverStayTime : {
type : [ String , Number ] ,
default : 200
} ,
// 按钮文字, 之所以通过props传入, 是因为slot传入的话
// nvue中无法控制文字的样式
text : {
type : [ String , Number ] ,
default : ""
} ,
// 按钮图标
icon : {
type : String ,
default : ""
} ,
// 按钮图标大小
iconSize : {
type : [ String , Number ] ,
default : ""
} ,
// 按钮图标颜色
iconColor : {
type : String ,
default : "#000000"
} ,
// 按钮颜色, 支持传入linear-gradient渐变色
color : {
type : String ,
default : ""
} ,
// 自定义按钮文本样式
customTextStyle : {
type : [ Object , String ] ,
default : ""
} ,
... ( _j = ( _i = uni . $uv ) == null ? void 0 : _i . props ) == null ? void 0 : _j . button
}
} ;
2024-07-09 10:55:32 +00:00
const _sfc _main$6 = {
2024-07-09 09:36:30 +00:00
name : "uv-button" ,
mixins : [ mpMixin , mixin , props$2 ] ,
emits : [ "click" ] ,
data ( ) {
return { } ;
} ,
computed : {
// 生成bem风格的类名
bemClass ( ) {
if ( ! this . color ) {
return this . bem (
"button" ,
[ "type" , "shape" , "size" ] ,
[ "disabled" , "plain" , "hairline" ]
) ;
} else {
return this . bem (
"button" ,
[ "shape" , "size" ] ,
[ "disabled" , "plain" , "hairline" ]
) ;
}
} ,
loadingColor ( ) {
if ( this . plain ) {
return this . color ? this . color : "#3c9cff" ;
}
if ( this . type === "info" ) {
return "#c9c9c9" ;
}
return "rgb(200, 200, 200)" ;
} ,
iconColorCom ( ) {
if ( this . iconColor )
return this . iconColor ;
if ( this . plain ) {
return this . color ? this . color : this . type ;
} else {
return this . type === "info" ? "#000000" : "#ffffff" ;
}
} ,
baseColor ( ) {
let style = { } ;
if ( this . color ) {
style . color = this . plain ? this . color : "white" ;
if ( ! this . plain ) {
style [ "background-color" ] = this . color ;
}
if ( this . color . indexOf ( "gradient" ) !== - 1 ) {
style . borderTopWidth = 0 ;
style . borderRightWidth = 0 ;
style . borderBottomWidth = 0 ;
style . borderLeftWidth = 0 ;
if ( ! this . plain ) {
style . backgroundImage = this . color ;
}
} else {
style . borderColor = this . color ;
style . borderWidth = "1px" ;
style . borderStyle = "solid" ;
}
}
return style ;
} ,
// nvue版本按钮的字体不会继承父组件的颜色, 需要对每一个text组件进行单独的设置
nvueTextStyle ( ) {
let style = { } ;
if ( this . type === "info" ) {
style . color = "#323233" ;
}
if ( this . color ) {
style . color = this . plain ? this . color : "white" ;
}
style . fontSize = this . textSize + "px" ;
return style ;
} ,
// 字体大小
textSize ( ) {
let fontSize = 14 , { size } = this ;
if ( size === "large" )
fontSize = 16 ;
if ( size === "normal" )
fontSize = 14 ;
if ( size === "small" )
fontSize = 12 ;
if ( size === "mini" )
fontSize = 10 ;
return fontSize ;
} ,
// 设置图标大小
getIconSize ( ) {
const size = this . iconSize ? this . iconSize : this . textSize * 1.35 ;
return this . $uv . addUnit ( size ) ;
} ,
// 设置外层盒子的宽度,其他样式不需要
btnWrapperStyle ( ) {
const style = { } ;
const customStyle = this . $uv . addStyle ( this . customStyle ) ;
if ( customStyle . width )
style . width = customStyle . width ;
return style ;
}
} ,
methods : {
clickHandler ( ) {
if ( ! this . disabled && ! this . loading ) {
throttle ( ( ) => {
this . $emit ( "click" ) ;
} , this . throttleTime ) ;
}
}
}
} ;
function _sfc _render$3 ( _ctx , _cache , $props , $setup , $data , $options ) {
const _component _uv _loading _icon = resolveEasycom ( vue . resolveDynamicComponent ( "uv-loading-icon" ) , _ _easycom _0$1 ) ;
const _component _uv _icon = resolveEasycom ( vue . resolveDynamicComponent ( "uv-icon" ) , _ _easycom _0$2 ) ;
return vue . openBlock ( ) , vue . createElementBlock (
"view" ,
{
class : "uv-button-wrapper" ,
style : vue . normalizeStyle ( [ $options . btnWrapperStyle ] )
} ,
[
vue . createElementVNode ( "button" , {
"hover-start-time" : Number ( _ctx . hoverStartTime ) ,
"hover-stay-time" : Number ( _ctx . hoverStayTime ) ,
"form-type" : _ctx . formType ,
"open-type" : _ctx . openType ,
"app-parameter" : _ctx . appParameter ,
"hover-stop-propagation" : _ctx . hoverStopPropagation ,
"send-message-title" : _ctx . sendMessageTitle ,
"send-message-path" : _ctx . sendMessagePath ,
lang : _ctx . lang ,
"data-name" : _ctx . dataName ,
"session-from" : _ctx . sessionFrom ,
"send-message-img" : _ctx . sendMessageImg ,
"show-message-card" : _ctx . showMessageCard ,
"hover-class" : ! _ctx . disabled && ! _ctx . loading ? "uv-button--active" : "" ,
class : vue . normalizeClass ( [ "uv-button uv-reset-button" , $options . bemClass ] ) ,
style : vue . normalizeStyle ( [ $options . baseColor , _ctx . $uv . addStyle ( _ctx . customStyle ) ] ) ,
onClick : _cache [ 0 ] || ( _cache [ 0 ] = ( ... args ) => $options . clickHandler && $options . clickHandler ( ... args ) )
} , [
_ctx . loading ? ( vue . openBlock ( ) , vue . createElementBlock (
vue . Fragment ,
{ key : 0 } ,
[
vue . createVNode ( _component _uv _loading _icon , {
mode : _ctx . loadingMode ,
size : _ctx . loadingSize * 1.15 ,
color : $options . loadingColor
} , null , 8 , [ "mode" , "size" , "color" ] ) ,
vue . createElementVNode (
"text" ,
{
class : "uv-button__loading-text" ,
style : vue . normalizeStyle ( [
{ fontSize : $options . textSize + "px" } ,
_ctx . $uv . addStyle ( _ctx . customTextStyle )
] )
} ,
vue . toDisplayString ( _ctx . loadingText || _ctx . text ) ,
5
/* TEXT, STYLE */
)
] ,
64
/* STABLE_FRAGMENT */
) ) : ( vue . openBlock ( ) , vue . createElementBlock (
vue . Fragment ,
{ key : 1 } ,
[
_ctx . icon ? ( vue . openBlock ( ) , vue . createBlock ( _component _uv _icon , {
key : 0 ,
name : _ctx . icon ,
color : $options . iconColorCom ,
size : $options . getIconSize ,
customStyle : { marginRight : "2px" }
} , null , 8 , [ "name" , "color" , "size" ] ) ) : vue . createCommentVNode ( "v-if" , true ) ,
vue . renderSlot ( _ctx . $slots , "default" , { } , ( ) => [
vue . createElementVNode (
"text" ,
{
class : "uv-button__text" ,
style : vue . normalizeStyle ( [
{ fontSize : $options . textSize + "px" } ,
_ctx . $uv . addStyle ( _ctx . customTextStyle )
] )
} ,
vue . toDisplayString ( _ctx . text ) ,
5
/* TEXT, STYLE */
)
] , true ) ,
vue . renderSlot ( _ctx . $slots , "suffix" , { } , void 0 , true )
] ,
64
/* STABLE_FRAGMENT */
) )
] , 14 , [ "hover-start-time" , "hover-stay-time" , "form-type" , "open-type" , "app-parameter" , "hover-stop-propagation" , "send-message-title" , "send-message-path" , "lang" , "data-name" , "session-from" , "send-message-img" , "show-message-card" , "hover-class" ] )
] ,
4
/* STYLE */
) ;
}
2024-07-09 10:55:32 +00:00
const _ _easycom _1 = /* @__PURE__ */ _export _sfc ( _sfc _main$6 , [ [ "render" , _sfc _render$3 ] , [ "__scopeId" , "data-v-ae8e42c7" ] , [ "__file" , "D:/WebstormProjects/oa-base/uni_modules/uv-button/components/uv-button/uv-button.vue" ] ] ) ;
2024-07-09 09:36:30 +00:00
class MPAnimation {
constructor ( options , _this ) {
this . options = options ;
this . animation = uni . createAnimation ( {
... options
} ) ;
this . currentStepAnimates = { } ;
this . next = 0 ;
this . $ = _this ;
}
_nvuePushAnimates ( type , args ) {
let aniObj = this . currentStepAnimates [ this . next ] ;
let styles = { } ;
if ( ! aniObj ) {
styles = {
styles : { } ,
config : { }
} ;
} else {
styles = aniObj ;
}
if ( animateTypes1 . includes ( type ) ) {
if ( ! styles . styles . transform ) {
styles . styles . transform = "" ;
}
let unit = "" ;
if ( type === "rotate" ) {
unit = "deg" ;
}
styles . styles . transform += ` ${ type } ( ${ args + unit } ) ` ;
} else {
styles . styles [ type ] = ` ${ args } ` ;
}
this . currentStepAnimates [ this . next ] = styles ;
}
_animateRun ( styles = { } , config2 = { } ) {
let ref = this . $ . $refs [ "ani" ] . ref ;
if ( ! ref )
return ;
return new Promise ( ( resolve , reject ) => {
nvueAnimation . transition ( ref , {
styles ,
... config2
} , ( res ) => {
resolve ( ) ;
} ) ;
} ) ;
}
_nvueNextAnimate ( animates , step = 0 , fn ) {
let obj = animates [ step ] ;
if ( obj ) {
let {
styles ,
config : config2
} = obj ;
this . _animateRun ( styles , config2 ) . then ( ( ) => {
step += 1 ;
this . _nvueNextAnimate ( animates , step , fn ) ;
} ) ;
} else {
this . currentStepAnimates = { } ;
typeof fn === "function" && fn ( ) ;
this . isEnd = true ;
}
}
step ( config2 = { } ) {
this . animation . step ( config2 ) ;
return this ;
}
run ( fn ) {
this . $ . animationData = this . animation . export ( ) ;
this . $ . timer = setTimeout ( ( ) => {
typeof fn === "function" && fn ( ) ;
} , this . $ . durationTime ) ;
}
}
const animateTypes1 = [
"matrix" ,
"matrix3d" ,
"rotate" ,
"rotate3d" ,
"rotateX" ,
"rotateY" ,
"rotateZ" ,
"scale" ,
"scale3d" ,
"scaleX" ,
"scaleY" ,
"scaleZ" ,
"skew" ,
"skewX" ,
"skewY" ,
"translate" ,
"translate3d" ,
"translateX" ,
"translateY" ,
"translateZ"
] ;
const animateTypes2 = [ "opacity" , "backgroundColor" ] ;
const animateTypes3 = [ "width" , "height" , "left" , "right" , "top" , "bottom" ] ;
animateTypes1 . concat ( animateTypes2 , animateTypes3 ) . forEach ( ( type ) => {
MPAnimation . prototype [ type ] = function ( ... args ) {
this . animation [ type ] ( ... args ) ;
return this ;
} ;
} ) ;
function createAnimation ( option , _this ) {
if ( ! _this )
return ;
clearTimeout ( _this . timer ) ;
return new MPAnimation ( option , _this ) ;
}
2024-07-09 10:55:32 +00:00
const _sfc _main$5 = {
2024-07-09 09:36:30 +00:00
name : "uv-transition" ,
mixins : [ mpMixin , mixin ] ,
emits : [ "click" , "change" ] ,
props : {
// 是否展示组件
show : {
type : Boolean ,
default : false
} ,
// 使用的动画模式
mode : {
type : [ Array , String , null ] ,
default ( ) {
return "fade" ;
}
} ,
// 动画的执行时间, 单位ms
duration : {
type : [ String , Number ] ,
default : 300
} ,
// 使用的动画过渡函数
timingFunction : {
type : String ,
default : "ease-out"
} ,
customClass : {
type : String ,
default : ""
} ,
// nvue模式下 是否直接显示, 在uv-list等cell下面使用就需要设置
cellChild : {
type : Boolean ,
default : false
}
} ,
data ( ) {
return {
isShow : false ,
transform : "" ,
opacity : 1 ,
animationData : { } ,
durationTime : 300 ,
config : { }
} ;
} ,
watch : {
show : {
handler ( newVal ) {
if ( newVal ) {
this . open ( ) ;
} else {
if ( this . isShow ) {
this . close ( ) ;
}
}
} ,
immediate : true
}
} ,
computed : {
// 初始化动画条件
transformStyles ( ) {
const style = {
transform : this . transform ,
opacity : this . opacity ,
... this . $uv . addStyle ( this . customStyle ) ,
"transition-duration" : ` ${ this . duration / 1e3 } s `
} ;
return this . $uv . addStyle ( style , "string" ) ;
}
} ,
created ( ) {
this . config = {
duration : this . duration ,
timingFunction : this . timingFunction ,
transformOrigin : "50% 50%" ,
delay : 0
} ;
this . durationTime = this . duration ;
} ,
methods : {
/ * *
* ref 触发 初始化动画
* /
init ( obj = { } ) {
if ( obj . duration ) {
this . durationTime = obj . duration ;
}
this . animation = createAnimation ( Object . assign ( this . config , obj ) , this ) ;
} ,
/ * *
* 点击组件触发回调
* /
onClick ( ) {
this . $emit ( "click" , {
detail : this . isShow
} ) ;
} ,
/ * *
* ref 触发 动画分组
* @ param { Object } obj
* /
step ( obj , config2 = { } ) {
if ( ! this . animation )
return ;
for ( let i2 in obj ) {
try {
if ( typeof obj [ i2 ] === "object" ) {
this . animation [ i2 ] ( ... obj [ i2 ] ) ;
} else {
this . animation [ i2 ] ( obj [ i2 ] ) ;
}
} catch ( e2 ) {
formatAppLog ( "error" , "at uni_modules/uv-transition/components/uv-transition/uv-transition.vue:166" , ` 方法 ${ i2 } 不存在 ` ) ;
}
}
this . animation . step ( config2 ) ;
return this ;
} ,
/ * *
* ref 触发 执行动画
* /
run ( fn ) {
if ( ! this . animation )
return ;
this . animation . run ( fn ) ;
} ,
// 开始过度动画
open ( ) {
clearTimeout ( this . timer ) ;
this . transform = "" ;
this . isShow = true ;
let { opacity , transform } = this . styleInit ( false ) ;
if ( typeof opacity !== "undefined" ) {
this . opacity = opacity ;
}
this . transform = transform ;
this . $nextTick ( ( ) => {
this . timer = setTimeout ( ( ) => {
this . animation = createAnimation ( this . config , this ) ;
this . tranfromInit ( false ) . step ( ) ;
this . animation . run ( ) ;
this . $emit ( "change" , {
detail : this . isShow
} ) ;
} , 20 ) ;
} ) ;
} ,
// 关闭过渡动画
close ( type ) {
if ( ! this . animation )
return ;
this . tranfromInit ( true ) . step ( ) . run ( ( ) => {
this . isShow = false ;
this . animationData = null ;
this . animation = null ;
let { opacity , transform } = this . styleInit ( false ) ;
this . opacity = opacity || 1 ;
this . transform = transform ;
this . $emit ( "change" , {
detail : this . isShow
} ) ;
} ) ;
} ,
// 处理动画开始前的默认样式
styleInit ( type ) {
let styles = {
transform : ""
} ;
let buildStyle = ( type2 , mode ) => {
if ( mode === "fade" ) {
styles . opacity = this . animationType ( type2 ) [ mode ] ;
} else {
styles . transform += this . animationType ( type2 ) [ mode ] + " " ;
}
} ;
if ( typeof this . mode === "string" ) {
buildStyle ( type , this . mode ) ;
} else {
this . mode . forEach ( ( mode ) => {
buildStyle ( type , mode ) ;
} ) ;
}
return styles ;
} ,
// 处理内置组合动画
tranfromInit ( type ) {
let buildTranfrom = ( type2 , mode ) => {
let aniNum = null ;
if ( mode === "fade" ) {
aniNum = type2 ? 0 : 1 ;
} else {
aniNum = type2 ? "-100%" : "0" ;
if ( mode === "zoom-in" ) {
aniNum = type2 ? 0.8 : 1 ;
}
if ( mode === "zoom-out" ) {
aniNum = type2 ? 1.2 : 1 ;
}
if ( mode === "slide-right" ) {
aniNum = type2 ? "100%" : "0" ;
}
if ( mode === "slide-bottom" ) {
aniNum = type2 ? "100%" : "0" ;
}
}
this . animation [ this . animationMode ( ) [ mode ] ] ( aniNum ) ;
} ;
if ( typeof this . mode === "string" ) {
buildTranfrom ( type , this . mode ) ;
} else {
this . mode . forEach ( ( mode ) => {
buildTranfrom ( type , mode ) ;
} ) ;
}
return this . animation ;
} ,
animationType ( type ) {
return {
fade : type ? 1 : 0 ,
"slide-top" : ` translateY( ${ type ? "0" : "-100%" } ) ` ,
"slide-right" : ` translateX( ${ type ? "0" : "100%" } ) ` ,
"slide-bottom" : ` translateY( ${ type ? "0" : "100%" } ) ` ,
"slide-left" : ` translateX( ${ type ? "0" : "-100%" } ) ` ,
"zoom-in" : ` scaleX( ${ type ? 1 : 0.8 } ) scaleY( ${ type ? 1 : 0.8 } ) ` ,
"zoom-out" : ` scaleX( ${ type ? 1 : 1.2 } ) scaleY( ${ type ? 1 : 1.2 } ) `
} ;
} ,
// 内置动画类型与实际动画对应字典
animationMode ( ) {
return {
fade : "opacity" ,
"slide-top" : "translateY" ,
"slide-right" : "translateX" ,
"slide-bottom" : "translateY" ,
"slide-left" : "translateX" ,
"zoom-in" : "scale" ,
"zoom-out" : "scale"
} ;
} ,
// 驼峰转中横线
toLine ( name ) {
return name . replace ( /([A-Z])/g , "-$1" ) . toLowerCase ( ) ;
}
}
} ;
function _sfc _render$2 ( _ctx , _cache , $props , $setup , $data , $options ) {
return $data . isShow ? ( vue . openBlock ( ) , vue . createElementBlock ( "view" , {
key : 0 ,
ref : "ani" ,
animation : $data . animationData ,
class : vue . normalizeClass ( $props . customClass ) ,
style : vue . normalizeStyle ( $options . transformStyles ) ,
onClick : _cache [ 0 ] || ( _cache [ 0 ] = ( ... args ) => $options . onClick && $options . onClick ( ... args ) )
} , [
vue . renderSlot ( _ctx . $slots , "default" )
] , 14 , [ "animation" ] ) ) : vue . createCommentVNode ( "v-if" , true ) ;
}
2024-07-09 10:55:32 +00:00
const _ _easycom _0 = /* @__PURE__ */ _export _sfc ( _sfc _main$5 , [ [ "render" , _sfc _render$2 ] , [ "__file" , "D:/WebstormProjects/oa-base/uni_modules/uv-transition/components/uv-transition/uv-transition.vue" ] ] ) ;
2024-07-09 09:36:30 +00:00
const props$1 = {
props : {
// 是否显示遮罩
show : {
type : Boolean ,
default : false
} ,
// 层级z-index
zIndex : {
type : [ String , Number ] ,
default : 10070
} ,
// 遮罩的过渡时间, 单位为ms
duration : {
type : [ String , Number ] ,
default : 300
} ,
// 不透明度值, 当做rgba的第四个参数
opacity : {
type : [ String , Number ] ,
default : 0.5
} ,
... ( _l = ( _k = uni . $uv ) == null ? void 0 : _k . props ) == null ? void 0 : _l . overlay
}
} ;
2024-07-09 10:55:32 +00:00
const _sfc _main$4 = {
2024-07-09 09:36:30 +00:00
name : "uv-overlay" ,
emits : [ "click" ] ,
mixins : [ mpMixin , mixin , props$1 ] ,
watch : {
show ( newVal ) {
}
} ,
computed : {
overlayStyle ( ) {
const style = {
position : "fixed" ,
top : 0 ,
left : 0 ,
right : 0 ,
zIndex : this . zIndex ,
bottom : 0 ,
"background-color" : ` rgba(0, 0, 0, ${ this . opacity } ) `
} ;
return this . $uv . deepMerge ( style , this . $uv . addStyle ( this . customStyle ) ) ;
}
} ,
methods : {
clickHandler ( ) {
this . $emit ( "click" ) ;
} ,
clear ( ) {
}
}
} ;
function _sfc _render$1 ( _ctx , _cache , $props , $setup , $data , $options ) {
const _component _uv _transition = resolveEasycom ( vue . resolveDynamicComponent ( "uv-transition" ) , _ _easycom _0 ) ;
return vue . openBlock ( ) , vue . createBlock ( _component _uv _transition , {
show : _ctx . show ,
mode : "fade" ,
"custom-class" : "uv-overlay" ,
duration : _ctx . duration ,
"custom-style" : $options . overlayStyle ,
onClick : $options . clickHandler ,
onTouchmove : vue . withModifiers ( $options . clear , [ "stop" , "prevent" ] )
} , {
default : vue . withCtx ( ( ) => [
vue . renderSlot ( _ctx . $slots , "default" , { } , void 0 , true )
] ) ,
_ : 3
/* FORWARDED */
} , 8 , [ "show" , "duration" , "custom-style" , "onClick" , "onTouchmove" ] ) ;
}
2024-07-09 10:55:32 +00:00
const _ _easycom _2 = /* @__PURE__ */ _export _sfc ( _sfc _main$4 , [ [ "render" , _sfc _render$1 ] , [ "__scopeId" , "data-v-7303e1aa" ] , [ "__file" , "D:/WebstormProjects/oa-base/uni_modules/uv-overlay/components/uv-overlay/uv-overlay.vue" ] ] ) ;
2024-07-09 09:36:30 +00:00
const props = {
props : {
// 页面文字提示
tips : {
type : String ,
default : "哎呀,网络信号丢失"
} ,
// 一个z-index值, 用于设置没有网络这个组件的层次, 因为页面可能会有其他定位的元素层级过高, 导致此组件被覆盖
zIndex : {
type : [ String , Number ] ,
default : ""
} ,
// image 没有网络的图片提示
image : {
type : String ,
default : " data : image / png ; base64 , iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAYAAAB5fY51AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAABLKADAAQAAAABAAABLAAAAADYYILnAABAAElEQVR4Ae29CZhkV3kefNeq6m2W7tn3nl0aCbHIAgmQPGB + sLCNzSID9g9PYrAf57d / + 4 + DiW0cy8QBJ06c2In / PLFDHJ78 + MGCGNsYgyxwIwktwEijAc1ohtmnZ + 2 Z7p5eq6vu9r / vuXWrq25VdVV1V3dXVX9Hmj73nv285963vvOd75yraeIEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQEAQEAUFAEBAEBAFBQBAQBAQBQUAQaD8E9PbrkvRopSMwMBBYRs + 5 O / yJS68cPnzYXel4tFP / jXbqjPRFEAiCQNe6Bw / 6 gdFn9Oy9Q90LLG2DgBBW2wyldIQIPPPCte2a5q3jtR + 4 ff / 4 wuBuXotrDwSEsNpjHKUXQODppy + udYJMEUEZgbd94DvnNwlA7YGAEFZ7jOOK78Xp06eTTkq7sxwQhmXuf / 754 VXl4iSstRAQwmqt8ZLWlkHg0UcD49qYfUjXfLtMtOZ7npExJu4iqZWLl7DWQUAIq3XGSlpaAYHD77q8xwuCOSUoXw8Sl0eMux977DGzQjES3AIICGG1wCBJEysj8PXnz230XXdr5RQFMYbRvWnv6w8UhMhliyGwYghr4Pjg3oEXL34ey9zyC9tiD2ml5h47dr1LN7S6CMjz / A3PvHh1Z6UyJby5EVgRhKUe7Kz / JU0LfvrJo5f + Y3MPibSuFgQGBgasYSd9l6GDsup0WS / T / 9 RTp9fXmU2SNwECdQ92E7S57iaMeJnPQLK6ixkDLfjlb7546RfrLkQyNBcC3dsP6oHWMd9G + V3JgwPHh7rnm1 / yLQ8CbU9Y33zp0j + nZFUMb / DHmB7 + SHGY3LUKAk8cObtD00xlHDrfNge + Z2ozU3c9dvx4Yr5lSL6lR6CtCWvg6OAPw9z538ZhhZRl6XrwhW8du1KX / iNejtwvPQIDR8 + vSRqJ / obU7GupjdNdh2gW0ZDypJBFR6BtB2rg2OVtuub9JcmpHIpBoK1xfffLzx4f7C0XL2HNiYDp6bs9z23Ypn1fC1Y / 9 PCFDc3ZW2lVHIG2JKzTp4Ok7nv / G6Q054MIvda + bNb74pEgKGtwGAdL7pcfAa8vOKEZ2kyjWuLr7uDh + / q v N 6 o 8 K W d x E W h L w r o y e e k / g 4 z u q w U 6 k N r h y Z c u / U k t a S X N 8 i N w u L 9 / R u v V X t J 9 P b P Q 1 v h m c P 6 t 9 + 4 7 u 9 B y J P / S I d B 2 h D V w 9 M J H Q F Y f r Q d C p h 8 4 e v F X 6 8 k j a Z c P A Z J W w j M X R F p J 2 z r 9 1 t f u v r h 8 v Z C a 5 4 N A 2 x G W r u n v m g 8 Q W C J / N 4 i r 7 f C Y D x a t k O e B B 7 a n 5 0 1 a g X b y g V d v v 9 I K / Z Q 2 F i P Q d i 9 o s G b H + z R N f 7 y 4 m 9 X u 9 M e 7 N 9 n v 0 H X d r 5 Z S 4 p s H g X p J C 9 P / w D R T x 0 V n 1 T x j W G 9 L G r b a U m / F i 5 m e S v c r k x f / C g / o w 9 X q A U k 9 1 v 3 q H T 9 7 r 6 4 7 1 d J K f H M i 8 O y z g x 1 Z 0 3 t 1 Y A Q V T 2 M w g s C 3 u + y X H z i 0 f a Q 5 e y G t q g W B t p O w 2 O l 9 + / T M + s T O n 8 L 0 8 M t z g Q C y + t O H X r 3 j A 0 J W c 6 H U / H F 5 S c s s r 4 j X c Y q f P 6 V / T 8 i q + c e y W g v b U s K K O n 3 8 e J A Y y l 5 6 T A u C E r 2 W Y e i / / 9 C r d / 5 G l F b 8 1 k d A S V o p S F r e r K R l a o Z j 9 H R + 7 0 0 H 1 0 + 0 f g + l B 2 1 N W B x e 2 l h N H s U p D Z r 2 7 m i 4 d V 3 7 9 R 9 + z a 4 / i O 7 F b x 8 E C k n L C P T s T D J 1 7 O 3 3 b J p q n x 6 u 7 J 6 0 P W F x e A c C b M V 5 6 d J f Q K f 1 b k M L f u G h 1 + 7 6 z M o e 9 v b u P U n L s b 2 D t m O e 5 H S x v X s r v W t L B E h a T x 2 9 + M a 2 7 J x 0 S h A Q B A Q B Q U A Q E A Q E A U F A E B A E B A F B Q B A Q B A Q B Q U A Q E A Q E A U F A E B A E B A F B Q B A Q B A Q B Q U A Q a E s E V o Q d V l u O 3 B J 0 6 p t H L 3 4 b 1 X R j p 4 C h 6 R q 2 4 + k m j G 4 N w w g + 9 u A 9 u / 7 3 E j R B q h A E i h A o e 3 x w U Q q 5 W T Y E z p 0 b 3 Z n V / N c f 6 O / 9 A v Y 9 w l h / 6 d y 3 X 7 n c N 5 1 2 Z w 9 B V L X j u A P 4 n p 4 4 v n Q t k Z o E g V k E h L B m s W i K q w s X p j b P B O n 3 g R f e n w n c + 7 G B e + z s j c l v o n F D S 9 n A 9 I y / u 3 x 9 + v A P 3 7 3 5 V P k 4 C R U E F h c B I a z F x b f m 0 k 9 f H D 7 k + v 4 n Q F a P Q I r x 8 G m y x / G J 0 J / t 7 e z 7 m w 0 b 9 M m a C 2 p Q Q g h 0 / Z S m 4 g 5 T w u e W W t q L t 0 H u V y 4 C Q l j L P P Y n B 0 d e p T n + b 3 t + 8 B 4 t 0 A d B U v 9 3 h 2 H 9 x c 6 d a 0 a X s 2 m + r 1 W Q s L R n l 7 N d U v f K R k A I a 5 n G / / r 1 o G t s Z v j T g e v / k q Y H F / T A + A X o q v 4 n p J e m O E i Q U 1 E o 2 l + G 0 m o v B K 1 U B B P U 7 s 9 E 1 + I L A k u N g K w S L j X i q O / k h V t v A R H 8 d x D B R k M z P r F / V + 9 / B l G 5 y 9 C U q l X i n H v 9 m R P X t v u u s 8 8 L 9 H 3 J P v 2 z D 2 y X E x C q A i c J B I F W R w A v v 3 X q w q 0 / P n n + l v / K + Z v f P H 3 p 9 p 5 W 7 5 O 0 f x a B p 7 9 3 c e 3 A w I D M W m Y h a f i V g N t w S M s X e H p 4 e N X J C 8 N f 0 P A d R C i u f / X g r n W U q s q o t c v n l 9 D m R k C d w e X 4 b 9 N 7 + m / i h + m b M r a L M 1 4 y J V w c X I t K p T 1 V R v e + A r C 3 Q q n + 3 g M 7 1 3 2 j K E G Z m 6 t X g 8 6 J 7 O h D f u A / i H w P U p f U Z S f u 2 L 5 9 t X x E o Q x e y x k E g j K e O n L x H b 4 R q C + N Y 5 H 3 + 2 9 5 3 d 4 X l r N N 7 V q 3 E N Y i j + y Z w b G 9 j p t 9 G k B P Q 5 H 9 z g P 9 6 0 7 O V e W p 8 7 c O Q t n 9 z w J f + x D M N F f j + j r y P q X p x j 8 c 2 N n 7 P + S X e y 7 0 l i d u 4 I X z b 0 D N B 4 t r 9 7 5 1 + H V 7 z x S H y d 1 C E R D C W i i C c + Q P j U C n s a q m Z 6 2 O 5 I N 7 N / V U N P 4 8 e e 7 m A Z D T f 4 T t 0 4 9 i U G 4 G u v 4 Z f N L o s 9 U I b o 7 q J W o J E H j y + b P 7 f N s o O c n W 0 A 0 / a a c e f 8 P d G 2 8 s Q T N W T B V C W I s 0 1 O f P j 6 6 B p f q T m q 7 3 2 U n j g T 1 b e i + V q 4 p T v 7 H M 8 C e g 2 / o 1 q L Q u g 7 T + F a a M 3 I q T L Z d e w p o H g Y E j V 9 f p h v O j + O S h W a 5 V + C x v Z t p z v / L w G / a N l 4 u X s P o R w I + 4 u E Y j A J 2 G m d G 8 L 0 F K 2 m Y a + t s r k d X Z y + P 7 x 2 Z u H d W 1 4 P + B L d a n k 9 q 6 Q w d 3 r f + c k F W j R 6 T x 5 Q 2 c P 5 8 K 9 J m 3 V C I r 1 o g t 4 8 l O 2 3 7 r 3 / / 9 6 Y o f e G 1 8 y 9 q 7 R F k l X I T x P X V + 5 D c h K b 3 Z D M y 3 7 N u 5 t u x G 4 R 9 c H H 6 b 4 2 Q f A z l d s + 3 E P X u 2 r f r B I j R F i l w k B I I R 7 S H o J D u r F U 8 9 Z O d 6 8 0 G k e 6 J a W o m v j o B I W N U x q i v F D 8 7 f e j 0 e 0 n 8 F w v r 0 / t 1 r n y q X + Q f n R z 7 g + 8 F X 8 R v 8 v L 3 a u F / I q h x K z R 2 W C P x X q K e q 3 k r D T d j 2 i e r p J E U t C I g O q x a U a k w z N B R 0 D 0 9 y i q e P H O j v e y O k p x L r 9 V M X b 7 3 V 9 7 S / h 3 n D X x 7 Y 2 f d P k A Y b n c W 1 I g I D x y 5 v M 7 L Z t / h g r n L t x y a B r J N x v / 7 2 N + 6 t u N h S L p + E V U Z A C K s y N n X H v H L + 1 q c g N f 2 K b S X u 2 b t 9 d c m S 9 q l z o / f A R g c m C t p z B 3 b 1 / V g 5 Q i u s l L o
} ,
... ( _n = ( _m = uni . $uv ) == null ? void 0 : _m . props ) == null ? void 0 : _n . noNetwork
}
} ;
2024-07-09 10:55:32 +00:00
const _sfc _main$3 = {
2024-07-09 09:36:30 +00:00
name : "uv-no-network" ,
mixins : [ mpMixin , mixin , props ] ,
data ( ) {
return {
isConnected : true ,
// 是否有网络连接
networkType : "none"
// 网络类型
} ;
} ,
mounted ( ) {
this . isIOS = uni . getSystemInfoSync ( ) . platform === "ios" ;
uni . onNetworkStatusChange ( ( res ) => {
this . isConnected = res . isConnected ;
this . networkType = res . networkType ;
this . emitEvent ( this . networkType ) ;
} ) ;
uni . getNetworkType ( {
success : ( res ) => {
this . networkType = res . networkType ;
this . emitEvent ( this . networkType ) ;
if ( res . networkType == "none" ) {
this . isConnected = false ;
} else {
this . isConnected = true ;
}
}
} ) ;
} ,
methods : {
retry ( ) {
uni . getNetworkType ( {
success : ( res ) => {
this . networkType = res . networkType ;
this . emitEvent ( this . networkType ) ;
if ( res . networkType == "none" ) {
this . $uv . toast ( "无网络连接" ) ;
this . isConnected = false ;
} else {
this . $uv . toast ( "网络已连接" ) ;
this . isConnected = true ;
}
}
} ) ;
this . $emit ( "retry" ) ;
} ,
// 发出事件给父组件
emitEvent ( networkType ) {
this . $emit ( networkType === "none" ? "disconnected" : "connected" ) ;
} ,
async openSettings ( ) {
if ( this . networkType == "none" ) {
this . openSystemSettings ( ) ;
return ;
}
} ,
openAppSettings ( ) {
this . gotoAppSetting ( ) ;
} ,
openSystemSettings ( ) {
if ( this . isIOS ) {
this . gotoiOSSetting ( ) ;
} else {
this . gotoAndroidSetting ( ) ;
}
} ,
network ( ) {
var result = null ;
var cellularData = plus . ios . newObject ( "CTCellularData" ) ;
var state = cellularData . plusGetAttribute ( "restrictedState" ) ;
if ( state == 0 ) {
result = null ;
} else if ( state == 2 ) {
result = 1 ;
} else if ( state == 1 ) {
result = 2 ;
}
plus . ios . deleteObject ( cellularData ) ;
return result ;
} ,
gotoAppSetting ( ) {
if ( this . isIOS ) {
var UIApplication = plus . ios . import ( "UIApplication" ) ;
var application2 = UIApplication . sharedApplication ( ) ;
var NSURL2 = plus . ios . import ( "NSURL" ) ;
var setting2 = NSURL2 . URLWithString ( "app-settings:" ) ;
application2 . openURL ( setting2 ) ;
plus . ios . deleteObject ( setting2 ) ;
plus . ios . deleteObject ( NSURL2 ) ;
plus . ios . deleteObject ( application2 ) ;
} else {
var Intent = plus . android . importClass ( "android.content.Intent" ) ;
var Settings = plus . android . importClass ( "android.provider.Settings" ) ;
var Uri = plus . android . importClass ( "android.net.Uri" ) ;
var mainActivity = plus . android . runtimeMainActivity ( ) ;
var intent = new Intent ( ) ;
intent . setAction ( Settings . ACTION _APPLICATION _DETAILS _SETTINGS ) ;
var uri = Uri . fromParts ( "package" , mainActivity . getPackageName ( ) , null ) ;
intent . setData ( uri ) ;
mainActivity . startActivity ( intent ) ;
}
} ,
gotoiOSSetting ( ) {
var UIApplication = plus . ios . import ( "UIApplication" ) ;
var application2 = UIApplication . sharedApplication ( ) ;
var NSURL2 = plus . ios . import ( "NSURL" ) ;
var setting2 = NSURL2 . URLWithString ( "App-prefs:root=General" ) ;
application2 . openURL ( setting2 ) ;
plus . ios . deleteObject ( setting2 ) ;
plus . ios . deleteObject ( NSURL2 ) ;
plus . ios . deleteObject ( application2 ) ;
} ,
gotoAndroidSetting ( ) {
var Intent = plus . android . importClass ( "android.content.Intent" ) ;
var Settings = plus . android . importClass ( "android.provider.Settings" ) ;
var mainActivity = plus . android . runtimeMainActivity ( ) ;
var intent = new Intent ( Settings . ACTION _SETTINGS ) ;
mainActivity . startActivity ( intent ) ;
}
}
} ;
function _sfc _render ( _ctx , _cache , $props , $setup , $data , $options ) {
const _component _uv _icon = resolveEasycom ( vue . resolveDynamicComponent ( "uv-icon" ) , _ _easycom _0$2 ) ;
const _component _uv _button = resolveEasycom ( vue . resolveDynamicComponent ( "uv-button" ) , _ _easycom _1 ) ;
const _component _uv _overlay = resolveEasycom ( vue . resolveDynamicComponent ( "uv-overlay" ) , _ _easycom _2 ) ;
return vue . openBlock ( ) , vue . createBlock ( _component _uv _overlay , {
show : ! $data . isConnected ,
zIndex : _ctx . zIndex ,
onTouchmove : vue . withModifiers ( _ctx . noop , [ "stop" , "prevent" ] ) ,
customStyle : {
backgroundColor : "#fff" ,
display : "flex" ,
justifyContent : "center"
}
} , {
default : vue . withCtx ( ( ) => [
vue . createElementVNode ( "view" , { class : "uv-no-network" } , [
vue . createVNode ( _component _uv _icon , {
name : _ctx . image ,
size : "150" ,
imgMode : "widthFit" ,
class : "uv-no-network__error-icon"
} , null , 8 , [ "name" ] ) ,
vue . createElementVNode (
"text" ,
{ class : "uv-no-network__tips" } ,
vue . toDisplayString ( _ctx . tips ) ,
1
/* TEXT */
) ,
vue . createCommentVNode ( " 只有APP平台, 才能跳转设置页, 因为需要调用plus环境 " ) ,
vue . createElementVNode ( "view" , { class : "uv-no-network__app" } , [
vue . createElementVNode ( "text" , { class : "uv-no-network__app__setting" } , "请检查网络,或前往" ) ,
vue . createElementVNode ( "text" , {
class : "uv-no-network__app__to-setting" ,
onClick : _cache [ 0 ] || ( _cache [ 0 ] = ( ... args ) => $options . openSettings && $options . openSettings ( ... args ) )
} , "设置" )
] ) ,
vue . createElementVNode ( "view" , { class : "uv-no-network__retry" } , [
vue . createVNode ( _component _uv _button , {
2024-07-09 10:55:32 +00:00
style : { "width" : "220rpx" } ,
2024-07-09 09:36:30 +00:00
text : "重试" ,
type : "primary" ,
onClick : $options . retry
} , null , 8 , [ "onClick" ] )
] )
] )
] ) ,
_ : 1
/* STABLE */
} , 8 , [ "show" , "zIndex" , "onTouchmove" ] ) ;
}
2024-07-09 10:55:32 +00:00
const uvNoNetwork = /* @__PURE__ */ _export _sfc ( _sfc _main$3 , [ [ "render" , _sfc _render ] , [ "__scopeId" , "data-v-bffa4de5" ] , [ "__file" , "D:/WebstormProjects/oa-base/uni_modules/uv-no-network/components/uv-no-network/uv-no-network.vue" ] ] ) ;
2024-07-27 11:00:50 +00:00
const env = "dev" ;
2024-07-09 10:55:32 +00:00
const configs = {
LocalTest : {
apiBaseUrl : "https://warehouse.szjixun.cn/oa_backend" ,
2024-07-27 11:00:50 +00:00
h5Url : "http://192.168.88.37:8080/#/"
2024-07-09 10:55:32 +00:00
} ,
dev : {
apiBaseUrl : "https://warehouse.szjixun.cn/oa_backend" ,
2024-07-27 11:00:50 +00:00
h5Url : "http://192.168.88.37:8080/#/"
2024-07-09 10:55:32 +00:00
} ,
test : {
apiBaseUrl : "https://warehouse.szjixun.cn/oa_backend" ,
h5Url : "http://114.218.158.24:8042/#/"
} ,
prod : {
2024-07-12 08:50:13 +00:00
apiBaseUrl : "https://oa-a.szjixun.cn/api" ,
h5Url : "https://oa-a.szjixun.cn/#/"
2024-07-09 10:55:32 +00:00
}
} ;
const config = configs [ env ] ;
2024-07-18 12:46:46 +00:00
const _sfc _main$2 = {
2024-07-09 10:55:32 +00:00
_ _name : "index" ,
setup ( _ _props ) {
const webViewObj = vue . ref ( null ) ;
const webLoad = ( e2 ) => {
var _a , _b ;
const h5SendString = ( _b = ( _a = e2 . detail . data ) == null ? void 0 : _a [ 0 ] ) == null ? void 0 : _b . action ;
switch ( h5SendString ) {
case "load-complete" : {
const { statusBarHeight } = uni . getSystemInfoSync ( ) ;
const currentWebview = getCurrentPages ( ) . pop ( ) . $getAppWebview ( ) ;
webViewObj . value = currentWebview . children ( ) [ 0 ] ;
webViewObj . value . setStyle ( {
top : statusBarHeight ,
bottom : 0
} ) ;
}
}
} ;
return ( _ctx , _cache ) => {
2024-07-18 12:46:46 +00:00
return vue . openBlock ( ) , vue . createElementBlock ( "web-view" , {
class : "webview" ,
onMessage : webLoad ,
style : { "flex" : "1" } ,
ref : "webViewRef" ,
src : vue . unref ( config ) . h5Url
} , null , 40 , [ "src" ] ) ;
2024-07-09 10:55:32 +00:00
} ;
}
} ;
2024-07-18 12:46:46 +00:00
const PagesIndexIndex = /* @__PURE__ */ _export _sfc ( _sfc _main$2 , [ [ "__file" , "D:/WebstormProjects/oa-base/pages/index/index.vue" ] ] ) ;
const _sfc _main$1 = {
_ _name : "index" ,
setup ( _ _props ) {
return ( _ctx , _cache ) => {
return vue . openBlock ( ) , vue . createBlock ( uvNoNetwork ) ;
} ;
2024-07-08 07:29:21 +00:00
}
2024-07-18 12:46:46 +00:00
} ;
const PagesNetworkoIndex = /* @__PURE__ */ _export _sfc ( _sfc _main$1 , [ [ "__file" , "D:/WebstormProjects/oa-base/pages/networko/index.vue" ] ] ) ;
_ _definePage ( "pages/index/index" , PagesIndexIndex ) ;
_ _definePage ( "pages/networko/index" , PagesNetworkoIndex ) ;
2024-04-11 06:31:44 +00:00
const _sfc _main = {
2024-07-09 09:36:30 +00:00
methods : {
networkStatusChange ( res ) {
if ( res . isConnected ) {
uni . redirectTo ( {
url : "/pages/index/index"
} ) ;
} else {
uni . redirectTo ( {
url : "/pages/networko/index"
} ) ;
}
}
} ,
2024-06-18 07:55:32 +00:00
onLaunch : function ( ) {
} ,
onShow : function ( ) {
2024-07-09 10:55:32 +00:00
uni . getNetworkType ( {
success : ( res ) => {
if ( res . networkType === "none" ) {
uni . redirectTo ( {
2024-07-18 12:46:46 +00:00
url : "/pages/networko/index"
2024-07-09 10:55:32 +00:00
} ) ;
}
}
} ) ;
2024-07-09 09:36:30 +00:00
uni . onNetworkStatusChange ( this . networkStatusChange ) ;
2024-06-18 07:55:32 +00:00
} ,
onHide : function ( ) {
2024-07-09 09:36:30 +00:00
uni . offNetworkStatusChange ( this . networkStatusChange ) ;
2024-04-11 06:31:44 +00:00
}
} ;
const App = /* @__PURE__ */ _export _sfc ( _sfc _main , [ [ "__file" , "D:/WebstormProjects/oa-base/App.vue" ] ] ) ;
2024-06-03 09:11:28 +00:00
const pages = [
{
2024-07-18 12:46:46 +00:00
path : "pages/index/index" ,
2024-06-03 09:11:28 +00:00
style : {
2024-06-18 07:55:32 +00:00
navigationBarTitleText : "uni-app" ,
navigationStyle : "custom"
2024-06-03 09:11:28 +00:00
}
2024-07-09 09:36:30 +00:00
} ,
{
2024-07-18 12:46:46 +00:00
path : "pages/networko/index" ,
2024-07-09 09:36:30 +00:00
style : {
navigationBarTitleText : "uni-app" ,
navigationStyle : "custom"
}
2024-06-03 09:11:28 +00:00
}
] ;
2024-06-18 07:55:32 +00:00
const globalStyle = {
navigationBarTextStyle : "black" ,
navigationBarTitleText : "uni-app" ,
navigationBarBackgroundColor : "#F8F8F8" ,
backgroundColor : "#F8F8F8"
} ;
2024-06-03 09:11:28 +00:00
const uniIdRouter = { } ;
const e = {
pages ,
2024-06-18 07:55:32 +00:00
globalStyle ,
2024-06-03 09:11:28 +00:00
uniIdRouter
} ;
var define _process _env _UNI _SECURE _NETWORK _CONFIG _default = [ ] ;
function t ( e2 ) {
return e2 && e2 . _ _esModule && Object . prototype . hasOwnProperty . call ( e2 , "default" ) ? e2 . default : e2 ;
}
function n ( e2 , t2 , n2 ) {
return e2 ( n2 = { path : t2 , exports : { } , require : function ( e3 , t3 ) {
return function ( ) {
throw new Error ( "Dynamic requires are not currently supported by @rollup/plugin-commonjs" ) ;
} ( null == t3 && n2 . path ) ;
} } , n2 . exports ) , n2 . exports ;
}
var s = n ( function ( e2 , t2 ) {
var n2 ;
e2 . exports = ( n2 = n2 || function ( e3 , t3 ) {
var n3 = Object . create || /* @__PURE__ */ function ( ) {
function e4 ( ) {
}
return function ( t4 ) {
var n4 ;
return e4 . prototype = t4 , n4 = new e4 ( ) , e4 . prototype = null , n4 ;
} ;
} ( ) , s2 = { } , r2 = s2 . lib = { } , i2 = r2 . Base = { extend : function ( e4 ) {
var t4 = n3 ( this ) ;
return e4 && t4 . mixIn ( e4 ) , t4 . hasOwnProperty ( "init" ) && this . init !== t4 . init || ( t4 . init = function ( ) {
t4 . $super . init . apply ( this , arguments ) ;
} ) , t4 . init . prototype = t4 , t4 . $super = this , t4 ;
} , create : function ( ) {
var e4 = this . extend ( ) ;
return e4 . init . apply ( e4 , arguments ) , e4 ;
} , init : function ( ) {
} , mixIn : function ( e4 ) {
for ( var t4 in e4 )
e4 . hasOwnProperty ( t4 ) && ( this [ t4 ] = e4 [ t4 ] ) ;
e4 . hasOwnProperty ( "toString" ) && ( this . toString = e4 . toString ) ;
} , clone : function ( ) {
return this . init . prototype . extend ( this ) ;
} } , o2 = r2 . WordArray = i2 . extend ( { init : function ( e4 , n4 ) {
e4 = this . words = e4 || [ ] , this . sigBytes = n4 != t3 ? n4 : 4 * e4 . length ;
} , toString : function ( e4 ) {
return ( e4 || c2 ) . stringify ( this ) ;
} , concat : function ( e4 ) {
var t4 = this . words , n4 = e4 . words , s3 = this . sigBytes , r3 = e4 . sigBytes ;
if ( this . clamp ( ) , s3 % 4 )
for ( var i3 = 0 ; i3 < r3 ; i3 ++ ) {
var o3 = n4 [ i3 >>> 2 ] >>> 24 - i3 % 4 * 8 & 255 ;
t4 [ s3 + i3 >>> 2 ] |= o3 << 24 - ( s3 + i3 ) % 4 * 8 ;
}
else
for ( i3 = 0 ; i3 < r3 ; i3 += 4 )
t4 [ s3 + i3 >>> 2 ] = n4 [ i3 >>> 2 ] ;
return this . sigBytes += r3 , this ;
} , clamp : function ( ) {
var t4 = this . words , n4 = this . sigBytes ;
t4 [ n4 >>> 2 ] &= 4294967295 << 32 - n4 % 4 * 8 , t4 . length = e3 . ceil ( n4 / 4 ) ;
} , clone : function ( ) {
var e4 = i2 . clone . call ( this ) ;
return e4 . words = this . words . slice ( 0 ) , e4 ;
} , random : function ( t4 ) {
for ( var n4 , s3 = [ ] , r3 = function ( t5 ) {
t5 = t5 ;
var n5 = 987654321 , s4 = 4294967295 ;
return function ( ) {
var r4 = ( ( n5 = 36969 * ( 65535 & n5 ) + ( n5 >> 16 ) & s4 ) << 16 ) + ( t5 = 18e3 * ( 65535 & t5 ) + ( t5 >> 16 ) & s4 ) & s4 ;
return r4 /= 4294967296 , ( r4 += 0.5 ) * ( e3 . random ( ) > 0.5 ? 1 : - 1 ) ;
} ;
} , i3 = 0 ; i3 < t4 ; i3 += 4 ) {
var a3 = r3 ( 4294967296 * ( n4 || e3 . random ( ) ) ) ;
n4 = 987654071 * a3 ( ) , s3 . push ( 4294967296 * a3 ( ) | 0 ) ;
}
return new o2 . init ( s3 , t4 ) ;
} } ) , a2 = s2 . enc = { } , c2 = a2 . Hex = { stringify : function ( e4 ) {
for ( var t4 = e4 . words , n4 = e4 . sigBytes , s3 = [ ] , r3 = 0 ; r3 < n4 ; r3 ++ ) {
var i3 = t4 [ r3 >>> 2 ] >>> 24 - r3 % 4 * 8 & 255 ;
s3 . push ( ( i3 >>> 4 ) . toString ( 16 ) ) , s3 . push ( ( 15 & i3 ) . toString ( 16 ) ) ;
}
return s3 . join ( "" ) ;
} , parse : function ( e4 ) {
for ( var t4 = e4 . length , n4 = [ ] , s3 = 0 ; s3 < t4 ; s3 += 2 )
n4 [ s3 >>> 3 ] |= parseInt ( e4 . substr ( s3 , 2 ) , 16 ) << 24 - s3 % 8 * 4 ;
return new o2 . init ( n4 , t4 / 2 ) ;
} } , u2 = a2 . Latin1 = { stringify : function ( e4 ) {
for ( var t4 = e4 . words , n4 = e4 . sigBytes , s3 = [ ] , r3 = 0 ; r3 < n4 ; r3 ++ ) {
var i3 = t4 [ r3 >>> 2 ] >>> 24 - r3 % 4 * 8 & 255 ;
s3 . push ( String . fromCharCode ( i3 ) ) ;
}
return s3 . join ( "" ) ;
} , parse : function ( e4 ) {
for ( var t4 = e4 . length , n4 = [ ] , s3 = 0 ; s3 < t4 ; s3 ++ )
n4 [ s3 >>> 2 ] |= ( 255 & e4 . charCodeAt ( s3 ) ) << 24 - s3 % 4 * 8 ;
return new o2 . init ( n4 , t4 ) ;
} } , h2 = a2 . Utf8 = { stringify : function ( e4 ) {
try {
return decodeURIComponent ( escape ( u2 . stringify ( e4 ) ) ) ;
} catch ( e5 ) {
throw new Error ( "Malformed UTF-8 data" ) ;
}
} , parse : function ( e4 ) {
return u2 . parse ( unescape ( encodeURIComponent ( e4 ) ) ) ;
} } , l2 = r2 . BufferedBlockAlgorithm = i2 . extend ( { reset : function ( ) {
this . _data = new o2 . init ( ) , this . _nDataBytes = 0 ;
} , _append : function ( e4 ) {
"string" == typeof e4 && ( e4 = h2 . parse ( e4 ) ) , this . _data . concat ( e4 ) , this . _nDataBytes += e4 . sigBytes ;
} , _process : function ( t4 ) {
var n4 = this . _data , s3 = n4 . words , r3 = n4 . sigBytes , i3 = this . blockSize , a3 = r3 / ( 4 * i3 ) , c3 = ( a3 = t4 ? e3 . ceil ( a3 ) : e3 . max ( ( 0 | a3 ) - this . _minBufferSize , 0 ) ) * i3 , u3 = e3 . min ( 4 * c3 , r3 ) ;
if ( c3 ) {
for ( var h3 = 0 ; h3 < c3 ; h3 += i3 )
this . _doProcessBlock ( s3 , h3 ) ;
var l3 = s3 . splice ( 0 , c3 ) ;
n4 . sigBytes -= u3 ;
}
return new o2 . init ( l3 , u3 ) ;
} , clone : function ( ) {
var e4 = i2 . clone . call ( this ) ;
return e4 . _data = this . _data . clone ( ) , e4 ;
} , _minBufferSize : 0 } ) ;
r2 . Hasher = l2 . extend ( { cfg : i2 . extend ( ) , init : function ( e4 ) {
this . cfg = this . cfg . extend ( e4 ) , this . reset ( ) ;
} , reset : function ( ) {
l2 . reset . call ( this ) , this . _doReset ( ) ;
} , update : function ( e4 ) {
return this . _append ( e4 ) , this . _process ( ) , this ;
} , finalize : function ( e4 ) {
return e4 && this . _append ( e4 ) , this . _doFinalize ( ) ;
} , blockSize : 16 , _createHelper : function ( e4 ) {
return function ( t4 , n4 ) {
return new e4 . init ( n4 ) . finalize ( t4 ) ;
} ;
} , _createHmacHelper : function ( e4 ) {
return function ( t4 , n4 ) {
return new d2 . HMAC . init ( e4 , n4 ) . finalize ( t4 ) ;
} ;
} } ) ;
var d2 = s2 . algo = { } ;
return s2 ;
} ( Math ) , n2 ) ;
} ) , r = s , i = ( n ( function ( e2 , t2 ) {
var n2 ;
e2 . exports = ( n2 = r , function ( e3 ) {
var t3 = n2 , s2 = t3 . lib , r2 = s2 . WordArray , i2 = s2 . Hasher , o2 = t3 . algo , a2 = [ ] ;
! function ( ) {
for ( var t4 = 0 ; t4 < 64 ; t4 ++ )
a2 [ t4 ] = 4294967296 * e3 . abs ( e3 . sin ( t4 + 1 ) ) | 0 ;
} ( ) ;
var c2 = o2 . MD5 = i2 . extend ( { _doReset : function ( ) {
this . _hash = new r2 . init ( [ 1732584193 , 4023233417 , 2562383102 , 271733878 ] ) ;
} , _doProcessBlock : function ( e4 , t4 ) {
for ( var n3 = 0 ; n3 < 16 ; n3 ++ ) {
var s3 = t4 + n3 , r3 = e4 [ s3 ] ;
e4 [ s3 ] = 16711935 & ( r3 << 8 | r3 >>> 24 ) | 4278255360 & ( r3 << 24 | r3 >>> 8 ) ;
}
2024-07-12 08:50:13 +00:00
var i3 = this . _hash . words , o3 = e4 [ t4 + 0 ] , c3 = e4 [ t4 + 1 ] , p2 = e4 [ t4 + 2 ] , f2 = e4 [ t4 + 3 ] , g2 = e4 [ t4 + 4 ] , m2 = e4 [ t4 + 5 ] , y2 = e4 [ t4 + 6 ] , _2 = e4 [ t4 + 7 ] , w2 = e4 [ t4 + 8 ] , v2 = e4 [ t4 + 9 ] , I2 = e4 [ t4 + 10 ] , S2 = e4 [ t4 + 11 ] , b2 = e4 [ t4 + 12 ] , k2 = e4 [ t4 + 13 ] , A2 = e4 [ t4 + 14 ] , C2 = e4 [ t4 + 15 ] , P2 = i3 [ 0 ] , T2 = i3 [ 1 ] , x2 = i3 [ 2 ] , O2 = i3 [ 3 ] ;
P2 = u2 ( P2 , T2 , x2 , O2 , o3 , 7 , a2 [ 0 ] ) , O2 = u2 ( O2 , P2 , T2 , x2 , c3 , 12 , a2 [ 1 ] ) , x2 = u2 ( x2 , O2 , P2 , T2 , p2 , 17 , a2 [ 2 ] ) , T2 = u2 ( T2 , x2 , O2 , P2 , f2 , 22 , a2 [ 3 ] ) , P2 = u2 ( P2 , T2 , x2 , O2 , g2 , 7 , a2 [ 4 ] ) , O2 = u2 ( O2 , P2 , T2 , x2 , m2 , 12 , a2 [ 5 ] ) , x2 = u2 ( x2 , O2 , P2 , T2 , y2 , 17 , a2 [ 6 ] ) , T2 = u2 ( T2 , x2 , O2 , P2 , _2 , 22 , a2 [ 7 ] ) , P2 = u2 ( P2 , T2 , x2 , O2 , w2 , 7 , a2 [ 8 ] ) , O2 = u2 ( O2 , P2 , T2 , x2 , v2 , 12 , a2 [ 9 ] ) , x2 = u2 ( x2 , O2 , P2 , T2 , I2 , 17 , a2 [ 10 ] ) , T2 = u2 ( T2 , x2 , O2 , P2 , S2 , 22 , a2 [ 11 ] ) , P2 = u2 ( P2 , T2 , x2 , O2 , b2 , 7 , a2 [ 12 ] ) , O2 = u2 ( O2 , P2 , T2 , x2 , k2 , 12 , a2 [ 13 ] ) , x2 = u2 ( x2 , O2 , P2 , T2 , A2 , 17 , a2 [ 14 ] ) , P2 = h2 ( P2 , T2 = u2 ( T2 , x2 , O2 , P2 , C2 , 22 , a2 [ 15 ] ) , x2 , O2 , c3 , 5 , a2 [ 16 ] ) , O2 = h2 ( O2 , P2 , T2 , x2 , y2 , 9 , a2 [ 17 ] ) , x2 = h2 ( x2 , O2 , P2 , T2 , S2 , 14 , a2 [ 18 ] ) , T2 = h2 ( T2 , x2 , O2 , P2 , o3 , 20 , a2 [ 19 ] ) , P2 = h2 ( P2 , T2 , x2 , O2 , m2 , 5 , a2 [ 20 ] ) , O2 = h2 ( O2 , P2 , T2 , x2 , I2 , 9 , a2 [ 21 ] ) , x2 = h2 ( x2 , O2 , P2 , T2 , C2 , 14 , a2 [ 22 ] ) , T2 = h2 ( T2 , x2 , O2 , P2 , g2 , 20 , a2 [ 23 ] ) , P2 = h2 ( P2 , T2 , x2 , O2 , v2 , 5 , a2 [ 24 ] ) , O2 = h2 ( O2 , P2 , T2 , x2 , A2 , 9 , a2 [ 25 ] ) , x2 = h2 ( x2 , O2 , P2 , T2 , f2 , 14 , a2 [ 26 ] ) , T2 = h2 ( T2 , x2 , O2 , P2 , w2 , 20 , a2 [ 27 ] ) , P2 = h2 ( P2 , T2 , x2 , O2 , k2 , 5 , a2 [ 28 ] ) , O2 = h2 ( O2 , P2 , T2 , x2 , p2 , 9 , a2 [ 29 ] ) , x2 = h2 ( x2 , O2 , P2 , T2 , _2 , 14 , a2 [ 30 ] ) , P2 = l2 ( P2 , T2 = h2 ( T2 , x2 , O2 , P2 , b2 , 20 , a2 [ 31 ] ) , x2 , O2 , m2 , 4 , a2 [ 32 ] ) , O2 = l2 ( O2 , P2 , T2 , x2 , w2 , 11 , a2 [ 33 ] ) , x2 = l2 ( x2 , O2 , P2 , T2 , S2 , 16 , a2 [ 34 ] ) , T2 = l2 ( T2 , x2 , O2 , P2 , A2 , 23 , a2 [ 35 ] ) , P2 = l2 ( P2 , T2 , x2 , O2 , c3 , 4 , a2 [ 36 ] ) , O2 = l2 ( O2 , P2 , T2 , x2 , g2 , 11 , a2 [ 37 ] ) , x2 = l2 ( x2 , O2 , P2 , T2 , _2 , 16 , a2 [ 38 ] ) , T2 = l2 ( T2 , x2 , O2 , P2 , I2 , 23 , a2 [ 39 ] ) , P2 = l2 ( P2 , T2 , x2 , O2 , k2 , 4 , a2 [ 40 ] ) , O2 = l2 ( O2 , P2 , T2 , x2 , o3 , 11 , a2 [ 41 ] ) , x2 = l2 ( x2 , O2 , P2 , T2 , f2 , 16 , a2 [ 42 ] ) , T2 = l2 ( T2 , x2 , O2 , P2 , y2 , 23 , a2 [ 43 ] ) , P2 = l2 ( P2 , T2 , x2 , O2 , v2 , 4 , a2 [ 44 ] ) , O2 = l2 ( O2 , P2 , T2 , x2 , b2 , 11 , a2 [ 45 ] ) , x2 = l2 ( x2 , O2 , P2 , T2 , C2 , 16 , a2 [ 46 ] ) , P2 = d2 ( P2 , T2 = l2 ( T2 , x2 , O2 , P2 , p2 , 23 , a2 [ 47 ] ) , x2 , O2 , o3 , 6 , a2 [ 48 ] ) , O2 = d2 ( O2 , P2 , T2 , x2 , _2 , 10 , a2 [ 49 ] ) , x2 = d2 ( x2 , O2 , P2 , T2 , A2 , 15 , a2 [ 50 ] ) , T2 = d2 ( T2 , x2 , O2 , P2 , m2 , 21 , a2 [ 51 ] ) , P2 = d2 ( P2 , T2 , x2 , O2 , b2 , 6 , a2 [ 52 ] ) , O2 = d2 ( O2 , P2 , T2 , x2 , f2 , 10 , a2 [ 53 ] ) , x2 = d2 ( x2 , O2 , P2 , T2 , I2 , 15 , a2 [ 54 ] ) , T2 = d2 ( T2 , x2 , O2 , P2 , c3 , 21 , a2 [ 55 ] ) , P2 = d2 ( P2 , T2 , x2 , O2 , w2 , 6 , a2 [ 56 ] ) , O2 = d2 ( O2 , P2 , T2 , x2 , C2 , 10 , a2 [ 57 ] ) , x2 = d2 ( x2 , O2 , P2 , T2 , y2 , 15 , a2 [ 58 ] ) , T2 = d2 ( T2 , x2 , O2 , P2 , k2 , 21 , a2 [ 59 ] ) , P2 = d2 ( P2 , T2 , x2 , O2 , g2 , 6 , a2 [ 60 ] ) , O2 = d2 ( O2 , P2 , T2 , x2 , S2 , 10 , a2 [ 61 ] ) , x2 = d2 ( x2 , O2 , P2 , T2 , p2 , 15 , a2 [ 62 ] ) , T2 = d2 ( T2 , x2 , O2 , P2 , v2 , 21 , a2 [ 63 ] ) , i3 [ 0 ] = i3 [ 0 ] + P2 | 0 , i3 [ 1 ] = i3 [ 1 ] + T2 | 0 , i3 [ 2 ] = i3 [ 2 ] + x2 | 0 , i3 [ 3 ] = i3 [ 3 ] + O2 | 0 ;
2024-06-03 09:11:28 +00:00
} , _doFinalize : function ( ) {
var t4 = this . _data , n3 = t4 . words , s3 = 8 * this . _nDataBytes , r3 = 8 * t4 . sigBytes ;
n3 [ r3 >>> 5 ] |= 128 << 24 - r3 % 32 ;
var i3 = e3 . floor ( s3 / 4294967296 ) , o3 = s3 ;
n3 [ 15 + ( r3 + 64 >>> 9 << 4 ) ] = 16711935 & ( i3 << 8 | i3 >>> 24 ) | 4278255360 & ( i3 << 24 | i3 >>> 8 ) , n3 [ 14 + ( r3 + 64 >>> 9 << 4 ) ] = 16711935 & ( o3 << 8 | o3 >>> 24 ) | 4278255360 & ( o3 << 24 | o3 >>> 8 ) , t4 . sigBytes = 4 * ( n3 . length + 1 ) , this . _process ( ) ;
for ( var a3 = this . _hash , c3 = a3 . words , u3 = 0 ; u3 < 4 ; u3 ++ ) {
var h3 = c3 [ u3 ] ;
c3 [ u3 ] = 16711935 & ( h3 << 8 | h3 >>> 24 ) | 4278255360 & ( h3 << 24 | h3 >>> 8 ) ;
}
return a3 ;
} , clone : function ( ) {
var e4 = i2 . clone . call ( this ) ;
return e4 . _hash = this . _hash . clone ( ) , e4 ;
} } ) ;
function u2 ( e4 , t4 , n3 , s3 , r3 , i3 , o3 ) {
var a3 = e4 + ( t4 & n3 | ~ t4 & s3 ) + r3 + o3 ;
return ( a3 << i3 | a3 >>> 32 - i3 ) + t4 ;
}
function h2 ( e4 , t4 , n3 , s3 , r3 , i3 , o3 ) {
var a3 = e4 + ( t4 & s3 | n3 & ~ s3 ) + r3 + o3 ;
return ( a3 << i3 | a3 >>> 32 - i3 ) + t4 ;
}
function l2 ( e4 , t4 , n3 , s3 , r3 , i3 , o3 ) {
var a3 = e4 + ( t4 ^ n3 ^ s3 ) + r3 + o3 ;
return ( a3 << i3 | a3 >>> 32 - i3 ) + t4 ;
}
function d2 ( e4 , t4 , n3 , s3 , r3 , i3 , o3 ) {
var a3 = e4 + ( n3 ^ ( t4 | ~ s3 ) ) + r3 + o3 ;
return ( a3 << i3 | a3 >>> 32 - i3 ) + t4 ;
}
t3 . MD5 = i2 . _createHelper ( c2 ) , t3 . HmacMD5 = i2 . _createHmacHelper ( c2 ) ;
} ( Math ) , n2 . MD5 ) ;
} ) , n ( function ( e2 , t2 ) {
var n2 ;
e2 . exports = ( n2 = r , void function ( ) {
var e3 = n2 , t3 = e3 . lib . Base , s2 = e3 . enc . Utf8 ;
e3 . algo . HMAC = t3 . extend ( { init : function ( e4 , t4 ) {
e4 = this . _hasher = new e4 . init ( ) , "string" == typeof t4 && ( t4 = s2 . parse ( t4 ) ) ;
var n3 = e4 . blockSize , r2 = 4 * n3 ;
t4 . sigBytes > r2 && ( t4 = e4 . finalize ( t4 ) ) , t4 . clamp ( ) ;
for ( var i2 = this . _oKey = t4 . clone ( ) , o2 = this . _iKey = t4 . clone ( ) , a2 = i2 . words , c2 = o2 . words , u2 = 0 ; u2 < n3 ; u2 ++ )
a2 [ u2 ] ^= 1549556828 , c2 [ u2 ] ^= 909522486 ;
i2 . sigBytes = o2 . sigBytes = r2 , this . reset ( ) ;
} , reset : function ( ) {
var e4 = this . _hasher ;
e4 . reset ( ) , e4 . update ( this . _iKey ) ;
} , update : function ( e4 ) {
return this . _hasher . update ( e4 ) , this ;
} , finalize : function ( e4 ) {
var t4 = this . _hasher , n3 = t4 . finalize ( e4 ) ;
return t4 . reset ( ) , t4 . finalize ( this . _oKey . clone ( ) . concat ( n3 ) ) ;
} } ) ;
} ( ) ) ;
} ) , n ( function ( e2 , t2 ) {
e2 . exports = r . HmacMD5 ;
} ) ) , o = n ( function ( e2 , t2 ) {
e2 . exports = r . enc . Utf8 ;
} ) , a = n ( function ( e2 , t2 ) {
var n2 ;
e2 . exports = ( n2 = r , function ( ) {
var e3 = n2 , t3 = e3 . lib . WordArray ;
function s2 ( e4 , n3 , s3 ) {
for ( var r2 = [ ] , i2 = 0 , o2 = 0 ; o2 < n3 ; o2 ++ )
if ( o2 % 4 ) {
var a2 = s3 [ e4 . charCodeAt ( o2 - 1 ) ] << o2 % 4 * 2 , c2 = s3 [ e4 . charCodeAt ( o2 ) ] >>> 6 - o2 % 4 * 2 ;
r2 [ i2 >>> 2 ] |= ( a2 | c2 ) << 24 - i2 % 4 * 8 , i2 ++ ;
}
return t3 . create ( r2 , i2 ) ;
}
e3 . enc . Base64 = { stringify : function ( e4 ) {
var t4 = e4 . words , n3 = e4 . sigBytes , s3 = this . _map ;
e4 . clamp ( ) ;
for ( var r2 = [ ] , i2 = 0 ; i2 < n3 ; i2 += 3 )
for ( var o2 = ( t4 [ i2 >>> 2 ] >>> 24 - i2 % 4 * 8 & 255 ) << 16 | ( t4 [ i2 + 1 >>> 2 ] >>> 24 - ( i2 + 1 ) % 4 * 8 & 255 ) << 8 | t4 [ i2 + 2 >>> 2 ] >>> 24 - ( i2 + 2 ) % 4 * 8 & 255 , a2 = 0 ; a2 < 4 && i2 + 0.75 * a2 < n3 ; a2 ++ )
r2 . push ( s3 . charAt ( o2 >>> 6 * ( 3 - a2 ) & 63 ) ) ;
var c2 = s3 . charAt ( 64 ) ;
if ( c2 )
for ( ; r2 . length % 4 ; )
r2 . push ( c2 ) ;
return r2 . join ( "" ) ;
} , parse : function ( e4 ) {
var t4 = e4 . length , n3 = this . _map , r2 = this . _reverseMap ;
if ( ! r2 ) {
r2 = this . _reverseMap = [ ] ;
for ( var i2 = 0 ; i2 < n3 . length ; i2 ++ )
r2 [ n3 . charCodeAt ( i2 ) ] = i2 ;
}
var o2 = n3 . charAt ( 64 ) ;
if ( o2 ) {
var a2 = e4 . indexOf ( o2 ) ;
- 1 !== a2 && ( t4 = a2 ) ;
}
return s2 ( e4 , t4 , r2 ) ;
} , _map : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" } ;
} ( ) , n2 . enc . Base64 ) ;
} ) ;
const c = "FUNCTION" , u = "OBJECT" , h = "CLIENT_DB" , l = "pending" , d = "fulfilled" , p = "rejected" ;
function f ( e2 ) {
return Object . prototype . toString . call ( e2 ) . slice ( 8 , - 1 ) . toLowerCase ( ) ;
}
function g ( e2 ) {
return "object" === f ( e2 ) ;
}
function m ( e2 ) {
return "function" == typeof e2 ;
}
function y ( e2 ) {
return function ( ) {
try {
return e2 . apply ( e2 , arguments ) ;
} catch ( e3 ) {
console . error ( e3 ) ;
}
} ;
}
const _ = "REJECTED" , w = "NOT_PENDING" ;
class v {
constructor ( { createPromise : e2 , retryRule : t2 = _ } = { } ) {
this . createPromise = e2 , this . status = null , this . promise = null , this . retryRule = t2 ;
}
get needRetry ( ) {
if ( ! this . status )
return true ;
switch ( this . retryRule ) {
case _ :
return this . status === p ;
case w :
return this . status !== l ;
}
}
exec ( ) {
return this . needRetry ? ( this . status = l , this . promise = this . createPromise ( ) . then ( ( e2 ) => ( this . status = d , Promise . resolve ( e2 ) ) , ( e2 ) => ( this . status = p , Promise . reject ( e2 ) ) ) , this . promise ) : this . promise ;
}
}
function I ( e2 ) {
return e2 && "string" == typeof e2 ? JSON . parse ( e2 ) : e2 ;
}
2024-07-27 11:00:50 +00:00
const S = true , b = "app" , A = I ( define _process _env _UNI _SECURE _NETWORK _CONFIG _default ) , C = b , P = I ( '{\n "address": [\n "127.0.0.1",\n "192.168.56.1",\n "192.168.88.37"\n ],\n "debugPort": 9000,\n "initialLaunchType": "local",\n "servePort": 7000,\n "skipFiles": [\n "<node_internals>/**",\n "C:/Users/37363/Downloads/HBuilderX.4.08.2024040127/HBuilderX/plugins/unicloud/**/*.js"\n ]\n}\n' ) , T = I ( '[{"provider":"alipay","spaceName":"oaapp","spaceId":"env-00jxgxphla18","spaceAppId":"2021004145628977","accessKey":"ZALus7EgJXdovISb","secretKey":"7qzvVrPN0mAxfcLr"}]' ) || [ ] ;
2024-06-03 09:11:28 +00:00
let O = "" ;
try {
2024-07-08 07:29:21 +00:00
O = "__UNI__4796942" ;
2024-06-03 09:11:28 +00:00
} catch ( e2 ) {
}
let E = { } ;
function L ( e2 , t2 = { } ) {
var n2 , s2 ;
return n2 = E , s2 = e2 , Object . prototype . hasOwnProperty . call ( n2 , s2 ) || ( E [ e2 ] = t2 ) , E [ e2 ] ;
}
E = uni . _globalUniCloudObj ? uni . _globalUniCloudObj : uni . _globalUniCloudObj = { } ;
const R = [ "invoke" , "success" , "fail" , "complete" ] , U = L ( "_globalUniCloudInterceptor" ) ;
function N ( e2 , t2 ) {
U [ e2 ] || ( U [ e2 ] = { } ) , g ( t2 ) && Object . keys ( t2 ) . forEach ( ( n2 ) => {
R . indexOf ( n2 ) > - 1 && function ( e3 , t3 , n3 ) {
let s2 = U [ e3 ] [ t3 ] ;
s2 || ( s2 = U [ e3 ] [ t3 ] = [ ] ) , - 1 === s2 . indexOf ( n3 ) && m ( n3 ) && s2 . push ( n3 ) ;
} ( e2 , n2 , t2 [ n2 ] ) ;
} ) ;
}
function D ( e2 , t2 ) {
U [ e2 ] || ( U [ e2 ] = { } ) , g ( t2 ) ? Object . keys ( t2 ) . forEach ( ( n2 ) => {
R . indexOf ( n2 ) > - 1 && function ( e3 , t3 , n3 ) {
const s2 = U [ e3 ] [ t3 ] ;
if ( ! s2 )
return ;
const r2 = s2 . indexOf ( n3 ) ;
r2 > - 1 && s2 . splice ( r2 , 1 ) ;
} ( e2 , n2 , t2 [ n2 ] ) ;
} ) : delete U [ e2 ] ;
}
function M ( e2 , t2 ) {
return e2 && 0 !== e2 . length ? e2 . reduce ( ( e3 , n2 ) => e3 . then ( ( ) => n2 ( t2 ) ) , Promise . resolve ( ) ) : Promise . resolve ( ) ;
}
function q ( e2 , t2 ) {
return U [ e2 ] && U [ e2 ] [ t2 ] || [ ] ;
}
function F ( e2 ) {
N ( "callObject" , e2 ) ;
}
const K = L ( "_globalUniCloudListener" ) , j = "response" , $ = "needLogin" , B = "refreshToken" , W = "clientdb" , H = "cloudfunction" , z = "cloudobject" ;
function J ( e2 ) {
return K [ e2 ] || ( K [ e2 ] = [ ] ) , K [ e2 ] ;
}
2024-07-12 08:50:13 +00:00
function V ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
const n2 = J ( e2 ) ;
n2 . includes ( t2 ) || n2 . push ( t2 ) ;
}
2024-07-12 08:50:13 +00:00
function G ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
const n2 = J ( e2 ) , s2 = n2 . indexOf ( t2 ) ;
- 1 !== s2 && n2 . splice ( s2 , 1 ) ;
}
function Y ( e2 , t2 ) {
const n2 = J ( e2 ) ;
for ( let e3 = 0 ; e3 < n2 . length ; e3 ++ ) {
( 0 , n2 [ e3 ] ) ( t2 ) ;
}
}
let Q , X = false ;
function Z ( ) {
return Q || ( Q = new Promise ( ( e2 ) => {
X && e2 ( ) , function t2 ( ) {
if ( "function" == typeof getCurrentPages ) {
const t3 = getCurrentPages ( ) ;
t3 && t3 [ 0 ] && ( X = true , e2 ( ) ) ;
}
X || setTimeout ( ( ) => {
t2 ( ) ;
} , 30 ) ;
} ( ) ;
} ) , Q ) ;
}
function ee ( e2 ) {
const t2 = { } ;
for ( const n2 in e2 ) {
const s2 = e2 [ n2 ] ;
m ( s2 ) && ( t2 [ n2 ] = y ( s2 ) ) ;
}
return t2 ;
}
class te extends Error {
constructor ( e2 ) {
super ( e2 . message ) , this . errMsg = e2 . message || e2 . errMsg || "unknown system error" , this . code = this . errCode = e2 . code || e2 . errCode || "SYSTEM_ERROR" , this . errSubject = this . subject = e2 . subject || e2 . errSubject , this . cause = e2 . cause , this . requestId = e2 . requestId ;
}
toJson ( e2 = 0 ) {
if ( ! ( e2 >= 10 ) )
return e2 ++ , { errCode : this . errCode , errMsg : this . errMsg , errSubject : this . errSubject , cause : this . cause && this . cause . toJson ? this . cause . toJson ( e2 ) : this . cause } ;
}
}
2024-07-12 08:50:13 +00:00
var ne = { request : ( e2 ) => uni . request ( e2 ) , uploadFile : ( e2 ) => uni . uploadFile ( e2 ) , setStorageSync : ( e2 , t2 ) => uni . setStorageSync ( e2 , t2 ) , getStorageSync : ( e2 ) => uni . getStorageSync ( e2 ) , removeStorageSync : ( e2 ) => uni . removeStorageSync ( e2 ) , clearStorageSync : ( ) => uni . clearStorageSync ( ) , connectSocket : ( e2 ) => uni . connectSocket ( e2 ) } ;
2024-06-03 09:11:28 +00:00
function se ( e2 ) {
return e2 && se ( e2 . _ _v _raw ) || e2 ;
}
function re ( ) {
return { token : ne . getStorageSync ( "uni_id_token" ) || ne . getStorageSync ( "uniIdToken" ) , tokenExpired : ne . getStorageSync ( "uni_id_token_expired" ) } ;
}
function ie ( { token : e2 , tokenExpired : t2 } = { } ) {
e2 && ne . setStorageSync ( "uni_id_token" , e2 ) , t2 && ne . setStorageSync ( "uni_id_token_expired" , t2 ) ;
}
let oe , ae ;
function ce ( ) {
return oe || ( oe = uni . getSystemInfoSync ( ) ) , oe ;
}
function ue ( ) {
let e2 , t2 ;
try {
if ( uni . getLaunchOptionsSync ) {
if ( uni . getLaunchOptionsSync . toString ( ) . indexOf ( "not yet implemented" ) > - 1 )
return ;
const { scene : n2 , channel : s2 } = uni . getLaunchOptionsSync ( ) ;
e2 = s2 , t2 = n2 ;
}
} catch ( e3 ) {
}
return { channel : e2 , scene : t2 } ;
}
2024-07-12 08:50:13 +00:00
let he = { } ;
function le ( ) {
2024-06-03 09:11:28 +00:00
const e2 = uni . getLocale && uni . getLocale ( ) || "en" ;
if ( ae )
2024-07-12 08:50:13 +00:00
return { ... he , ... ae , locale : e2 , LOCALE : e2 } ;
const t2 = ce ( ) , { deviceId : n2 , osName : s2 , uniPlatform : r2 , appId : i2 } = t2 , o2 = [ "appId" , "appLanguage" , "appName" , "appVersion" , "appVersionCode" , "appWgtVersion" , "browserName" , "browserVersion" , "deviceBrand" , "deviceId" , "deviceModel" , "deviceType" , "osName" , "osVersion" , "romName" , "romVersion" , "ua" , "hostName" , "hostVersion" , "uniPlatform" , "uniRuntimeVersion" , "uniRuntimeVersionCode" , "uniCompilerVersion" , "uniCompilerVersionCode" ] ;
for ( const e3 in t2 )
Object . hasOwnProperty . call ( t2 , e3 ) && - 1 === o2 . indexOf ( e3 ) && delete t2 [ e3 ] ;
return ae = { PLATFORM : r2 , OS : s2 , APPID : i2 , DEVICEID : n2 , ... ue ( ) , ... t2 } , { ... he , ... ae , locale : e2 , LOCALE : e2 } ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
var de = { sign : function ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
let n2 = "" ;
return Object . keys ( e2 ) . sort ( ) . forEach ( function ( t3 ) {
e2 [ t3 ] && ( n2 = n2 + "&" + t3 + "=" + e2 [ t3 ] ) ;
} ) , n2 = n2 . slice ( 1 ) , i ( n2 , t2 ) . toString ( ) ;
} , wrappedRequest : function ( e2 , t2 ) {
return new Promise ( ( n2 , s2 ) => {
t2 ( Object . assign ( e2 , { complete ( e3 ) {
e3 || ( e3 = { } ) ;
const t3 = e3 . data && e3 . data . header && e3 . data . header [ "x-serverless-request-id" ] || e3 . header && e3 . header [ "request-id" ] ;
if ( ! e3 . statusCode || e3 . statusCode >= 400 ) {
const n3 = e3 . data && e3 . data . error && e3 . data . error . code || "SYS_ERR" , r3 = e3 . data && e3 . data . error && e3 . data . error . message || e3 . errMsg || "request:fail" ;
return s2 ( new te ( { code : n3 , message : r3 , requestId : t3 } ) ) ;
}
const r2 = e3 . data ;
if ( r2 . error )
return s2 ( new te ( { code : r2 . error . code , message : r2 . error . message , requestId : t3 } ) ) ;
r2 . result = r2 . data , r2 . requestId = t3 , delete r2 . data , n2 ( r2 ) ;
} } ) ) ;
} ) ;
} , toBase64 : function ( e2 ) {
return a . stringify ( o . parse ( e2 ) ) ;
} } ;
2024-07-12 08:50:13 +00:00
var pe = class {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
[ "spaceId" , "clientSecret" ] . forEach ( ( t2 ) => {
if ( ! Object . prototype . hasOwnProperty . call ( e2 , t2 ) )
throw new Error ( ` ${ t2 } required ` ) ;
} ) , this . config = Object . assign ( { } , { endpoint : 0 === e2 . spaceId . indexOf ( "mp-" ) ? "https://api.next.bspapp.com" : "https://api.bspapp.com" } , e2 ) , this . config . provider = "aliyun" , this . config . requestUrl = this . config . endpoint + "/client" , this . config . envType = this . config . envType || "public" , this . config . accessTokenKey = "access_token_" + this . config . spaceId , this . adapter = ne , this . _getAccessTokenPromiseHub = new v ( { createPromise : ( ) => this . requestAuth ( this . setupRequest ( { method : "serverless.auth.user.anonymousAuthorize" , params : "{}" } , "auth" ) ) . then ( ( e3 ) => {
if ( ! e3 . result || ! e3 . result . accessToken )
throw new te ( { code : "AUTH_FAILED" , message : "获取accessToken失败" } ) ;
this . setAccessToken ( e3 . result . accessToken ) ;
} ) , retryRule : w } ) ;
}
get hasAccessToken ( ) {
return ! ! this . accessToken ;
}
setAccessToken ( e2 ) {
this . accessToken = e2 ;
}
requestWrapped ( e2 ) {
2024-07-12 08:50:13 +00:00
return de . wrappedRequest ( e2 , this . adapter . request ) ;
2024-06-03 09:11:28 +00:00
}
requestAuth ( e2 ) {
return this . requestWrapped ( e2 ) ;
}
request ( e2 , t2 ) {
return Promise . resolve ( ) . then ( ( ) => this . hasAccessToken ? t2 ? this . requestWrapped ( e2 ) : this . requestWrapped ( e2 ) . catch ( ( t3 ) => new Promise ( ( e3 , n2 ) => {
! t3 || "GATEWAY_INVALID_TOKEN" !== t3 . code && "InvalidParameter.InvalidToken" !== t3 . code ? n2 ( t3 ) : e3 ( ) ;
} ) . then ( ( ) => this . getAccessToken ( ) ) . then ( ( ) => {
const t4 = this . rebuildRequest ( e2 ) ;
return this . request ( t4 , true ) ;
} ) ) : this . getAccessToken ( ) . then ( ( ) => {
const t3 = this . rebuildRequest ( e2 ) ;
return this . request ( t3 , true ) ;
} ) ) ;
}
rebuildRequest ( e2 ) {
const t2 = Object . assign ( { } , e2 ) ;
2024-07-12 08:50:13 +00:00
return t2 . data . token = this . accessToken , t2 . header [ "x-basement-token" ] = this . accessToken , t2 . header [ "x-serverless-sign" ] = de . sign ( t2 . data , this . config . clientSecret ) , t2 ;
2024-06-03 09:11:28 +00:00
}
setupRequest ( e2 , t2 ) {
const n2 = Object . assign ( { } , e2 , { spaceId : this . config . spaceId , timestamp : Date . now ( ) } ) , s2 = { "Content-Type" : "application/json" } ;
2024-07-12 08:50:13 +00:00
return "auth" !== t2 && ( n2 . token = this . accessToken , s2 [ "x-basement-token" ] = this . accessToken ) , s2 [ "x-serverless-sign" ] = de . sign ( n2 , this . config . clientSecret ) , { url : this . config . requestUrl , method : "POST" , data : n2 , dataType : "json" , header : s2 } ;
2024-06-03 09:11:28 +00:00
}
getAccessToken ( ) {
return this . _getAccessTokenPromiseHub . exec ( ) ;
}
async authorize ( ) {
await this . getAccessToken ( ) ;
}
callFunction ( e2 ) {
const t2 = { method : "serverless.function.runtime.invoke" , params : JSON . stringify ( { functionTarget : e2 . name , functionArgs : e2 . data || { } } ) } ;
return this . request ( this . setupRequest ( t2 ) ) ;
}
getOSSUploadOptionsFromPath ( e2 ) {
const t2 = { method : "serverless.file.resource.generateProximalSign" , params : JSON . stringify ( e2 ) } ;
return this . request ( this . setupRequest ( t2 ) ) ;
}
uploadFileToOSS ( { url : e2 , formData : t2 , name : n2 , filePath : s2 , fileType : r2 , onUploadProgress : i2 } ) {
return new Promise ( ( o2 , a2 ) => {
const c2 = this . adapter . uploadFile ( { url : e2 , formData : t2 , name : n2 , filePath : s2 , fileType : r2 , header : { "X-OSS-server-side-encrpytion" : "AES256" } , success ( e3 ) {
e3 && e3 . statusCode < 400 ? o2 ( e3 ) : a2 ( new te ( { code : "UPLOAD_FAILED" , message : "文件上传失败" } ) ) ;
} , fail ( e3 ) {
a2 ( new te ( { code : e3 . code || "UPLOAD_FAILED" , message : e3 . message || e3 . errMsg || "文件上传失败" } ) ) ;
} } ) ;
"function" == typeof i2 && c2 && "function" == typeof c2 . onProgressUpdate && c2 . onProgressUpdate ( ( e3 ) => {
i2 ( { loaded : e3 . totalBytesSent , total : e3 . totalBytesExpectedToSend } ) ;
} ) ;
} ) ;
}
reportOSSUpload ( e2 ) {
const t2 = { method : "serverless.file.resource.report" , params : JSON . stringify ( e2 ) } ;
return this . request ( this . setupRequest ( t2 ) ) ;
}
async uploadFile ( { filePath : e2 , cloudPath : t2 , fileType : n2 = "image" , cloudPathAsRealPath : s2 = false , onUploadProgress : r2 , config : i2 } ) {
if ( "string" !== f ( t2 ) )
throw new te ( { code : "INVALID_PARAM" , message : "cloudPath必须为字符串类型" } ) ;
if ( ! ( t2 = t2 . trim ( ) ) )
throw new te ( { code : "INVALID_PARAM" , message : "cloudPath不可为空" } ) ;
if ( /:\/\// . test ( t2 ) )
throw new te ( { code : "INVALID_PARAM" , message : "cloudPath不合法" } ) ;
const o2 = i2 && i2 . envType || this . config . envType ;
if ( s2 && ( "/" !== t2 [ 0 ] && ( t2 = "/" + t2 ) , t2 . indexOf ( "\\" ) > - 1 ) )
throw new te ( { code : "INVALID_PARAM" , message : "使用cloudPath作为路径时, cloudPath不可包含“\\”" } ) ;
const a2 = ( await this . getOSSUploadOptionsFromPath ( { env : o2 , filename : s2 ? t2 . split ( "/" ) . pop ( ) : t2 , fileId : s2 ? t2 : void 0 } ) ) . result , c2 = "https://" + a2 . cdnDomain + "/" + a2 . ossPath , { securityToken : u2 , accessKeyId : h2 , signature : l2 , host : d2 , ossPath : p2 , id : g2 , policy : m2 , ossCallbackUrl : y2 } = a2 , _2 = { "Cache-Control" : "max-age=2592000" , "Content-Disposition" : "attachment" , OSSAccessKeyId : h2 , Signature : l2 , host : d2 , id : g2 , key : p2 , policy : m2 , success _action _status : 200 } ;
if ( u2 && ( _2 [ "x-oss-security-token" ] = u2 ) , y2 ) {
const e3 = JSON . stringify ( { callbackUrl : y2 , callbackBody : JSON . stringify ( { fileId : g2 , spaceId : this . config . spaceId } ) , callbackBodyType : "application/json" } ) ;
2024-07-12 08:50:13 +00:00
_2 . callback = de . toBase64 ( e3 ) ;
2024-06-03 09:11:28 +00:00
}
const w2 = { url : "https://" + a2 . host , formData : _2 , fileName : "file" , name : "file" , filePath : e2 , fileType : n2 } ;
if ( await this . uploadFileToOSS ( Object . assign ( { } , w2 , { onUploadProgress : r2 } ) ) , y2 )
return { success : true , filePath : e2 , fileID : c2 } ;
if ( ( await this . reportOSSUpload ( { id : g2 } ) ) . success )
return { success : true , filePath : e2 , fileID : c2 } ;
throw new te ( { code : "UPLOAD_FAILED" , message : "文件上传失败" } ) ;
}
getTempFileURL ( { fileList : e2 } = { } ) {
return new Promise ( ( t2 , n2 ) => {
Array . isArray ( e2 ) && 0 !== e2 . length || n2 ( new te ( { code : "INVALID_PARAM" , message : "fileList的元素必须是非空的字符串" } ) ) , t2 ( { fileList : e2 . map ( ( e3 ) => ( { fileID : e3 , tempFileURL : e3 } ) ) } ) ;
} ) ;
}
async getFileInfo ( { fileList : e2 } = { } ) {
if ( ! Array . isArray ( e2 ) || 0 === e2 . length )
throw new te ( { code : "INVALID_PARAM" , message : "fileList的元素必须是非空的字符串" } ) ;
const t2 = { method : "serverless.file.resource.info" , params : JSON . stringify ( { id : e2 . map ( ( e3 ) => e3 . split ( "?" ) [ 0 ] ) . join ( "," ) } ) } ;
return { fileList : ( await this . request ( this . setupRequest ( t2 ) ) ) . result } ;
}
} ;
2024-07-12 08:50:13 +00:00
var fe = { init ( e2 ) {
const t2 = new pe ( e2 ) , n2 = { signInAnonymously : function ( ) {
2024-06-03 09:11:28 +00:00
return t2 . authorize ( ) ;
} , getLoginState : function ( ) {
return Promise . resolve ( false ) ;
} } ;
return t2 . auth = function ( ) {
return n2 ;
} , t2 . customAuth = t2 . auth , t2 ;
} } ;
2024-07-12 08:50:13 +00:00
const ge = "undefined" != typeof location && "http:" === location . protocol ? "http:" : "https:" ;
var me ;
2024-06-03 09:11:28 +00:00
! function ( e2 ) {
e2 . local = "local" , e2 . none = "none" , e2 . session = "session" ;
2024-07-12 08:50:13 +00:00
} ( me || ( me = { } ) ) ;
var ye = function ( ) {
} , _e = n ( function ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
var n2 ;
e2 . exports = ( n2 = r , function ( e3 ) {
var t3 = n2 , s2 = t3 . lib , r2 = s2 . WordArray , i2 = s2 . Hasher , o2 = t3 . algo , a2 = [ ] , c2 = [ ] ;
! function ( ) {
function t4 ( t5 ) {
for ( var n4 = e3 . sqrt ( t5 ) , s4 = 2 ; s4 <= n4 ; s4 ++ )
if ( ! ( t5 % s4 ) )
return false ;
return true ;
}
function n3 ( e4 ) {
return 4294967296 * ( e4 - ( 0 | e4 ) ) | 0 ;
}
for ( var s3 = 2 , r3 = 0 ; r3 < 64 ; )
t4 ( s3 ) && ( r3 < 8 && ( a2 [ r3 ] = n3 ( e3 . pow ( s3 , 0.5 ) ) ) , c2 [ r3 ] = n3 ( e3 . pow ( s3 , 1 / 3 ) ) , r3 ++ ) , s3 ++ ;
} ( ) ;
var u2 = [ ] , h2 = o2 . SHA256 = i2 . extend ( { _doReset : function ( ) {
this . _hash = new r2 . init ( a2 . slice ( 0 ) ) ;
} , _doProcessBlock : function ( e4 , t4 ) {
for ( var n3 = this . _hash . words , s3 = n3 [ 0 ] , r3 = n3 [ 1 ] , i3 = n3 [ 2 ] , o3 = n3 [ 3 ] , a3 = n3 [ 4 ] , h3 = n3 [ 5 ] , l2 = n3 [ 6 ] , d2 = n3 [ 7 ] , p2 = 0 ; p2 < 64 ; p2 ++ ) {
if ( p2 < 16 )
u2 [ p2 ] = 0 | e4 [ t4 + p2 ] ;
else {
var f2 = u2 [ p2 - 15 ] , g2 = ( f2 << 25 | f2 >>> 7 ) ^ ( f2 << 14 | f2 >>> 18 ) ^ f2 >>> 3 , m2 = u2 [ p2 - 2 ] , y2 = ( m2 << 15 | m2 >>> 17 ) ^ ( m2 << 13 | m2 >>> 19 ) ^ m2 >>> 10 ;
u2 [ p2 ] = g2 + u2 [ p2 - 7 ] + y2 + u2 [ p2 - 16 ] ;
}
var _2 = s3 & r3 ^ s3 & i3 ^ r3 & i3 , w2 = ( s3 << 30 | s3 >>> 2 ) ^ ( s3 << 19 | s3 >>> 13 ) ^ ( s3 << 10 | s3 >>> 22 ) , v2 = d2 + ( ( a3 << 26 | a3 >>> 6 ) ^ ( a3 << 21 | a3 >>> 11 ) ^ ( a3 << 7 | a3 >>> 25 ) ) + ( a3 & h3 ^ ~ a3 & l2 ) + c2 [ p2 ] + u2 [ p2 ] ;
d2 = l2 , l2 = h3 , h3 = a3 , a3 = o3 + v2 | 0 , o3 = i3 , i3 = r3 , r3 = s3 , s3 = v2 + ( w2 + _2 ) | 0 ;
}
n3 [ 0 ] = n3 [ 0 ] + s3 | 0 , n3 [ 1 ] = n3 [ 1 ] + r3 | 0 , n3 [ 2 ] = n3 [ 2 ] + i3 | 0 , n3 [ 3 ] = n3 [ 3 ] + o3 | 0 , n3 [ 4 ] = n3 [ 4 ] + a3 | 0 , n3 [ 5 ] = n3 [ 5 ] + h3 | 0 , n3 [ 6 ] = n3 [ 6 ] + l2 | 0 , n3 [ 7 ] = n3 [ 7 ] + d2 | 0 ;
} , _doFinalize : function ( ) {
var t4 = this . _data , n3 = t4 . words , s3 = 8 * this . _nDataBytes , r3 = 8 * t4 . sigBytes ;
return n3 [ r3 >>> 5 ] |= 128 << 24 - r3 % 32 , n3 [ 14 + ( r3 + 64 >>> 9 << 4 ) ] = e3 . floor ( s3 / 4294967296 ) , n3 [ 15 + ( r3 + 64 >>> 9 << 4 ) ] = s3 , t4 . sigBytes = 4 * n3 . length , this . _process ( ) , this . _hash ;
} , clone : function ( ) {
var e4 = i2 . clone . call ( this ) ;
return e4 . _hash = this . _hash . clone ( ) , e4 ;
} } ) ;
t3 . SHA256 = i2 . _createHelper ( h2 ) , t3 . HmacSHA256 = i2 . _createHmacHelper ( h2 ) ;
} ( Math ) , n2 . SHA256 ) ;
2024-07-12 08:50:13 +00:00
} ) , we = _e , ve = n ( function ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
e2 . exports = r . HmacSHA256 ;
} ) ;
2024-07-12 08:50:13 +00:00
const Ie = ( ) => {
2024-06-03 09:11:28 +00:00
let e2 ;
if ( ! Promise ) {
e2 = ( ) => {
} , e2 . promise = { } ;
const t3 = ( ) => {
throw new te ( { message : 'Your Node runtime does support ES6 Promises. Set "global.Promise" to your preferred implementation of promises.' } ) ;
} ;
return Object . defineProperty ( e2 . promise , "then" , { get : t3 } ) , Object . defineProperty ( e2 . promise , "catch" , { get : t3 } ) , e2 ;
}
const t2 = new Promise ( ( t3 , n2 ) => {
e2 = ( e3 , s2 ) => e3 ? n2 ( e3 ) : t3 ( s2 ) ;
} ) ;
return e2 . promise = t2 , e2 ;
} ;
2024-07-12 08:50:13 +00:00
function Se ( e2 ) {
2024-06-03 09:11:28 +00:00
return void 0 === e2 ;
}
2024-07-12 08:50:13 +00:00
function be ( e2 ) {
2024-06-03 09:11:28 +00:00
return "[object Null]" === Object . prototype . toString . call ( e2 ) ;
}
2024-07-12 08:50:13 +00:00
var ke ;
function Ae ( e2 ) {
2024-06-03 09:11:28 +00:00
const t2 = ( n2 = e2 , "[object Array]" === Object . prototype . toString . call ( n2 ) ? e2 : [ e2 ] ) ;
var n2 ;
for ( const e3 of t2 ) {
const { isMatch : t3 , genAdapter : n3 , runtime : s2 } = e3 ;
if ( t3 ( ) )
return { adapter : n3 ( ) , runtime : s2 } ;
}
}
! function ( e2 ) {
e2 . WEB = "web" , e2 . WX _MP = "wx_mp" ;
2024-07-12 08:50:13 +00:00
} ( ke || ( ke = { } ) ) ;
const Ce = { adapter : null , runtime : void 0 } , Pe = [ "anonymousUuidKey" ] ;
class Te extends ye {
2024-06-03 09:11:28 +00:00
constructor ( ) {
2024-07-12 08:50:13 +00:00
super ( ) , Ce . adapter . root . tcbObject || ( Ce . adapter . root . tcbObject = { } ) ;
2024-06-03 09:11:28 +00:00
}
setItem ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
Ce . adapter . root . tcbObject [ e2 ] = t2 ;
2024-06-03 09:11:28 +00:00
}
getItem ( e2 ) {
2024-07-12 08:50:13 +00:00
return Ce . adapter . root . tcbObject [ e2 ] ;
2024-06-03 09:11:28 +00:00
}
removeItem ( e2 ) {
2024-07-12 08:50:13 +00:00
delete Ce . adapter . root . tcbObject [ e2 ] ;
2024-06-03 09:11:28 +00:00
}
clear ( ) {
2024-07-12 08:50:13 +00:00
delete Ce . adapter . root . tcbObject ;
2024-06-03 09:11:28 +00:00
}
}
2024-07-12 08:50:13 +00:00
function xe ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
switch ( e2 ) {
case "local" :
return t2 . localStorage || new Te ( ) ;
case "none" :
return new Te ( ) ;
default :
return t2 . sessionStorage || new Te ( ) ;
}
}
2024-07-12 08:50:13 +00:00
class Oe {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
if ( ! this . _storage ) {
2024-07-12 08:50:13 +00:00
this . _persistence = Ce . adapter . primaryStorage || e2 . persistence , this . _storage = xe ( this . _persistence , Ce . adapter ) ;
2024-06-03 09:11:28 +00:00
const t2 = ` access_token_ ${ e2 . env } ` , n2 = ` access_token_expire_ ${ e2 . env } ` , s2 = ` refresh_token_ ${ e2 . env } ` , r2 = ` anonymous_uuid_ ${ e2 . env } ` , i2 = ` login_type_ ${ e2 . env } ` , o2 = ` user_info_ ${ e2 . env } ` ;
this . keys = { accessTokenKey : t2 , accessTokenExpireKey : n2 , refreshTokenKey : s2 , anonymousUuidKey : r2 , loginTypeKey : i2 , userInfoKey : o2 } ;
}
}
updatePersistence ( e2 ) {
if ( e2 === this . _persistence )
return ;
const t2 = "local" === this . _persistence ;
this . _persistence = e2 ;
2024-07-12 08:50:13 +00:00
const n2 = xe ( e2 , Ce . adapter ) ;
2024-06-03 09:11:28 +00:00
for ( const e3 in this . keys ) {
const s2 = this . keys [ e3 ] ;
if ( t2 && Pe . includes ( e3 ) )
continue ;
const r2 = this . _storage . getItem ( s2 ) ;
2024-07-12 08:50:13 +00:00
Se ( r2 ) || be ( r2 ) || ( n2 . setItem ( s2 , r2 ) , this . _storage . removeItem ( s2 ) ) ;
2024-06-03 09:11:28 +00:00
}
this . _storage = n2 ;
}
setStore ( e2 , t2 , n2 ) {
if ( ! this . _storage )
return ;
const s2 = { version : n2 || "localCachev1" , content : t2 } , r2 = JSON . stringify ( s2 ) ;
try {
this . _storage . setItem ( e2 , r2 ) ;
} catch ( e3 ) {
throw e3 ;
}
}
getStore ( e2 , t2 ) {
try {
if ( ! this . _storage )
return ;
} catch ( e3 ) {
return "" ;
}
t2 = t2 || "localCachev1" ;
const n2 = this . _storage . getItem ( e2 ) ;
if ( ! n2 )
return "" ;
if ( n2 . indexOf ( t2 ) >= 0 ) {
return JSON . parse ( n2 ) . content ;
}
return "" ;
}
removeStore ( e2 ) {
this . _storage . removeItem ( e2 ) ;
}
}
2024-07-12 08:50:13 +00:00
const Ee = { } , Le = { } ;
function Re ( e2 ) {
return Ee [ e2 ] ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
class Ue {
2024-06-03 09:11:28 +00:00
constructor ( e2 , t2 ) {
this . data = t2 || null , this . name = e2 ;
}
}
2024-07-12 08:50:13 +00:00
class Ne extends Ue {
2024-06-03 09:11:28 +00:00
constructor ( e2 , t2 ) {
super ( "error" , { error : e2 , data : t2 } ) , this . error = e2 ;
}
}
2024-07-12 08:50:13 +00:00
const De = new class {
2024-06-03 09:11:28 +00:00
constructor ( ) {
this . _listeners = { } ;
}
on ( e2 , t2 ) {
return function ( e3 , t3 , n2 ) {
n2 [ e3 ] = n2 [ e3 ] || [ ] , n2 [ e3 ] . push ( t3 ) ;
} ( e2 , t2 , this . _listeners ) , this ;
}
off ( e2 , t2 ) {
return function ( e3 , t3 , n2 ) {
if ( n2 && n2 [ e3 ] ) {
const s2 = n2 [ e3 ] . indexOf ( t3 ) ;
- 1 !== s2 && n2 [ e3 ] . splice ( s2 , 1 ) ;
}
} ( e2 , t2 , this . _listeners ) , this ;
}
fire ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
if ( e2 instanceof Ne )
2024-06-03 09:11:28 +00:00
return console . error ( e2 . error ) , this ;
2024-07-12 08:50:13 +00:00
const n2 = "string" == typeof e2 ? new Ue ( e2 , t2 || { } ) : e2 ;
2024-06-03 09:11:28 +00:00
const s2 = n2 . name ;
if ( this . _listens ( s2 ) ) {
n2 . target = this ;
const e3 = this . _listeners [ s2 ] ? [ ... this . _listeners [ s2 ] ] : [ ] ;
for ( const t3 of e3 )
t3 . call ( this , n2 ) ;
}
return this ;
}
_listens ( e2 ) {
return this . _listeners [ e2 ] && this . _listeners [ e2 ] . length > 0 ;
}
} ( ) ;
2024-07-12 08:50:13 +00:00
function Me ( e2 , t2 ) {
De . on ( e2 , t2 ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function qe ( e2 , t2 = { } ) {
De . fire ( e2 , t2 ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function Fe ( e2 , t2 ) {
De . off ( e2 , t2 ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
const Ke = "loginStateChanged" , je = "loginStateExpire" , $e = "loginTypeChanged" , Be = "anonymousConverted" , We = "refreshAccessToken" ;
var He ;
2024-06-03 09:11:28 +00:00
! function ( e2 ) {
e2 . ANONYMOUS = "ANONYMOUS" , e2 . WECHAT = "WECHAT" , e2 . WECHAT _PUBLIC = "WECHAT-PUBLIC" , e2 . WECHAT _OPEN = "WECHAT-OPEN" , e2 . CUSTOM = "CUSTOM" , e2 . EMAIL = "EMAIL" , e2 . USERNAME = "USERNAME" , e2 . NULL = "NULL" ;
2024-07-12 08:50:13 +00:00
} ( He || ( He = { } ) ) ;
const ze = [ "auth.getJwt" , "auth.logout" , "auth.signInWithTicket" , "auth.signInAnonymously" , "auth.signIn" , "auth.fetchAccessTokenWithRefreshToken" , "auth.signUpWithEmailAndPassword" , "auth.activateEndUserMail" , "auth.sendPasswordResetEmail" , "auth.resetPasswordWithToken" , "auth.isUsernameRegistered" ] , Je = { "X-SDK-Version" : "1.3.5" } ;
function Ve ( e2 , t2 , n2 ) {
2024-06-03 09:11:28 +00:00
const s2 = e2 [ t2 ] ;
e2 [ t2 ] = function ( t3 ) {
const r2 = { } , i2 = { } ;
n2 . forEach ( ( n3 ) => {
const { data : s3 , headers : o3 } = n3 . call ( e2 , t3 ) ;
Object . assign ( r2 , s3 ) , Object . assign ( i2 , o3 ) ;
} ) ;
const o2 = t3 . data ;
return o2 && ( ( ) => {
var e3 ;
if ( e3 = o2 , "[object FormData]" !== Object . prototype . toString . call ( e3 ) )
t3 . data = { ... o2 , ... r2 } ;
else
for ( const e4 in r2 )
o2 . append ( e4 , r2 [ e4 ] ) ;
} ) ( ) , t3 . headers = { ... t3 . headers || { } , ... i2 } , s2 . call ( e2 , t3 ) ;
} ;
}
function Ge ( ) {
const e2 = Math . random ( ) . toString ( 16 ) . slice ( 2 ) ;
2024-07-12 08:50:13 +00:00
return { data : { seqId : e2 } , headers : { ... Je , "x-seqid" : e2 } } ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
class Ye {
2024-06-03 09:11:28 +00:00
constructor ( e2 = { } ) {
var t2 ;
2024-07-12 08:50:13 +00:00
this . config = e2 , this . _reqClass = new Ce . adapter . reqClass ( { timeout : this . config . timeout , timeoutMsg : ` 请求在 ${ this . config . timeout / 1e3 } s内未完成, 已中断 ` , restrictedMethods : [ "post" ] } ) , this . _cache = Re ( this . config . env ) , this . _localCache = ( t2 = this . config . env , Le [ t2 ] ) , Ve ( this . _reqClass , "post" , [ Ge ] ) , Ve ( this . _reqClass , "upload" , [ Ge ] ) , Ve ( this . _reqClass , "download" , [ Ge ] ) ;
2024-06-03 09:11:28 +00:00
}
async post ( e2 ) {
return await this . _reqClass . post ( e2 ) ;
}
async upload ( e2 ) {
return await this . _reqClass . upload ( e2 ) ;
}
async download ( e2 ) {
return await this . _reqClass . download ( e2 ) ;
}
async refreshAccessToken ( ) {
let e2 , t2 ;
this . _refreshAccessTokenPromise || ( this . _refreshAccessTokenPromise = this . _refreshAccessToken ( ) ) ;
try {
e2 = await this . _refreshAccessTokenPromise ;
} catch ( e3 ) {
t2 = e3 ;
}
if ( this . _refreshAccessTokenPromise = null , this . _shouldRefreshAccessTokenHook = null , t2 )
throw t2 ;
return e2 ;
}
async _refreshAccessToken ( ) {
const { accessTokenKey : e2 , accessTokenExpireKey : t2 , refreshTokenKey : n2 , loginTypeKey : s2 , anonymousUuidKey : r2 } = this . _cache . keys ;
this . _cache . removeStore ( e2 ) , this . _cache . removeStore ( t2 ) ;
let i2 = this . _cache . getStore ( n2 ) ;
if ( ! i2 )
throw new te ( { message : "未登录CloudBase" } ) ;
const o2 = { refresh _token : i2 } , a2 = await this . request ( "auth.fetchAccessTokenWithRefreshToken" , o2 ) ;
if ( a2 . data . code ) {
const { code : e3 } = a2 . data ;
if ( "SIGN_PARAM_INVALID" === e3 || "REFRESH_TOKEN_EXPIRED" === e3 || "INVALID_REFRESH_TOKEN" === e3 ) {
2024-07-12 08:50:13 +00:00
if ( this . _cache . getStore ( s2 ) === He . ANONYMOUS && "INVALID_REFRESH_TOKEN" === e3 ) {
2024-06-03 09:11:28 +00:00
const e4 = this . _cache . getStore ( r2 ) , t3 = this . _cache . getStore ( n2 ) , s3 = await this . send ( "auth.signInAnonymously" , { anonymous _uuid : e4 , refresh _token : t3 } ) ;
return this . setRefreshToken ( s3 . refresh _token ) , this . _refreshAccessToken ( ) ;
}
2024-07-12 08:50:13 +00:00
qe ( je ) , this . _cache . removeStore ( n2 ) ;
2024-06-03 09:11:28 +00:00
}
throw new te ( { code : a2 . data . code , message : ` 刷新access token失败: ${ a2 . data . code } ` } ) ;
}
if ( a2 . data . access _token )
2024-07-12 08:50:13 +00:00
return qe ( We ) , this . _cache . setStore ( e2 , a2 . data . access _token ) , this . _cache . setStore ( t2 , a2 . data . access _token _expire + Date . now ( ) ) , { accessToken : a2 . data . access _token , accessTokenExpire : a2 . data . access _token _expire } ;
2024-06-03 09:11:28 +00:00
a2 . data . refresh _token && ( this . _cache . removeStore ( n2 ) , this . _cache . setStore ( n2 , a2 . data . refresh _token ) , this . _refreshAccessToken ( ) ) ;
}
async getAccessToken ( ) {
const { accessTokenKey : e2 , accessTokenExpireKey : t2 , refreshTokenKey : n2 } = this . _cache . keys ;
if ( ! this . _cache . getStore ( n2 ) )
throw new te ( { message : "refresh token不存在, 登录状态异常" } ) ;
let s2 = this . _cache . getStore ( e2 ) , r2 = this . _cache . getStore ( t2 ) , i2 = true ;
return this . _shouldRefreshAccessTokenHook && ! await this . _shouldRefreshAccessTokenHook ( s2 , r2 ) && ( i2 = false ) , ( ! s2 || ! r2 || r2 < Date . now ( ) ) && i2 ? this . refreshAccessToken ( ) : { accessToken : s2 , accessTokenExpire : r2 } ;
}
async request ( e2 , t2 , n2 ) {
const s2 = ` x-tcb-trace_ ${ this . config . env } ` ;
let r2 = "application/x-www-form-urlencoded" ;
const i2 = { action : e2 , env : this . config . env , dataVersion : "2019-08-16" , ... t2 } ;
2024-07-12 08:50:13 +00:00
if ( - 1 === ze . indexOf ( e2 ) ) {
2024-06-03 09:11:28 +00:00
const { refreshTokenKey : e3 } = this . _cache . keys ;
this . _cache . getStore ( e3 ) && ( i2 . access _token = ( await this . getAccessToken ( ) ) . accessToken ) ;
}
let o2 ;
if ( "storage.uploadFile" === e2 ) {
o2 = new FormData ( ) ;
for ( let e3 in o2 )
o2 . hasOwnProperty ( e3 ) && void 0 !== o2 [ e3 ] && o2 . append ( e3 , i2 [ e3 ] ) ;
r2 = "multipart/form-data" ;
} else {
r2 = "application/json" , o2 = { } ;
for ( let e3 in i2 )
void 0 !== i2 [ e3 ] && ( o2 [ e3 ] = i2 [ e3 ] ) ;
}
let a2 = { headers : { "content-type" : r2 } } ;
n2 && n2 . onUploadProgress && ( a2 . onUploadProgress = n2 . onUploadProgress ) ;
const c2 = this . _localCache . getStore ( s2 ) ;
c2 && ( a2 . headers [ "X-TCB-Trace" ] = c2 ) ;
const { parse : u2 , inQuery : h2 , search : l2 } = t2 ;
let d2 = { env : this . config . env } ;
u2 && ( d2 . parse = true ) , h2 && ( d2 = { ... h2 , ... d2 } ) ;
let p2 = function ( e3 , t3 , n3 = { } ) {
const s3 = /\?/ . test ( t3 ) ;
let r3 = "" ;
for ( let e4 in n3 )
"" === r3 ? ! s3 && ( t3 += "?" ) : r3 += "&" , r3 += ` ${ e4 } = ${ encodeURIComponent ( n3 [ e4 ] ) } ` ;
return /^http(s)?\:\/\// . test ( t3 += r3 ) ? t3 : ` ${ e3 } ${ t3 } ` ;
2024-07-12 08:50:13 +00:00
} ( ge , "//tcb-api.tencentcloudapi.com/web" , d2 ) ;
2024-06-03 09:11:28 +00:00
l2 && ( p2 += l2 ) ;
const f2 = await this . post ( { url : p2 , data : o2 , ... a2 } ) , g2 = f2 . header && f2 . header [ "x-tcb-trace" ] ;
if ( g2 && this . _localCache . setStore ( s2 , g2 ) , 200 !== Number ( f2 . status ) && 200 !== Number ( f2 . statusCode ) || ! f2 . data )
throw new te ( { code : "NETWORK_ERROR" , message : "network request error" } ) ;
return f2 ;
}
async send ( e2 , t2 = { } ) {
const n2 = await this . request ( e2 , t2 , { onUploadProgress : t2 . onUploadProgress } ) ;
2024-07-12 08:50:13 +00:00
if ( "ACCESS_TOKEN_EXPIRED" === n2 . data . code && - 1 === ze . indexOf ( e2 ) ) {
2024-06-03 09:11:28 +00:00
await this . refreshAccessToken ( ) ;
const n3 = await this . request ( e2 , t2 , { onUploadProgress : t2 . onUploadProgress } ) ;
if ( n3 . data . code )
throw new te ( { code : n3 . data . code , message : n3 . data . message } ) ;
return n3 . data ;
}
if ( n2 . data . code )
throw new te ( { code : n2 . data . code , message : n2 . data . message } ) ;
return n2 . data ;
}
setRefreshToken ( e2 ) {
const { accessTokenKey : t2 , accessTokenExpireKey : n2 , refreshTokenKey : s2 } = this . _cache . keys ;
this . _cache . removeStore ( t2 ) , this . _cache . removeStore ( n2 ) , this . _cache . setStore ( s2 , e2 ) ;
}
}
2024-07-12 08:50:13 +00:00
const Qe = { } ;
function Xe ( e2 ) {
return Qe [ e2 ] ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
class Ze {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
2024-07-12 08:50:13 +00:00
this . config = e2 , this . _cache = Re ( e2 . env ) , this . _request = Xe ( e2 . env ) ;
2024-06-03 09:11:28 +00:00
}
setRefreshToken ( e2 ) {
const { accessTokenKey : t2 , accessTokenExpireKey : n2 , refreshTokenKey : s2 } = this . _cache . keys ;
this . _cache . removeStore ( t2 ) , this . _cache . removeStore ( n2 ) , this . _cache . setStore ( s2 , e2 ) ;
}
setAccessToken ( e2 , t2 ) {
const { accessTokenKey : n2 , accessTokenExpireKey : s2 } = this . _cache . keys ;
this . _cache . setStore ( n2 , e2 ) , this . _cache . setStore ( s2 , t2 ) ;
}
async refreshUserInfo ( ) {
const { data : e2 } = await this . _request . send ( "auth.getUserInfo" , { } ) ;
return this . setLocalUserInfo ( e2 ) , e2 ;
}
setLocalUserInfo ( e2 ) {
const { userInfoKey : t2 } = this . _cache . keys ;
this . _cache . setStore ( t2 , e2 ) ;
}
}
2024-07-12 08:50:13 +00:00
class et {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
if ( ! e2 )
throw new te ( { code : "PARAM_ERROR" , message : "envId is not defined" } ) ;
2024-07-12 08:50:13 +00:00
this . _envId = e2 , this . _cache = Re ( this . _envId ) , this . _request = Xe ( this . _envId ) , this . setUserInfo ( ) ;
2024-06-03 09:11:28 +00:00
}
linkWithTicket ( e2 ) {
if ( "string" != typeof e2 )
throw new te ( { code : "PARAM_ERROR" , message : "ticket must be string" } ) ;
return this . _request . send ( "auth.linkWithTicket" , { ticket : e2 } ) ;
}
linkWithRedirect ( e2 ) {
e2 . signInWithRedirect ( ) ;
}
updatePassword ( e2 , t2 ) {
return this . _request . send ( "auth.updatePassword" , { oldPassword : t2 , newPassword : e2 } ) ;
}
updateEmail ( e2 ) {
return this . _request . send ( "auth.updateEmail" , { newEmail : e2 } ) ;
}
updateUsername ( e2 ) {
if ( "string" != typeof e2 )
throw new te ( { code : "PARAM_ERROR" , message : "username must be a string" } ) ;
return this . _request . send ( "auth.updateUsername" , { username : e2 } ) ;
}
async getLinkedUidList ( ) {
const { data : e2 } = await this . _request . send ( "auth.getLinkedUidList" , { } ) ;
let t2 = false ;
const { users : n2 } = e2 ;
return n2 . forEach ( ( e3 ) => {
e3 . wxOpenId && e3 . wxPublicId && ( t2 = true ) ;
} ) , { users : n2 , hasPrimaryUid : t2 } ;
}
setPrimaryUid ( e2 ) {
return this . _request . send ( "auth.setPrimaryUid" , { uid : e2 } ) ;
}
unlink ( e2 ) {
return this . _request . send ( "auth.unlink" , { platform : e2 } ) ;
}
async update ( e2 ) {
const { nickName : t2 , gender : n2 , avatarUrl : s2 , province : r2 , country : i2 , city : o2 } = e2 , { data : a2 } = await this . _request . send ( "auth.updateUserInfo" , { nickName : t2 , gender : n2 , avatarUrl : s2 , province : r2 , country : i2 , city : o2 } ) ;
this . setLocalUserInfo ( a2 ) ;
}
async refresh ( ) {
const { data : e2 } = await this . _request . send ( "auth.getUserInfo" , { } ) ;
return this . setLocalUserInfo ( e2 ) , e2 ;
}
setUserInfo ( ) {
const { userInfoKey : e2 } = this . _cache . keys , t2 = this . _cache . getStore ( e2 ) ;
[ "uid" , "loginType" , "openid" , "wxOpenId" , "wxPublicId" , "unionId" , "qqMiniOpenId" , "email" , "hasPassword" , "customUserId" , "nickName" , "gender" , "avatarUrl" ] . forEach ( ( e3 ) => {
this [ e3 ] = t2 [ e3 ] ;
} ) , this . location = { country : t2 . country , province : t2 . province , city : t2 . city } ;
}
setLocalUserInfo ( e2 ) {
const { userInfoKey : t2 } = this . _cache . keys ;
this . _cache . setStore ( t2 , e2 ) , this . setUserInfo ( ) ;
}
}
2024-07-12 08:50:13 +00:00
class tt {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
if ( ! e2 )
throw new te ( { code : "PARAM_ERROR" , message : "envId is not defined" } ) ;
2024-07-12 08:50:13 +00:00
this . _cache = Re ( e2 ) ;
2024-06-03 09:11:28 +00:00
const { refreshTokenKey : t2 , accessTokenKey : n2 , accessTokenExpireKey : s2 } = this . _cache . keys , r2 = this . _cache . getStore ( t2 ) , i2 = this . _cache . getStore ( n2 ) , o2 = this . _cache . getStore ( s2 ) ;
2024-07-12 08:50:13 +00:00
this . credential = { refreshToken : r2 , accessToken : i2 , accessTokenExpire : o2 } , this . user = new et ( e2 ) ;
2024-06-03 09:11:28 +00:00
}
get isAnonymousAuth ( ) {
2024-07-12 08:50:13 +00:00
return this . loginType === He . ANONYMOUS ;
2024-06-03 09:11:28 +00:00
}
get isCustomAuth ( ) {
2024-07-12 08:50:13 +00:00
return this . loginType === He . CUSTOM ;
2024-06-03 09:11:28 +00:00
}
get isWeixinAuth ( ) {
2024-07-12 08:50:13 +00:00
return this . loginType === He . WECHAT || this . loginType === He . WECHAT _OPEN || this . loginType === He . WECHAT _PUBLIC ;
2024-06-03 09:11:28 +00:00
}
get loginType ( ) {
return this . _cache . getStore ( this . _cache . keys . loginTypeKey ) ;
}
}
2024-07-12 08:50:13 +00:00
class nt extends Ze {
2024-06-03 09:11:28 +00:00
async signIn ( ) {
this . _cache . updatePersistence ( "local" ) ;
const { anonymousUuidKey : e2 , refreshTokenKey : t2 } = this . _cache . keys , n2 = this . _cache . getStore ( e2 ) || void 0 , s2 = this . _cache . getStore ( t2 ) || void 0 , r2 = await this . _request . send ( "auth.signInAnonymously" , { anonymous _uuid : n2 , refresh _token : s2 } ) ;
if ( r2 . uuid && r2 . refresh _token ) {
2024-07-12 08:50:13 +00:00
this . _setAnonymousUUID ( r2 . uuid ) , this . setRefreshToken ( r2 . refresh _token ) , await this . _request . refreshAccessToken ( ) , qe ( Ke ) , qe ( $e , { env : this . config . env , loginType : He . ANONYMOUS , persistence : "local" } ) ;
const e3 = new tt ( this . config . env ) ;
2024-06-03 09:11:28 +00:00
return await e3 . user . refresh ( ) , e3 ;
}
throw new te ( { message : "匿名登录失败" } ) ;
}
async linkAndRetrieveDataWithTicket ( e2 ) {
const { anonymousUuidKey : t2 , refreshTokenKey : n2 } = this . _cache . keys , s2 = this . _cache . getStore ( t2 ) , r2 = this . _cache . getStore ( n2 ) , i2 = await this . _request . send ( "auth.linkAndRetrieveDataWithTicket" , { anonymous _uuid : s2 , refresh _token : r2 , ticket : e2 } ) ;
if ( i2 . refresh _token )
2024-07-12 08:50:13 +00:00
return this . _clearAnonymousUUID ( ) , this . setRefreshToken ( i2 . refresh _token ) , await this . _request . refreshAccessToken ( ) , qe ( Be , { env : this . config . env } ) , qe ( $e , { loginType : He . CUSTOM , persistence : "local" } ) , { credential : { refreshToken : i2 . refresh _token } } ;
2024-06-03 09:11:28 +00:00
throw new te ( { message : "匿名转化失败" } ) ;
}
_setAnonymousUUID ( e2 ) {
const { anonymousUuidKey : t2 , loginTypeKey : n2 } = this . _cache . keys ;
2024-07-12 08:50:13 +00:00
this . _cache . removeStore ( t2 ) , this . _cache . setStore ( t2 , e2 ) , this . _cache . setStore ( n2 , He . ANONYMOUS ) ;
2024-06-03 09:11:28 +00:00
}
_clearAnonymousUUID ( ) {
this . _cache . removeStore ( this . _cache . keys . anonymousUuidKey ) ;
}
}
2024-07-12 08:50:13 +00:00
class st extends Ze {
2024-06-03 09:11:28 +00:00
async signIn ( e2 ) {
if ( "string" != typeof e2 )
throw new te ( { code : "PARAM_ERROR" , message : "ticket must be a string" } ) ;
const { refreshTokenKey : t2 } = this . _cache . keys , n2 = await this . _request . send ( "auth.signInWithTicket" , { ticket : e2 , refresh _token : this . _cache . getStore ( t2 ) || "" } ) ;
if ( n2 . refresh _token )
2024-07-12 08:50:13 +00:00
return this . setRefreshToken ( n2 . refresh _token ) , await this . _request . refreshAccessToken ( ) , qe ( Ke ) , qe ( $e , { env : this . config . env , loginType : He . CUSTOM , persistence : this . config . persistence } ) , await this . refreshUserInfo ( ) , new tt ( this . config . env ) ;
2024-06-03 09:11:28 +00:00
throw new te ( { message : "自定义登录失败" } ) ;
}
}
2024-07-12 08:50:13 +00:00
class rt extends Ze {
2024-06-03 09:11:28 +00:00
async signIn ( e2 , t2 ) {
if ( "string" != typeof e2 )
throw new te ( { code : "PARAM_ERROR" , message : "email must be a string" } ) ;
const { refreshTokenKey : n2 } = this . _cache . keys , s2 = await this . _request . send ( "auth.signIn" , { loginType : "EMAIL" , email : e2 , password : t2 , refresh _token : this . _cache . getStore ( n2 ) || "" } ) , { refresh _token : r2 , access _token : i2 , access _token _expire : o2 } = s2 ;
if ( r2 )
2024-07-12 08:50:13 +00:00
return this . setRefreshToken ( r2 ) , i2 && o2 ? this . setAccessToken ( i2 , o2 ) : await this . _request . refreshAccessToken ( ) , await this . refreshUserInfo ( ) , qe ( Ke ) , qe ( $e , { env : this . config . env , loginType : He . EMAIL , persistence : this . config . persistence } ) , new tt ( this . config . env ) ;
2024-06-03 09:11:28 +00:00
throw s2 . code ? new te ( { code : s2 . code , message : ` 邮箱登录失败: ${ s2 . message } ` } ) : new te ( { message : "邮箱登录失败" } ) ;
}
async activate ( e2 ) {
return this . _request . send ( "auth.activateEndUserMail" , { token : e2 } ) ;
}
async resetPasswordWithToken ( e2 , t2 ) {
return this . _request . send ( "auth.resetPasswordWithToken" , { token : e2 , newPassword : t2 } ) ;
}
}
2024-07-12 08:50:13 +00:00
class it extends Ze {
2024-06-03 09:11:28 +00:00
async signIn ( e2 , t2 ) {
if ( "string" != typeof e2 )
throw new te ( { code : "PARAM_ERROR" , message : "username must be a string" } ) ;
"string" != typeof t2 && ( t2 = "" , console . warn ( "password is empty" ) ) ;
2024-07-12 08:50:13 +00:00
const { refreshTokenKey : n2 } = this . _cache . keys , s2 = await this . _request . send ( "auth.signIn" , { loginType : He . USERNAME , username : e2 , password : t2 , refresh _token : this . _cache . getStore ( n2 ) || "" } ) , { refresh _token : r2 , access _token _expire : i2 , access _token : o2 } = s2 ;
2024-06-03 09:11:28 +00:00
if ( r2 )
2024-07-12 08:50:13 +00:00
return this . setRefreshToken ( r2 ) , o2 && i2 ? this . setAccessToken ( o2 , i2 ) : await this . _request . refreshAccessToken ( ) , await this . refreshUserInfo ( ) , qe ( Ke ) , qe ( $e , { env : this . config . env , loginType : He . USERNAME , persistence : this . config . persistence } ) , new tt ( this . config . env ) ;
2024-06-03 09:11:28 +00:00
throw s2 . code ? new te ( { code : s2 . code , message : ` 用户名密码登录失败: ${ s2 . message } ` } ) : new te ( { message : "用户名密码登录失败" } ) ;
}
}
2024-07-12 08:50:13 +00:00
class ot {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
2024-07-12 08:50:13 +00:00
this . config = e2 , this . _cache = Re ( e2 . env ) , this . _request = Xe ( e2 . env ) , this . _onAnonymousConverted = this . _onAnonymousConverted . bind ( this ) , this . _onLoginTypeChanged = this . _onLoginTypeChanged . bind ( this ) , Me ( $e , this . _onLoginTypeChanged ) ;
2024-06-03 09:11:28 +00:00
}
get currentUser ( ) {
const e2 = this . hasLoginState ( ) ;
return e2 && e2 . user || null ;
}
get loginType ( ) {
return this . _cache . getStore ( this . _cache . keys . loginTypeKey ) ;
}
anonymousAuthProvider ( ) {
2024-07-12 08:50:13 +00:00
return new nt ( this . config ) ;
2024-06-03 09:11:28 +00:00
}
customAuthProvider ( ) {
2024-07-12 08:50:13 +00:00
return new st ( this . config ) ;
2024-06-03 09:11:28 +00:00
}
emailAuthProvider ( ) {
2024-07-12 08:50:13 +00:00
return new rt ( this . config ) ;
2024-06-03 09:11:28 +00:00
}
usernameAuthProvider ( ) {
2024-07-12 08:50:13 +00:00
return new it ( this . config ) ;
2024-06-03 09:11:28 +00:00
}
async signInAnonymously ( ) {
2024-07-12 08:50:13 +00:00
return new nt ( this . config ) . signIn ( ) ;
2024-06-03 09:11:28 +00:00
}
async signInWithEmailAndPassword ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return new rt ( this . config ) . signIn ( e2 , t2 ) ;
2024-06-03 09:11:28 +00:00
}
signInWithUsernameAndPassword ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return new it ( this . config ) . signIn ( e2 , t2 ) ;
2024-06-03 09:11:28 +00:00
}
async linkAndRetrieveDataWithTicket ( e2 ) {
2024-07-12 08:50:13 +00:00
this . _anonymousAuthProvider || ( this . _anonymousAuthProvider = new nt ( this . config ) ) , Me ( Be , this . _onAnonymousConverted ) ;
2024-06-03 09:11:28 +00:00
return await this . _anonymousAuthProvider . linkAndRetrieveDataWithTicket ( e2 ) ;
}
async signOut ( ) {
2024-07-12 08:50:13 +00:00
if ( this . loginType === He . ANONYMOUS )
2024-06-03 09:11:28 +00:00
throw new te ( { message : "匿名用户不支持登出操作" } ) ;
const { refreshTokenKey : e2 , accessTokenKey : t2 , accessTokenExpireKey : n2 } = this . _cache . keys , s2 = this . _cache . getStore ( e2 ) ;
if ( ! s2 )
return ;
const r2 = await this . _request . send ( "auth.logout" , { refresh _token : s2 } ) ;
2024-07-12 08:50:13 +00:00
return this . _cache . removeStore ( e2 ) , this . _cache . removeStore ( t2 ) , this . _cache . removeStore ( n2 ) , qe ( Ke ) , qe ( $e , { env : this . config . env , loginType : He . NULL , persistence : this . config . persistence } ) , r2 ;
2024-06-03 09:11:28 +00:00
}
async signUpWithEmailAndPassword ( e2 , t2 ) {
return this . _request . send ( "auth.signUpWithEmailAndPassword" , { email : e2 , password : t2 } ) ;
}
async sendPasswordResetEmail ( e2 ) {
return this . _request . send ( "auth.sendPasswordResetEmail" , { email : e2 } ) ;
}
onLoginStateChanged ( e2 ) {
2024-07-12 08:50:13 +00:00
Me ( Ke , ( ) => {
2024-06-03 09:11:28 +00:00
const t3 = this . hasLoginState ( ) ;
e2 . call ( this , t3 ) ;
} ) ;
const t2 = this . hasLoginState ( ) ;
e2 . call ( this , t2 ) ;
}
onLoginStateExpired ( e2 ) {
2024-07-12 08:50:13 +00:00
Me ( je , e2 . bind ( this ) ) ;
2024-06-03 09:11:28 +00:00
}
onAccessTokenRefreshed ( e2 ) {
2024-07-12 08:50:13 +00:00
Me ( We , e2 . bind ( this ) ) ;
2024-06-03 09:11:28 +00:00
}
onAnonymousConverted ( e2 ) {
2024-07-12 08:50:13 +00:00
Me ( Be , e2 . bind ( this ) ) ;
2024-06-03 09:11:28 +00:00
}
onLoginTypeChanged ( e2 ) {
2024-07-12 08:50:13 +00:00
Me ( $e , ( ) => {
2024-06-03 09:11:28 +00:00
const t2 = this . hasLoginState ( ) ;
e2 . call ( this , t2 ) ;
} ) ;
}
async getAccessToken ( ) {
return { accessToken : ( await this . _request . getAccessToken ( ) ) . accessToken , env : this . config . env } ;
}
hasLoginState ( ) {
const { refreshTokenKey : e2 } = this . _cache . keys ;
2024-07-12 08:50:13 +00:00
return this . _cache . getStore ( e2 ) ? new tt ( this . config . env ) : null ;
2024-06-03 09:11:28 +00:00
}
async isUsernameRegistered ( e2 ) {
if ( "string" != typeof e2 )
throw new te ( { code : "PARAM_ERROR" , message : "username must be a string" } ) ;
const { data : t2 } = await this . _request . send ( "auth.isUsernameRegistered" , { username : e2 } ) ;
return t2 && t2 . isRegistered ;
}
getLoginState ( ) {
return Promise . resolve ( this . hasLoginState ( ) ) ;
}
async signInWithTicket ( e2 ) {
2024-07-12 08:50:13 +00:00
return new st ( this . config ) . signIn ( e2 ) ;
2024-06-03 09:11:28 +00:00
}
shouldRefreshAccessToken ( e2 ) {
this . _request . _shouldRefreshAccessTokenHook = e2 . bind ( this ) ;
}
getUserInfo ( ) {
return this . _request . send ( "auth.getUserInfo" , { } ) . then ( ( e2 ) => e2 . code ? e2 : { ... e2 . data , requestId : e2 . seqId } ) ;
}
getAuthHeader ( ) {
const { refreshTokenKey : e2 , accessTokenKey : t2 } = this . _cache . keys , n2 = this . _cache . getStore ( e2 ) ;
return { "x-cloudbase-credentials" : this . _cache . getStore ( t2 ) + "/@@/" + n2 } ;
}
_onAnonymousConverted ( e2 ) {
const { env : t2 } = e2 . data ;
t2 === this . config . env && this . _cache . updatePersistence ( this . config . persistence ) ;
}
_onLoginTypeChanged ( e2 ) {
const { loginType : t2 , persistence : n2 , env : s2 } = e2 . data ;
s2 === this . config . env && ( this . _cache . updatePersistence ( n2 ) , this . _cache . setStore ( this . _cache . keys . loginTypeKey , t2 ) ) ;
}
}
2024-07-12 08:50:13 +00:00
const at = function ( e2 , t2 ) {
t2 = t2 || Ie ( ) ;
const n2 = Xe ( this . config . env ) , { cloudPath : s2 , filePath : r2 , onUploadProgress : i2 , fileType : o2 = "image" } = e2 ;
2024-06-03 09:11:28 +00:00
return n2 . send ( "storage.getUploadMetadata" , { path : s2 } ) . then ( ( e3 ) => {
const { data : { url : a2 , authorization : c2 , token : u2 , fileId : h2 , cosFileId : l2 } , requestId : d2 } = e3 , p2 = { key : s2 , signature : c2 , "x-cos-meta-fileid" : l2 , success _action _status : "201" , "x-cos-security-token" : u2 } ;
n2 . upload ( { url : a2 , data : p2 , file : r2 , name : s2 , fileType : o2 , onUploadProgress : i2 } ) . then ( ( e4 ) => {
201 === e4 . statusCode ? t2 ( null , { fileID : h2 , requestId : d2 } ) : t2 ( new te ( { code : "STORAGE_REQUEST_FAIL" , message : ` STORAGE_REQUEST_FAIL: ${ e4 . data } ` } ) ) ;
} ) . catch ( ( e4 ) => {
t2 ( e4 ) ;
} ) ;
} ) . catch ( ( e3 ) => {
t2 ( e3 ) ;
} ) , t2 . promise ;
2024-07-12 08:50:13 +00:00
} , ct = function ( e2 , t2 ) {
t2 = t2 || Ie ( ) ;
const n2 = Xe ( this . config . env ) , { cloudPath : s2 } = e2 ;
2024-06-03 09:11:28 +00:00
return n2 . send ( "storage.getUploadMetadata" , { path : s2 } ) . then ( ( e3 ) => {
t2 ( null , e3 ) ;
} ) . catch ( ( e3 ) => {
t2 ( e3 ) ;
} ) , t2 . promise ;
2024-07-12 08:50:13 +00:00
} , ut = function ( { fileList : e2 } , t2 ) {
if ( t2 = t2 || Ie ( ) , ! e2 || ! Array . isArray ( e2 ) )
2024-06-03 09:11:28 +00:00
return { code : "INVALID_PARAM" , message : "fileList必须是非空的数组" } ;
for ( let t3 of e2 )
if ( ! t3 || "string" != typeof t3 )
return { code : "INVALID_PARAM" , message : "fileList的元素必须是非空的字符串" } ;
const n2 = { fileid _list : e2 } ;
2024-07-12 08:50:13 +00:00
return Xe ( this . config . env ) . send ( "storage.batchDeleteFile" , n2 ) . then ( ( e3 ) => {
2024-06-03 09:11:28 +00:00
e3 . code ? t2 ( null , e3 ) : t2 ( null , { fileList : e3 . data . delete _list , requestId : e3 . requestId } ) ;
} ) . catch ( ( e3 ) => {
t2 ( e3 ) ;
} ) , t2 . promise ;
2024-07-12 08:50:13 +00:00
} , ht = function ( { fileList : e2 } , t2 ) {
t2 = t2 || Ie ( ) , e2 && Array . isArray ( e2 ) || t2 ( null , { code : "INVALID_PARAM" , message : "fileList必须是非空的数组" } ) ;
2024-06-03 09:11:28 +00:00
let n2 = [ ] ;
for ( let s3 of e2 )
"object" == typeof s3 ? ( s3 . hasOwnProperty ( "fileID" ) && s3 . hasOwnProperty ( "maxAge" ) || t2 ( null , { code : "INVALID_PARAM" , message : "fileList的元素必须是包含fileID和maxAge的对象" } ) , n2 . push ( { fileid : s3 . fileID , max _age : s3 . maxAge } ) ) : "string" == typeof s3 ? n2 . push ( { fileid : s3 } ) : t2 ( null , { code : "INVALID_PARAM" , message : "fileList的元素必须是字符串" } ) ;
const s2 = { file _list : n2 } ;
2024-07-12 08:50:13 +00:00
return Xe ( this . config . env ) . send ( "storage.batchGetDownloadUrl" , s2 ) . then ( ( e3 ) => {
2024-06-03 09:11:28 +00:00
e3 . code ? t2 ( null , e3 ) : t2 ( null , { fileList : e3 . data . download _list , requestId : e3 . requestId } ) ;
} ) . catch ( ( e3 ) => {
t2 ( e3 ) ;
} ) , t2 . promise ;
2024-07-12 08:50:13 +00:00
} , lt = async function ( { fileID : e2 } , t2 ) {
const n2 = ( await ht . call ( this , { fileList : [ { fileID : e2 , maxAge : 600 } ] } ) ) . fileList [ 0 ] ;
2024-06-03 09:11:28 +00:00
if ( "SUCCESS" !== n2 . code )
return t2 ? t2 ( n2 ) : new Promise ( ( e3 ) => {
e3 ( n2 ) ;
} ) ;
2024-07-12 08:50:13 +00:00
const s2 = Xe ( this . config . env ) ;
2024-06-03 09:11:28 +00:00
let r2 = n2 . download _url ;
if ( r2 = encodeURI ( r2 ) , ! t2 )
return s2 . download ( { url : r2 } ) ;
t2 ( await s2 . download ( { url : r2 } ) ) ;
2024-07-12 08:50:13 +00:00
} , dt = function ( { name : e2 , data : t2 , query : n2 , parse : s2 , search : r2 } , i2 ) {
const o2 = i2 || Ie ( ) ;
2024-06-03 09:11:28 +00:00
let a2 ;
try {
a2 = t2 ? JSON . stringify ( t2 ) : "" ;
} catch ( e3 ) {
return Promise . reject ( e3 ) ;
}
if ( ! e2 )
return Promise . reject ( new te ( { code : "PARAM_ERROR" , message : "函数名不能为空" } ) ) ;
const c2 = { inQuery : n2 , parse : s2 , search : r2 , function _name : e2 , request _data : a2 } ;
2024-07-12 08:50:13 +00:00
return Xe ( this . config . env ) . send ( "functions.invokeFunction" , c2 ) . then ( ( e3 ) => {
2024-06-03 09:11:28 +00:00
if ( e3 . code )
o2 ( null , e3 ) ;
else {
let t3 = e3 . data . response _data ;
if ( s2 )
o2 ( null , { result : t3 , requestId : e3 . requestId } ) ;
else
try {
t3 = JSON . parse ( e3 . data . response _data ) , o2 ( null , { result : t3 , requestId : e3 . requestId } ) ;
} catch ( e4 ) {
o2 ( new te ( { message : "response data must be json" } ) ) ;
}
}
return o2 . promise ;
} ) . catch ( ( e3 ) => {
o2 ( e3 ) ;
} ) , o2 . promise ;
2024-07-12 08:50:13 +00:00
} , pt = { timeout : 15e3 , persistence : "session" } , ft = { } ;
class gt {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
this . config = e2 || this . config , this . authObj = void 0 ;
}
init ( e2 ) {
2024-07-12 08:50:13 +00:00
switch ( Ce . adapter || ( this . requestClient = new Ce . adapter . reqClass ( { timeout : e2 . timeout || 5e3 , timeoutMsg : ` 请求在 ${ ( e2 . timeout || 5e3 ) / 1e3 } s内未完成, 已中断 ` } ) ) , this . config = { ... pt , ... e2 } , true ) {
2024-06-03 09:11:28 +00:00
case this . config . timeout > 6e5 :
console . warn ( "timeout大于可配置上限[10分钟],已重置为上限数值" ) , this . config . timeout = 6e5 ;
break ;
case this . config . timeout < 100 :
console . warn ( "timeout小于可配置下限[100ms],已重置为下限数值" ) , this . config . timeout = 100 ;
}
2024-07-12 08:50:13 +00:00
return new gt ( this . config ) ;
2024-06-03 09:11:28 +00:00
}
auth ( { persistence : e2 } = { } ) {
if ( this . authObj )
return this . authObj ;
2024-07-12 08:50:13 +00:00
const t2 = e2 || Ce . adapter . primaryStorage || pt . persistence ;
2024-06-03 09:11:28 +00:00
var n2 ;
return t2 !== this . config . persistence && ( this . config . persistence = t2 ) , function ( e3 ) {
const { env : t3 } = e3 ;
2024-07-12 08:50:13 +00:00
Ee [ t3 ] = new Oe ( e3 ) , Le [ t3 ] = new Oe ( { ... e3 , persistence : "local" } ) ;
} ( this . config ) , n2 = this . config , Qe [ n2 . env ] = new Ye ( n2 ) , this . authObj = new ot ( this . config ) , this . authObj ;
2024-06-03 09:11:28 +00:00
}
on ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return Me . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
off ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return Fe . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
callFunction ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return dt . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
deleteFile ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return ut . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
getTempFileURL ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return ht . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
downloadFile ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return lt . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
uploadFile ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return at . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
getUploadMetadata ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
return ct . apply ( this , [ e2 , t2 ] ) ;
2024-06-03 09:11:28 +00:00
}
registerExtension ( e2 ) {
2024-07-12 08:50:13 +00:00
ft [ e2 . name ] = e2 ;
2024-06-03 09:11:28 +00:00
}
async invokeExtension ( e2 , t2 ) {
2024-07-12 08:50:13 +00:00
const n2 = ft [ e2 ] ;
2024-06-03 09:11:28 +00:00
if ( ! n2 )
throw new te ( { message : ` 扩展 ${ e2 } 必须先注册 ` } ) ;
return await n2 . invoke ( t2 , this ) ;
}
useAdapters ( e2 ) {
2024-07-12 08:50:13 +00:00
const { adapter : t2 , runtime : n2 } = Ae ( e2 ) || { } ;
t2 && ( Ce . adapter = t2 ) , n2 && ( Ce . runtime = n2 ) ;
2024-06-03 09:11:28 +00:00
}
}
2024-07-12 08:50:13 +00:00
var mt = new gt ( ) ;
function yt ( e2 , t2 , n2 ) {
2024-06-03 09:11:28 +00:00
void 0 === n2 && ( n2 = { } ) ;
var s2 = /\?/ . test ( t2 ) , r2 = "" ;
for ( var i2 in n2 )
"" === r2 ? ! s2 && ( t2 += "?" ) : r2 += "&" , r2 += i2 + "=" + encodeURIComponent ( n2 [ i2 ] ) ;
return /^http(s)?:\/\// . test ( t2 += r2 ) ? t2 : "" + e2 + t2 ;
}
2024-07-12 08:50:13 +00:00
class _t {
2024-06-03 09:11:28 +00:00
post ( e2 ) {
const { url : t2 , data : n2 , headers : s2 } = e2 ;
return new Promise ( ( e3 , r2 ) => {
2024-07-12 08:50:13 +00:00
ne . request ( { url : yt ( "https:" , t2 ) , data : n2 , method : "POST" , header : s2 , success ( t3 ) {
2024-06-03 09:11:28 +00:00
e3 ( t3 ) ;
} , fail ( e4 ) {
r2 ( e4 ) ;
} } ) ;
} ) ;
}
upload ( e2 ) {
return new Promise ( ( t2 , n2 ) => {
2024-07-12 08:50:13 +00:00
const { url : s2 , file : r2 , data : i2 , headers : o2 , fileType : a2 } = e2 , c2 = ne . uploadFile ( { url : yt ( "https:" , s2 ) , name : "file" , formData : Object . assign ( { } , i2 ) , filePath : r2 , fileType : a2 , header : o2 , success ( e3 ) {
2024-06-03 09:11:28 +00:00
const n3 = { statusCode : e3 . statusCode , data : e3 . data || { } } ;
200 === e3 . statusCode && i2 . success _action _status && ( n3 . statusCode = parseInt ( i2 . success _action _status , 10 ) ) , t2 ( n3 ) ;
} , fail ( e3 ) {
n2 ( new Error ( e3 . errMsg || "uploadFile:fail" ) ) ;
} } ) ;
"function" == typeof e2 . onUploadProgress && c2 && "function" == typeof c2 . onProgressUpdate && c2 . onProgressUpdate ( ( t3 ) => {
e2 . onUploadProgress ( { loaded : t3 . totalBytesSent , total : t3 . totalBytesExpectedToSend } ) ;
} ) ;
} ) ;
}
}
2024-07-12 08:50:13 +00:00
const wt = { setItem ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
ne . setStorageSync ( e2 , t2 ) ;
} , getItem : ( e2 ) => ne . getStorageSync ( e2 ) , removeItem ( e2 ) {
ne . removeStorageSync ( e2 ) ;
} , clear ( ) {
ne . clearStorageSync ( ) ;
} } ;
2024-07-12 08:50:13 +00:00
var vt = { genAdapter : function ( ) {
return { root : { } , reqClass : _t , localStorage : wt , primaryStorage : "local" } ;
2024-06-03 09:11:28 +00:00
} , isMatch : function ( ) {
return true ;
} , runtime : "uni_app" } ;
2024-07-12 08:50:13 +00:00
mt . useAdapters ( vt ) ;
const It = mt , St = It . init ;
It . init = function ( e2 ) {
2024-06-03 09:11:28 +00:00
e2 . env = e2 . spaceId ;
2024-07-12 08:50:13 +00:00
const t2 = St . call ( this , e2 ) ;
2024-06-03 09:11:28 +00:00
t2 . config . provider = "tencent" , t2 . config . spaceId = e2 . spaceId ;
const n2 = t2 . auth ;
return t2 . auth = function ( e3 ) {
const t3 = n2 . call ( this , e3 ) ;
return [ "linkAndRetrieveDataWithTicket" , "signInAnonymously" , "signOut" , "getAccessToken" , "getLoginState" , "signInWithTicket" , "getUserInfo" ] . forEach ( ( e4 ) => {
var n3 ;
t3 [ e4 ] = ( n3 = t3 [ e4 ] , function ( e5 ) {
e5 = e5 || { } ;
const { success : t4 , fail : s2 , complete : r2 } = ee ( e5 ) ;
if ( ! ( t4 || s2 || r2 ) )
return n3 . call ( this , e5 ) ;
n3 . call ( this , e5 ) . then ( ( e6 ) => {
t4 && t4 ( e6 ) , r2 && r2 ( e6 ) ;
} , ( e6 ) => {
s2 && s2 ( e6 ) , r2 && r2 ( e6 ) ;
} ) ;
} ) . bind ( t3 ) ;
} ) , t3 ;
} , t2 . customAuth = t2 . auth , t2 ;
} ;
2024-07-12 08:50:13 +00:00
var bt = It ;
var kt = class extends pe {
2024-06-03 09:11:28 +00:00
getAccessToken ( ) {
return new Promise ( ( e2 , t2 ) => {
const n2 = "Anonymous_Access_token" ;
this . setAccessToken ( n2 ) , e2 ( n2 ) ;
} ) ;
}
setupRequest ( e2 , t2 ) {
const n2 = Object . assign ( { } , e2 , { spaceId : this . config . spaceId , timestamp : Date . now ( ) } ) , s2 = { "Content-Type" : "application/json" } ;
2024-07-12 08:50:13 +00:00
"auth" !== t2 && ( n2 . token = this . accessToken , s2 [ "x-basement-token" ] = this . accessToken ) , s2 [ "x-serverless-sign" ] = de . sign ( n2 , this . config . clientSecret ) ;
const r2 = le ( ) ;
2024-06-03 09:11:28 +00:00
s2 [ "x-client-info" ] = encodeURIComponent ( JSON . stringify ( r2 ) ) ;
const { token : i2 } = re ( ) ;
return s2 [ "x-client-token" ] = i2 , { url : this . config . requestUrl , method : "POST" , data : n2 , dataType : "json" , header : JSON . parse ( JSON . stringify ( s2 ) ) } ;
}
uploadFileToOSS ( { url : e2 , formData : t2 , name : n2 , filePath : s2 , fileType : r2 , onUploadProgress : i2 } ) {
return new Promise ( ( o2 , a2 ) => {
const c2 = this . adapter . uploadFile ( { url : e2 , formData : t2 , name : n2 , filePath : s2 , fileType : r2 , success ( e3 ) {
e3 && e3 . statusCode < 400 ? o2 ( e3 ) : a2 ( new te ( { code : "UPLOAD_FAILED" , message : "文件上传失败" } ) ) ;
} , fail ( e3 ) {
a2 ( new te ( { code : e3 . code || "UPLOAD_FAILED" , message : e3 . message || e3 . errMsg || "文件上传失败" } ) ) ;
} } ) ;
"function" == typeof i2 && c2 && "function" == typeof c2 . onProgressUpdate && c2 . onProgressUpdate ( ( e3 ) => {
i2 ( { loaded : e3 . totalBytesSent , total : e3 . totalBytesExpectedToSend } ) ;
} ) ;
} ) ;
}
uploadFile ( { filePath : e2 , cloudPath : t2 , fileType : n2 = "image" , onUploadProgress : s2 } ) {
if ( ! t2 )
throw new te ( { code : "CLOUDPATH_REQUIRED" , message : "cloudPath不可为空" } ) ;
let r2 ;
return this . getOSSUploadOptionsFromPath ( { cloudPath : t2 } ) . then ( ( t3 ) => {
const { url : i2 , formData : o2 , name : a2 } = t3 . result ;
r2 = t3 . result . fileUrl ;
const c2 = { url : i2 , formData : o2 , name : a2 , filePath : e2 , fileType : n2 } ;
return this . uploadFileToOSS ( Object . assign ( { } , c2 , { onUploadProgress : s2 } ) ) ;
} ) . then ( ( ) => this . reportOSSUpload ( { cloudPath : t2 } ) ) . then ( ( t3 ) => new Promise ( ( n3 , s3 ) => {
t3 . success ? n3 ( { success : true , filePath : e2 , fileID : r2 } ) : s3 ( new te ( { code : "UPLOAD_FAILED" , message : "文件上传失败" } ) ) ;
} ) ) ;
}
deleteFile ( { fileList : e2 } ) {
const t2 = { method : "serverless.file.resource.delete" , params : JSON . stringify ( { fileList : e2 } ) } ;
return this . request ( this . setupRequest ( t2 ) ) . then ( ( e3 ) => {
if ( e3 . success )
return e3 . result ;
throw new te ( { code : "DELETE_FILE_FAILED" , message : "删除文件失败" } ) ;
} ) ;
}
getTempFileURL ( { fileList : e2 , maxAge : t2 } = { } ) {
if ( ! Array . isArray ( e2 ) || 0 === e2 . length )
throw new te ( { code : "INVALID_PARAM" , message : "fileList的元素必须是非空的字符串" } ) ;
const n2 = { method : "serverless.file.resource.getTempFileURL" , params : JSON . stringify ( { fileList : e2 , maxAge : t2 } ) } ;
return this . request ( this . setupRequest ( n2 ) ) . then ( ( e3 ) => {
if ( e3 . success )
return { fileList : e3 . result . fileList . map ( ( e4 ) => ( { fileID : e4 . fileID , tempFileURL : e4 . tempFileURL } ) ) } ;
throw new te ( { code : "GET_TEMP_FILE_URL_FAILED" , message : "获取临时文件链接失败" } ) ;
} ) ;
}
} ;
2024-07-12 08:50:13 +00:00
var At = { init ( e2 ) {
const t2 = new kt ( e2 ) , n2 = { signInAnonymously : function ( ) {
2024-06-03 09:11:28 +00:00
return t2 . authorize ( ) ;
} , getLoginState : function ( ) {
return Promise . resolve ( false ) ;
} } ;
return t2 . auth = function ( ) {
return n2 ;
} , t2 . customAuth = t2 . auth , t2 ;
2024-07-12 08:50:13 +00:00
} } , Ct = n ( function ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
e2 . exports = r . enc . Hex ;
} ) ;
2024-07-12 08:50:13 +00:00
function Pt ( ) {
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx" . replace ( /[xy]/g , function ( e2 ) {
var t2 = 16 * Math . random ( ) | 0 ;
return ( "x" === e2 ? t2 : 3 & t2 | 8 ) . toString ( 16 ) ;
} ) ;
}
function Tt ( e2 = "" , t2 = { } ) {
const { data : n2 , functionName : s2 , method : r2 , headers : i2 , signHeaderKeys : o2 = [ ] , config : a2 } = t2 , c2 = Date . now ( ) , u2 = Pt ( ) , h2 = Object . assign ( { } , i2 , { "x-from-app-id" : a2 . spaceAppId , "x-from-env-id" : a2 . spaceId , "x-to-env-id" : a2 . spaceId , "x-from-instance-id" : c2 , "x-from-function-name" : s2 , "x-client-timestamp" : c2 , "x-alipay-source" : "client" , "x-request-id" : u2 , "x-alipay-callid" : u2 , "x-trace-id" : u2 } ) , l2 = [ "x-from-app-id" , "x-from-env-id" , "x-to-env-id" , "x-from-instance-id" , "x-from-function-name" , "x-client-timestamp" ] . concat ( o2 ) , [ d2 = "" , p2 = "" ] = e2 . split ( "?" ) || [ ] , f2 = function ( e3 ) {
2024-06-03 09:11:28 +00:00
const t3 = e3 . signedHeaders . join ( ";" ) , n3 = e3 . signedHeaders . map ( ( t4 ) => ` ${ t4 . toLowerCase ( ) } : ${ e3 . headers [ t4 ] }
2024-07-12 08:50:13 +00:00
` ).join(""), s3 = we(e3.body).toString(Ct), r3 = ` $ { e3 . method . toUpperCase ( ) }
2024-06-03 09:11:28 +00:00
$ { e3 . path }
$ { e3 . query }
$ { n3 }
$ { t3 }
$ { s3 }
2024-07-12 08:50:13 +00:00
` , i3 = we(r3).toString(Ct), o3 = ` HMAC - SHA256
2024-06-03 09:11:28 +00:00
$ { e3 . timestamp }
$ { i3 }
2024-07-12 08:50:13 +00:00
` , a3 = ve(o3, e3.secretKey).toString(Ct);
2024-06-03 09:11:28 +00:00
return ` HMAC-SHA256 Credential= ${ e3 . secretId } , SignedHeaders= ${ t3 } , Signature= ${ a3 } ` ;
} ( { path : d2 , query : p2 , method : r2 , headers : h2 , timestamp : c2 , body : JSON . stringify ( n2 ) , secretId : a2 . accessKey , secretKey : a2 . secretKey , signedHeaders : l2 . sort ( ) } ) ;
return { url : ` ${ a2 . endpoint } ${ e2 } ` , headers : Object . assign ( { } , h2 , { Authorization : f2 } ) } ;
}
2024-07-12 08:50:13 +00:00
function xt ( { url : e2 , data : t2 , method : n2 = "POST" , headers : s2 = { } } ) {
2024-06-03 09:11:28 +00:00
return new Promise ( ( r2 , i2 ) => {
2024-07-12 08:50:13 +00:00
ne . request ( { url : e2 , method : n2 , data : "object" == typeof t2 ? JSON . stringify ( t2 ) : t2 , header : s2 , dataType : "json" , complete : ( e3 = { } ) => {
2024-06-03 09:11:28 +00:00
const t3 = s2 [ "x-trace-id" ] || "" ;
if ( ! e3 . statusCode || e3 . statusCode >= 400 ) {
const { message : n3 , errMsg : s3 , trace _id : r3 } = e3 . data || { } ;
return i2 ( new te ( { code : "SYS_ERR" , message : n3 || s3 || "request:fail" , requestId : r3 || t3 } ) ) ;
}
r2 ( { status : e3 . statusCode , data : e3 . data , headers : e3 . header , requestId : t3 } ) ;
} } ) ;
} ) ;
}
2024-07-12 08:50:13 +00:00
function Ot ( e2 , t2 ) {
const { path : n2 , data : s2 , method : r2 = "GET" } = e2 , { url : i2 , headers : o2 } = Tt ( n2 , { functionName : "" , data : s2 , method : r2 , headers : { "x-alipay-cloud-mode" : "oss" , "x-data-api-type" : "oss" , "x-expire-timestamp" : Date . now ( ) + 6e4 } , signHeaderKeys : [ "x-data-api-type" , "x-expire-timestamp" ] , config : t2 } ) ;
return xt ( { url : i2 , data : s2 , method : r2 , headers : o2 } ) . then ( ( e3 ) => {
2024-06-03 09:11:28 +00:00
const t3 = e3 . data || { } ;
if ( ! t3 . success )
throw new te ( { code : e3 . errCode , message : e3 . errMsg , requestId : e3 . requestId } ) ;
return t3 . data || { } ;
} ) . catch ( ( e3 ) => {
throw new te ( { code : e3 . errCode , message : e3 . errMsg , requestId : e3 . requestId } ) ;
} ) ;
}
2024-07-12 08:50:13 +00:00
function Et ( e2 = "" ) {
2024-06-03 09:11:28 +00:00
const t2 = e2 . trim ( ) . replace ( /^cloud:\/\// , "" ) , n2 = t2 . indexOf ( "/" ) ;
if ( n2 <= 0 )
throw new te ( { code : "INVALID_PARAM" , message : "fileID不合法" } ) ;
const s2 = t2 . substring ( 0 , n2 ) , r2 = t2 . substring ( n2 + 1 ) ;
return s2 !== this . config . spaceId && console . warn ( "file " . concat ( e2 , " does not belong to env " ) . concat ( this . config . spaceId ) ) , r2 ;
}
2024-07-12 08:50:13 +00:00
function Lt ( e2 = "" ) {
2024-06-03 09:11:28 +00:00
return "cloud://" . concat ( this . config . spaceId , "/" ) . concat ( e2 . replace ( /^\/+/ , "" ) ) ;
}
2024-07-12 08:50:13 +00:00
class Rt {
constructor ( e2 ) {
this . config = e2 ;
}
signedURL ( e2 , t2 = { } ) {
const n2 = ` /ws/function/ ${ e2 } ` , s2 = this . config . wsEndpoint . replace ( /^ws(s)?:\/\// , "" ) , r2 = Object . assign ( { } , t2 , { accessKeyId : this . config . accessKey , signatureNonce : Pt ( ) , timestamp : "" + Date . now ( ) } ) , i2 = [ n2 , [ "accessKeyId" , "authorization" , "signatureNonce" , "timestamp" ] . sort ( ) . map ( function ( e3 ) {
return r2 [ e3 ] ? "" . concat ( e3 , "=" ) . concat ( r2 [ e3 ] ) : null ;
} ) . filter ( Boolean ) . join ( "&" ) , ` host: ${ s2 } ` ] . join ( "\n" ) , o2 = [ "HMAC-SHA256" , we ( i2 ) . toString ( Ct ) ] . join ( "\n" ) , a2 = ve ( o2 , this . config . secretKey ) . toString ( Ct ) , c2 = Object . keys ( r2 ) . map ( ( e3 ) => ` ${ e3 } = ${ encodeURIComponent ( r2 [ e3 ] ) } ` ) . join ( "&" ) ;
return ` ${ this . config . wsEndpoint } ${ n2 } ? ${ c2 } &signature= ${ a2 } ` ;
}
}
var Ut = class {
2024-06-03 09:11:28 +00:00
constructor ( e2 ) {
if ( [ "spaceId" , "spaceAppId" , "accessKey" , "secretKey" ] . forEach ( ( t2 ) => {
if ( ! Object . prototype . hasOwnProperty . call ( e2 , t2 ) )
throw new Error ( ` ${ t2 } required ` ) ;
} ) , e2 . endpoint ) {
if ( "string" != typeof e2 . endpoint )
throw new Error ( "endpoint must be string" ) ;
if ( ! /^https:\/\// . test ( e2 . endpoint ) )
throw new Error ( "endpoint must start with https://" ) ;
e2 . endpoint = e2 . endpoint . replace ( /\/$/ , "" ) ;
}
2024-07-12 08:50:13 +00:00
this . config = Object . assign ( { } , e2 , { endpoint : e2 . endpoint || ` https:// ${ e2 . spaceId } .api-hz.cloudbasefunction.cn ` , wsEndpoint : e2 . wsEndpoint || ` wss:// ${ e2 . spaceId } .api-hz.cloudbasefunction.cn ` } ) , this . _websocket = new Rt ( this . config ) ;
2024-06-03 09:11:28 +00:00
}
callFunction ( e2 ) {
return function ( e3 , t2 ) {
2024-07-12 08:50:13 +00:00
const { name : n2 , data : s2 , async : r2 = false } = e3 , i2 = "POST" , o2 = { "x-to-function-name" : n2 } ;
r2 && ( o2 [ "x-function-invoke-type" ] = "async" ) ;
const { url : a2 , headers : c2 } = Tt ( "/functions/invokeFunction" , { functionName : n2 , data : s2 , method : i2 , headers : o2 , signHeaderKeys : [ "x-to-function-name" ] , config : t2 } ) ;
return xt ( { url : a2 , data : s2 , method : i2 , headers : c2 } ) . then ( ( e4 ) => {
let t3 = 0 ;
if ( r2 ) {
const n3 = e4 . data || { } ;
t3 = "200" === n3 . errCode ? 0 : n3 . errCode , e4 . data = n3 . data || { } , e4 . errMsg = n3 . errMsg ;
}
if ( 0 !== t3 )
throw new te ( { code : t3 , message : e4 . errMsg , requestId : e4 . requestId } ) ;
return { errCode : t3 , success : 0 === t3 , requestId : e4 . requestId , result : e4 . data } ;
} ) . catch ( ( e4 ) => {
2024-06-03 09:11:28 +00:00
throw new te ( { code : e4 . errCode , message : e4 . errMsg , requestId : e4 . requestId } ) ;
} ) ;
} ( e2 , this . config ) ;
}
uploadFileToOSS ( { url : e2 , filePath : t2 , fileType : n2 , formData : s2 , onUploadProgress : r2 } ) {
return new Promise ( ( i2 , o2 ) => {
const a2 = ne . uploadFile ( { url : e2 , filePath : t2 , fileType : n2 , formData : s2 , name : "file" , success ( e3 ) {
e3 && e3 . statusCode < 400 ? i2 ( e3 ) : o2 ( new te ( { code : "UPLOAD_FAILED" , message : "文件上传失败" } ) ) ;
} , fail ( e3 ) {
o2 ( new te ( { code : e3 . code || "UPLOAD_FAILED" , message : e3 . message || e3 . errMsg || "文件上传失败" } ) ) ;
} } ) ;
"function" == typeof r2 && a2 && "function" == typeof a2 . onProgressUpdate && a2 . onProgressUpdate ( ( e3 ) => {
r2 ( { loaded : e3 . totalBytesSent , total : e3 . totalBytesExpectedToSend } ) ;
} ) ;
} ) ;
}
async uploadFile ( { filePath : e2 , cloudPath : t2 = "" , fileType : n2 = "image" , onUploadProgress : s2 } ) {
if ( "string" !== f ( t2 ) )
throw new te ( { code : "INVALID_PARAM" , message : "cloudPath必须为字符串类型" } ) ;
if ( ! ( t2 = t2 . trim ( ) ) )
throw new te ( { code : "INVALID_PARAM" , message : "cloudPath不可为空" } ) ;
if ( /:\/\// . test ( t2 ) )
throw new te ( { code : "INVALID_PARAM" , message : "cloudPath不合法" } ) ;
2024-07-12 08:50:13 +00:00
const r2 = await Ot ( { path : "/" . concat ( t2 . replace ( /^\// , "" ) , "?post_url" ) } , this . config ) , { file _id : i2 , upload _url : o2 , form _data : a2 } = r2 , c2 = a2 && a2 . reduce ( ( e3 , t3 ) => ( e3 [ t3 . key ] = t3 . value , e3 ) , { } ) ;
2024-06-03 09:11:28 +00:00
return this . uploadFileToOSS ( { url : o2 , filePath : e2 , fileType : n2 , formData : c2 , onUploadProgress : s2 } ) . then ( ( ) => ( { fileID : i2 } ) ) ;
}
async getTempFileURL ( { fileList : e2 } ) {
return new Promise ( ( t2 , n2 ) => {
( ! e2 || e2 . length < 0 ) && n2 ( new te ( { errCode : "INVALID_PARAM" , errMsg : "fileList不能为空数组" } ) ) , e2 . length > 50 && n2 ( new te ( { errCode : "INVALID_PARAM" , errMsg : "fileList数组长度不能超过50" } ) ) ;
const s2 = [ ] ;
for ( const t3 of e2 ) {
"string" !== f ( t3 ) && n2 ( new te ( { errCode : "INVALID_PARAM" , errMsg : "fileList的元素必须是非空的字符串" } ) ) ;
2024-07-12 08:50:13 +00:00
const e3 = Et . call ( this , t3 ) ;
2024-06-03 09:11:28 +00:00
s2 . push ( { file _id : e3 , expire : 600 } ) ;
}
2024-07-12 08:50:13 +00:00
Ot ( { path : "/?download_url" , data : { file _list : s2 } , method : "POST" } , this . config ) . then ( ( e3 ) => {
2024-06-03 09:11:28 +00:00
const { file _list : n3 = [ ] } = e3 ;
2024-07-12 08:50:13 +00:00
t2 ( { fileList : n3 . map ( ( e4 ) => ( { fileID : Lt . call ( this , e4 . file _id ) , tempFileURL : e4 . download _url } ) ) } ) ;
2024-06-03 09:11:28 +00:00
} ) . catch ( ( e3 ) => n2 ( e3 ) ) ;
} ) ;
}
2024-07-12 08:50:13 +00:00
async connectWebSocket ( e2 ) {
const { name : t2 , query : n2 } = e2 ;
return ne . connectSocket ( { url : this . _websocket . signedURL ( t2 , n2 ) , complete : ( ) => {
} } ) ;
}
2024-06-03 09:11:28 +00:00
} ;
2024-07-12 08:50:13 +00:00
var Nt = { init : ( e2 ) => {
2024-06-03 09:11:28 +00:00
e2 . provider = "alipay" ;
2024-07-12 08:50:13 +00:00
const t2 = new Ut ( e2 ) ;
2024-06-03 09:11:28 +00:00
return t2 . auth = function ( ) {
return { signInAnonymously : function ( ) {
return Promise . resolve ( ) ;
} , getLoginState : function ( ) {
return Promise . resolve ( true ) ;
} } ;
} , t2 ;
} } ;
2024-07-12 08:50:13 +00:00
function Dt ( { data : e2 } ) {
2024-06-03 09:11:28 +00:00
let t2 ;
2024-07-12 08:50:13 +00:00
t2 = le ( ) ;
2024-06-03 09:11:28 +00:00
const n2 = JSON . parse ( JSON . stringify ( e2 || { } ) ) ;
if ( Object . assign ( n2 , { clientInfo : t2 } ) , ! n2 . uniIdToken ) {
const { token : e3 } = re ( ) ;
e3 && ( n2 . uniIdToken = e3 ) ;
}
return n2 ;
}
2024-07-12 08:50:13 +00:00
async function Mt ( { name : e2 , data : t2 } = { } ) {
2024-06-03 09:11:28 +00:00
await this . _ _dev _ _ . initLocalNetwork ( ) ;
const { localAddress : n2 , localPort : s2 } = this . _ _dev _ _ , r2 = { aliyun : "aliyun" , tencent : "tcb" , alipay : "alipay" } [ this . config . provider ] , i2 = this . config . spaceId , o2 = ` http:// ${ n2 } : ${ s2 } /system/check-function ` , a2 = ` http:// ${ n2 } : ${ s2 } /cloudfunctions/ ${ e2 } ` ;
return new Promise ( ( t3 , n3 ) => {
2024-07-12 08:50:13 +00:00
ne . request ( { method : "POST" , url : o2 , data : { name : e2 , platform : C , provider : r2 , spaceId : i2 } , timeout : 3e3 , success ( e3 ) {
2024-06-03 09:11:28 +00:00
t3 ( e3 ) ;
} , fail ( ) {
t3 ( { data : { code : "NETWORK_ERROR" , message : "连接本地调试服务失败,请检查客户端是否和主机在同一局域网下,自动切换为已部署的云函数。" } } ) ;
} } ) ;
} ) . then ( ( { data : e3 } = { } ) => {
const { code : t3 , message : n3 } = e3 || { } ;
return { code : 0 === t3 ? 0 : t3 || "SYS_ERR" , message : n3 || "SYS_ERR" } ;
} ) . then ( ( { code : n3 , message : s3 } ) => {
if ( 0 !== n3 ) {
switch ( n3 ) {
case "MODULE_ENCRYPTED" :
console . error ( ` 此云函数( ${ e2 } )依赖加密公共模块不可本地调试,自动切换为云端已部署的云函数 ` ) ;
break ;
case "FUNCTION_ENCRYPTED" :
console . error ( ` 此云函数( ${ e2 } )已加密不可本地调试,自动切换为云端已部署的云函数 ` ) ;
break ;
case "ACTION_ENCRYPTED" :
console . error ( s3 || "需要访问加密的uni-clientDB-action, 自动切换为云端环境" ) ;
break ;
2024-07-12 08:50:13 +00:00
case "NETWORK_ERROR" :
console . error ( s3 || "连接本地调试服务失败,请检查客户端是否和主机在同一局域网下" ) ;
break ;
2024-06-03 09:11:28 +00:00
case "SWITCH_TO_CLOUD" :
break ;
default : {
const e3 = ` 检测本地调试服务出现错误: ${ s3 } ,请检查网络环境或重启客户端再试 ` ;
throw console . error ( e3 ) , new Error ( e3 ) ;
}
}
return this . _callCloudFunction ( { name : e2 , data : t2 } ) ;
}
return new Promise ( ( e3 , n4 ) => {
2024-07-12 08:50:13 +00:00
const s4 = Dt . call ( this , { data : t2 } ) ;
ne . request ( { method : "POST" , url : a2 , data : { provider : r2 , platform : C , param : s4 } , success : ( { statusCode : t3 , data : s5 } = { } ) => ! t3 || t3 >= 400 ? n4 ( new te ( { code : s5 . code || "SYS_ERR" , message : s5 . message || "request:fail" } ) ) : e3 ( { result : s5 } ) , fail ( e4 ) {
2024-06-03 09:11:28 +00:00
n4 ( new te ( { code : e4 . code || e4 . errCode || "SYS_ERR" , message : e4 . message || e4 . errMsg || "request:fail" } ) ) ;
} } ) ;
} ) ;
} ) ;
}
2024-07-12 08:50:13 +00:00
const qt = [ { rule : /fc_function_not_found|FUNCTION_NOT_FOUND/ , content : ",云函数[{functionName}]在云端不存在,请检查此云函数名称是否正确以及该云函数是否已上传到服务空间" , mode : "append" } ] ;
var Ft = /[\\^$.*+?()[\]{}|]/g , Kt = RegExp ( Ft . source ) ;
function jt ( e2 , t2 , n2 ) {
return e2 . replace ( new RegExp ( ( s2 = t2 ) && Kt . test ( s2 ) ? s2 . replace ( Ft , "\\$&" ) : s2 , "g" ) , n2 ) ;
2024-06-03 09:11:28 +00:00
var s2 ;
}
2024-07-12 08:50:13 +00:00
const Bt = "request" , Wt = "response" , Ht = "both" ;
const Tn = { code : 2e4 , message : "System error" } , xn = { code : 20101 , message : "Invalid client" } ;
function Ln ( e2 ) {
2024-06-03 09:11:28 +00:00
const { errSubject : t2 , subject : n2 , errCode : s2 , errMsg : r2 , code : i2 , message : o2 , cause : a2 } = e2 || { } ;
2024-07-12 08:50:13 +00:00
return new te ( { subject : t2 || n2 || "uni-secure-network" , code : s2 || i2 || Tn . code , message : r2 || o2 , cause : a2 } ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
let Un ;
function Fn ( { secretType : e2 } = { } ) {
return e2 === Bt || e2 === Wt || e2 === Ht ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function Kn ( { name : e2 , data : t2 = { } } = { } ) {
2024-06-03 09:11:28 +00:00
return "DCloud-clientDB" === e2 && "encryption" === t2 . redirectTo && "getAppClientKey" === t2 . action ;
}
2024-07-12 08:50:13 +00:00
function jn ( { provider : e2 , spaceId : t2 , functionName : n2 } = { } ) {
2024-06-03 09:11:28 +00:00
const { appId : s2 , uniPlatform : r2 , osName : i2 } = ce ( ) ;
let o2 = r2 ;
"app" === r2 && ( o2 = i2 ) ;
const a2 = function ( { provider : e3 , spaceId : t3 } = { } ) {
const n3 = A ;
if ( ! n3 )
return { } ;
e3 = /* @__PURE__ */ function ( e4 ) {
return "tencent" === e4 ? "tcb" : e4 ;
} ( e3 ) ;
const s3 = n3 . find ( ( n4 ) => n4 . provider === e3 && n4 . spaceId === t3 ) ;
return s3 && s3 . config ;
} ( { provider : e2 , spaceId : t2 } ) ;
if ( ! a2 || ! a2 . accessControl || ! a2 . accessControl . enable )
return false ;
const c2 = a2 . accessControl . function || { } , u2 = Object . keys ( c2 ) ;
if ( 0 === u2 . length )
return true ;
const h2 = function ( e3 , t3 ) {
let n3 , s3 , r3 ;
for ( let i3 = 0 ; i3 < e3 . length ; i3 ++ ) {
const o3 = e3 [ i3 ] ;
o3 !== t3 ? "*" !== o3 ? o3 . split ( "," ) . map ( ( e4 ) => e4 . trim ( ) ) . indexOf ( t3 ) > - 1 && ( s3 = o3 ) : r3 = o3 : n3 = o3 ;
}
return n3 || s3 || r3 ;
} ( u2 , n2 ) ;
if ( ! h2 )
return false ;
if ( ( c2 [ h2 ] || [ ] ) . find ( ( e3 = { } ) => e3 . appId === s2 && ( e3 . platform || "" ) . toLowerCase ( ) === o2 . toLowerCase ( ) ) )
return true ;
2024-07-12 08:50:13 +00:00
throw console . error ( ` 此应用[appId: ${ s2 } , platform: ${ o2 } ]不在云端配置的允许访问的应用列表内, 参考: https://uniapp.dcloud.net.cn/uniCloud/secure-network.html#verify-client ` ) , Ln ( xn ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function $n ( { functionName : e2 , result : t2 , logPvd : n2 } ) {
2024-06-03 09:11:28 +00:00
if ( this . _ _dev _ _ . debugLog && t2 && t2 . requestId ) {
const s2 = JSON . stringify ( { spaceId : this . config . spaceId , functionName : e2 , requestId : t2 . requestId } ) ;
console . log ( ` [ ${ n2 } -request] ${ s2 } [/ ${ n2 } -request] ` ) ;
}
}
2024-07-12 08:50:13 +00:00
function Bn ( e2 ) {
2024-06-03 09:11:28 +00:00
const t2 = e2 . callFunction , n2 = function ( n3 ) {
const s2 = n3 . name ;
2024-07-12 08:50:13 +00:00
n3 . data = Dt . call ( e2 , { data : n3 . data } ) ;
const r2 = { aliyun : "aliyun" , tencent : "tcb" , tcb : "tcb" , alipay : "alipay" } [ this . config . provider ] , i2 = Fn ( n3 ) , o2 = Kn ( n3 ) , a2 = i2 || o2 ;
return t2 . call ( this , n3 ) . then ( ( e3 ) => ( e3 . errCode = 0 , ! a2 && $n . call ( this , { functionName : s2 , result : e3 , logPvd : r2 } ) , Promise . resolve ( e3 ) ) , ( e3 ) => ( ! a2 && $n . call ( this , { functionName : s2 , result : e3 , logPvd : r2 } ) , e3 && e3 . message && ( e3 . message = function ( { message : e4 = "" , extraInfo : t3 = { } , formatter : n4 = [ ] } = { } ) {
2024-06-03 09:11:28 +00:00
for ( let s3 = 0 ; s3 < n4 . length ; s3 ++ ) {
const { rule : r3 , content : i3 , mode : o3 } = n4 [ s3 ] , a3 = e4 . match ( r3 ) ;
if ( ! a3 )
continue ;
let c2 = i3 ;
for ( let e5 = 1 ; e5 < a3 . length ; e5 ++ )
2024-07-12 08:50:13 +00:00
c2 = jt ( c2 , ` { $ ${ e5 } } ` , a3 [ e5 ] ) ;
2024-06-03 09:11:28 +00:00
for ( const e5 in t3 )
2024-07-12 08:50:13 +00:00
c2 = jt ( c2 , ` { ${ e5 } } ` , t3 [ e5 ] ) ;
2024-06-03 09:11:28 +00:00
return "replace" === o3 ? c2 : e4 + c2 ;
}
return e4 ;
2024-07-12 08:50:13 +00:00
} ( { message : ` [ ${ n3 . name } ]: ${ e3 . message } ` , formatter : qt , extraInfo : { functionName : s2 } } ) ) , Promise . reject ( e3 ) ) ) ;
2024-06-03 09:11:28 +00:00
} ;
e2 . callFunction = function ( t3 ) {
const { provider : s2 , spaceId : r2 } = e2 . config , i2 = t3 . name ;
let o2 , a2 ;
2024-07-12 08:50:13 +00:00
if ( t3 . data = t3 . data || { } , e2 . _ _dev _ _ . debugInfo && ! e2 . _ _dev _ _ . debugInfo . forceRemote && T ? ( e2 . _callCloudFunction || ( e2 . _callCloudFunction = n2 , e2 . _callLocalFunction = Mt ) , o2 = Mt ) : o2 = n2 , o2 = o2 . bind ( e2 ) , Kn ( t3 ) )
2024-06-03 09:11:28 +00:00
a2 = n2 . call ( e2 , t3 ) ;
2024-07-12 08:50:13 +00:00
else if ( Fn ( t3 ) ) {
a2 = new Un ( { secretType : t3 . secretType , uniCloudIns : e2 } ) . wrapEncryptDataCallFunction ( n2 . bind ( e2 ) ) ( t3 ) ;
} else if ( jn ( { provider : s2 , spaceId : r2 , functionName : i2 } ) ) {
a2 = new Un ( { secretType : t3 . secretType , uniCloudIns : e2 } ) . wrapVerifyClientCallFunction ( n2 . bind ( e2 ) ) ( t3 ) ;
2024-06-03 09:11:28 +00:00
} else
a2 = o2 ( t3 ) ;
return Object . defineProperty ( a2 , "result" , { get : ( ) => ( console . warn ( "当前返回结果为Promise类型, 不可直接访问其result属性, 详情请参考: https://uniapp.dcloud.net.cn/uniCloud/faq?id=promise" ) , { } ) } ) , a2 . then ( ( e3 ) => ( "undefined" != typeof UTSJSONObject && ( e3 . result = new UTSJSONObject ( e3 . result ) ) , e3 ) ) ;
} ;
}
2024-07-12 08:50:13 +00:00
Un = class {
2024-06-03 09:11:28 +00:00
constructor ( ) {
2024-07-12 08:50:13 +00:00
throw Ln ( { message : ` Platform ${ C } is not enabled, please check whether secure network module is enabled in your manifest.json ` } ) ;
2024-06-03 09:11:28 +00:00
}
} ;
2024-07-12 08:50:13 +00:00
const Wn = Symbol ( "CLIENT_DB_INTERNAL" ) ;
function Hn ( e2 , t2 ) {
return e2 . then = "DoNotReturnProxyWithAFunctionNamedThen" , e2 . _internalType = Wn , e2 . inspect = null , e2 . _ _v _raw = void 0 , new Proxy ( e2 , { get ( e3 , n2 , s2 ) {
2024-06-03 09:11:28 +00:00
if ( "_uniClient" === n2 )
return null ;
if ( "symbol" == typeof n2 )
return e3 [ n2 ] ;
if ( n2 in e3 || "string" != typeof n2 ) {
const t3 = e3 [ n2 ] ;
return "function" == typeof t3 ? t3 . bind ( e3 ) : t3 ;
}
return t2 . get ( e3 , n2 , s2 ) ;
} } ) ;
}
2024-07-12 08:50:13 +00:00
function zn ( e2 ) {
2024-06-03 09:11:28 +00:00
return { on : ( t2 , n2 ) => {
e2 [ t2 ] = e2 [ t2 ] || [ ] , e2 [ t2 ] . indexOf ( n2 ) > - 1 || e2 [ t2 ] . push ( n2 ) ;
} , off : ( t2 , n2 ) => {
e2 [ t2 ] = e2 [ t2 ] || [ ] ;
const s2 = e2 [ t2 ] . indexOf ( n2 ) ;
- 1 !== s2 && e2 [ t2 ] . splice ( s2 , 1 ) ;
} } ;
}
2024-07-12 08:50:13 +00:00
const Jn = [ "db.Geo" , "db.command" , "command.aggregate" ] ;
function Vn ( e2 , t2 ) {
return Jn . indexOf ( ` ${ e2 } . ${ t2 } ` ) > - 1 ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function Gn ( e2 ) {
2024-06-03 09:11:28 +00:00
switch ( f ( e2 = se ( e2 ) ) ) {
case "array" :
2024-07-12 08:50:13 +00:00
return e2 . map ( ( e3 ) => Gn ( e3 ) ) ;
2024-06-03 09:11:28 +00:00
case "object" :
2024-07-12 08:50:13 +00:00
return e2 . _internalType === Wn || Object . keys ( e2 ) . forEach ( ( t2 ) => {
e2 [ t2 ] = Gn ( e2 [ t2 ] ) ;
2024-06-03 09:11:28 +00:00
} ) , e2 ;
case "regexp" :
return { $regexp : { source : e2 . source , flags : e2 . flags } } ;
case "date" :
return { $date : e2 . toISOString ( ) } ;
default :
return e2 ;
}
}
2024-07-12 08:50:13 +00:00
function Yn ( e2 ) {
2024-06-03 09:11:28 +00:00
return e2 && e2 . content && e2 . content . $method ;
}
2024-07-12 08:50:13 +00:00
class Qn {
2024-06-03 09:11:28 +00:00
constructor ( e2 , t2 , n2 ) {
this . content = e2 , this . prevStage = t2 || null , this . udb = null , this . _database = n2 ;
}
toJSON ( ) {
let e2 = this ;
const t2 = [ e2 . content ] ;
for ( ; e2 . prevStage ; )
e2 = e2 . prevStage , t2 . push ( e2 . content ) ;
2024-07-12 08:50:13 +00:00
return { $db : t2 . reverse ( ) . map ( ( e3 ) => ( { $method : e3 . $method , $param : Gn ( e3 . $param ) } ) ) } ;
2024-06-03 09:11:28 +00:00
}
toString ( ) {
return JSON . stringify ( this . toJSON ( ) ) ;
}
getAction ( ) {
const e2 = this . toJSON ( ) . $db . find ( ( e3 ) => "action" === e3 . $method ) ;
return e2 && e2 . $param && e2 . $param [ 0 ] ;
}
getCommand ( ) {
return { $db : this . toJSON ( ) . $db . filter ( ( e2 ) => "action" !== e2 . $method ) } ;
}
get isAggregate ( ) {
let e2 = this ;
for ( ; e2 ; ) {
2024-07-12 08:50:13 +00:00
const t2 = Yn ( e2 ) , n2 = Yn ( e2 . prevStage ) ;
2024-06-03 09:11:28 +00:00
if ( "aggregate" === t2 && "collection" === n2 || "pipeline" === t2 )
return true ;
e2 = e2 . prevStage ;
}
return false ;
}
get isCommand ( ) {
let e2 = this ;
for ( ; e2 ; ) {
2024-07-12 08:50:13 +00:00
if ( "command" === Yn ( e2 ) )
2024-06-03 09:11:28 +00:00
return true ;
e2 = e2 . prevStage ;
}
return false ;
}
get isAggregateCommand ( ) {
let e2 = this ;
for ( ; e2 ; ) {
2024-07-12 08:50:13 +00:00
const t2 = Yn ( e2 ) , n2 = Yn ( e2 . prevStage ) ;
2024-06-03 09:11:28 +00:00
if ( "aggregate" === t2 && "command" === n2 )
return true ;
e2 = e2 . prevStage ;
}
return false ;
}
getNextStageFn ( e2 ) {
const t2 = this ;
return function ( ) {
2024-07-12 08:50:13 +00:00
return Xn ( { $method : e2 , $param : Gn ( Array . from ( arguments ) ) } , t2 , t2 . _database ) ;
2024-06-03 09:11:28 +00:00
} ;
}
get count ( ) {
return this . isAggregate ? this . getNextStageFn ( "count" ) : function ( ) {
return this . _send ( "count" , Array . from ( arguments ) ) ;
} ;
}
get remove ( ) {
return this . isCommand ? this . getNextStageFn ( "remove" ) : function ( ) {
return this . _send ( "remove" , Array . from ( arguments ) ) ;
} ;
}
get ( ) {
return this . _send ( "get" , Array . from ( arguments ) ) ;
}
get add ( ) {
return this . isCommand ? this . getNextStageFn ( "add" ) : function ( ) {
return this . _send ( "add" , Array . from ( arguments ) ) ;
} ;
}
update ( ) {
return this . _send ( "update" , Array . from ( arguments ) ) ;
}
end ( ) {
return this . _send ( "end" , Array . from ( arguments ) ) ;
}
get set ( ) {
return this . isCommand ? this . getNextStageFn ( "set" ) : function ( ) {
throw new Error ( "JQL禁止使用set方法" ) ;
} ;
}
_send ( e2 , t2 ) {
const n2 = this . getAction ( ) , s2 = this . getCommand ( ) ;
2024-07-12 08:50:13 +00:00
if ( s2 . $db . push ( { $method : e2 , $param : Gn ( t2 ) } ) , S ) {
2024-06-03 09:11:28 +00:00
const e3 = s2 . $db . find ( ( e4 ) => "collection" === e4 . $method ) , t3 = e3 && e3 . $param ;
t3 && 1 === t3 . length && "string" == typeof e3 . $param [ 0 ] && e3 . $param [ 0 ] . indexOf ( "," ) > - 1 && console . warn ( "检测到使用JQL语法联表查询时, 未使用getTemp先过滤主表数据, 在主表数据量大的情况下可能会查询缓慢。\n- 如何优化请参考此文档: https://uniapp.dcloud.net.cn/uniCloud/jql?id=lookup-with-temp \n- 如果主表数据量很小请忽略此信息,项目发行时不会出现此提示。" ) ;
}
return this . _database . _callCloudFunction ( { action : n2 , command : s2 } ) ;
}
}
2024-07-12 08:50:13 +00:00
function Xn ( e2 , t2 , n2 ) {
return Hn ( new Qn ( e2 , t2 , n2 ) , { get ( e3 , t3 ) {
2024-06-03 09:11:28 +00:00
let s2 = "db" ;
2024-07-12 08:50:13 +00:00
return e3 && e3 . content && ( s2 = e3 . content . $method ) , Vn ( s2 , t3 ) ? Xn ( { $method : t3 } , e3 , n2 ) : function ( ) {
return Xn ( { $method : t3 , $param : Gn ( Array . from ( arguments ) ) } , e3 , n2 ) ;
2024-06-03 09:11:28 +00:00
} ;
} } ) ;
}
2024-07-12 08:50:13 +00:00
function Zn ( { path : e2 , method : t2 } ) {
2024-06-03 09:11:28 +00:00
return class {
constructor ( ) {
this . param = Array . from ( arguments ) ;
}
toJSON ( ) {
return { $newDb : [ ... e2 . map ( ( e3 ) => ( { $method : e3 } ) ) , { $method : t2 , $param : this . param } ] } ;
}
toString ( ) {
return JSON . stringify ( this . toJSON ( ) ) ;
}
} ;
}
2024-07-12 08:50:13 +00:00
function es ( e2 , t2 = { } ) {
return Hn ( new e2 ( t2 ) , { get : ( e3 , t3 ) => Vn ( "db" , t3 ) ? Xn ( { $method : t3 } , null , e3 ) : function ( ) {
return Xn ( { $method : t3 , $param : Gn ( Array . from ( arguments ) ) } , null , e3 ) ;
2024-06-03 09:11:28 +00:00
} } ) ;
}
2024-07-12 08:50:13 +00:00
class ts extends class {
2024-06-03 09:11:28 +00:00
constructor ( { uniClient : e2 = { } , isJQL : t2 = false } = { } ) {
2024-07-12 08:50:13 +00:00
this . _uniClient = e2 , this . _authCallBacks = { } , this . _dbCallBacks = { } , e2 . _isDefault && ( this . _dbCallBacks = L ( "_globalUniCloudDatabaseCallback" ) ) , t2 || ( this . auth = zn ( this . _authCallBacks ) ) , this . _isJQL = t2 , Object . assign ( this , zn ( this . _dbCallBacks ) ) , this . env = Hn ( { } , { get : ( e3 , t3 ) => ( { $env : t3 } ) } ) , this . Geo = Hn ( { } , { get : ( e3 , t3 ) => Zn ( { path : [ "Geo" ] , method : t3 } ) } ) , this . serverDate = Zn ( { path : [ ] , method : "serverDate" } ) , this . RegExp = Zn ( { path : [ ] , method : "RegExp" } ) ;
2024-06-03 09:11:28 +00:00
}
getCloudEnv ( e2 ) {
if ( "string" != typeof e2 || ! e2 . trim ( ) )
throw new Error ( "getCloudEnv参数错误" ) ;
return { $env : e2 . replace ( "$cloudEnv_" , "" ) } ;
}
_callback ( e2 , t2 ) {
const n2 = this . _dbCallBacks ;
n2 [ e2 ] && n2 [ e2 ] . forEach ( ( e3 ) => {
e3 ( ... t2 ) ;
} ) ;
}
_callbackAuth ( e2 , t2 ) {
const n2 = this . _authCallBacks ;
n2 [ e2 ] && n2 [ e2 ] . forEach ( ( e3 ) => {
e3 ( ... t2 ) ;
} ) ;
}
multiSend ( ) {
const e2 = Array . from ( arguments ) , t2 = e2 . map ( ( e3 ) => {
const t3 = e3 . getAction ( ) , n2 = e3 . getCommand ( ) ;
if ( "getTemp" !== n2 . $db [ n2 . $db . length - 1 ] . $method )
throw new Error ( "multiSend只支持子命令内使用getTemp" ) ;
return { action : t3 , command : n2 } ;
} ) ;
return this . _callCloudFunction ( { multiCommand : t2 , queryList : e2 } ) ;
}
} {
_parseResult ( e2 ) {
return this . _isJQL ? e2 . result : e2 ;
}
_callCloudFunction ( { action : e2 , command : t2 , multiCommand : n2 , queryList : s2 } ) {
function r2 ( e3 , t3 ) {
if ( n2 && s2 )
for ( let n3 = 0 ; n3 < s2 . length ; n3 ++ ) {
const r3 = s2 [ n3 ] ;
r3 . udb && "function" == typeof r3 . udb . setResult && ( t3 ? r3 . udb . setResult ( t3 ) : r3 . udb . setResult ( e3 . result . dataList [ n3 ] ) ) ;
}
}
const i2 = this , o2 = this . _isJQL ? "databaseForJQL" : "database" ;
function a2 ( e3 ) {
return i2 . _callback ( "error" , [ e3 ] ) , M ( q ( o2 , "fail" ) , e3 ) . then ( ( ) => M ( q ( o2 , "complete" ) , e3 ) ) . then ( ( ) => ( r2 ( null , e3 ) , Y ( j , { type : W , content : e3 } ) , Promise . reject ( e3 ) ) ) ;
}
const c2 = M ( q ( o2 , "invoke" ) ) , u2 = this . _uniClient ;
return c2 . then ( ( ) => u2 . callFunction ( { name : "DCloud-clientDB" , type : h , data : { action : e2 , command : t2 , multiCommand : n2 } } ) ) . then ( ( e3 ) => {
const { code : t3 , message : n3 , token : s3 , tokenExpired : c3 , systemInfo : u3 = [ ] } = e3 . result ;
if ( u3 )
for ( let e4 = 0 ; e4 < u3 . length ; e4 ++ ) {
const { level : t4 , message : n4 , detail : s4 } = u3 [ e4 ] , r3 = console [ "warn" === t4 ? "error" : t4 ] || console . log ;
let i3 = "[System Info]" + n4 ;
s4 && ( i3 = ` ${ i3 }
详细信息 : $ { s4 } ` ), r3(i3);
}
if ( t3 ) {
return a2 ( new te ( { code : t3 , message : n3 , requestId : e3 . requestId } ) ) ;
}
e3 . result . errCode = e3 . result . errCode || e3 . result . code , e3 . result . errMsg = e3 . result . errMsg || e3 . result . message , s3 && c3 && ( ie ( { token : s3 , tokenExpired : c3 } ) , this . _callbackAuth ( "refreshToken" , [ { token : s3 , tokenExpired : c3 } ] ) , this . _callback ( "refreshToken" , [ { token : s3 , tokenExpired : c3 } ] ) , Y ( B , { token : s3 , tokenExpired : c3 } ) ) ;
const h2 = [ { prop : "affectedDocs" , tips : "affectedDocs不再推荐使用, 请使用inserted/deleted/updated/data.length替代" } , { prop : "code" , tips : "code不再推荐使用, 请使用errCode替代" } , { prop : "message" , tips : "message不再推荐使用, 请使用errMsg替代" } ] ;
for ( let t4 = 0 ; t4 < h2 . length ; t4 ++ ) {
const { prop : n4 , tips : s4 } = h2 [ t4 ] ;
if ( n4 in e3 . result ) {
const t5 = e3 . result [ n4 ] ;
Object . defineProperty ( e3 . result , n4 , { get : ( ) => ( console . warn ( s4 ) , t5 ) } ) ;
}
}
return function ( e4 ) {
return M ( q ( o2 , "success" ) , e4 ) . then ( ( ) => M ( q ( o2 , "complete" ) , e4 ) ) . then ( ( ) => {
r2 ( e4 , null ) ;
const t4 = i2 . _parseResult ( e4 ) ;
return Y ( j , { type : W , content : t4 } ) , Promise . resolve ( t4 ) ;
} ) ;
} ( e3 ) ;
} , ( e3 ) => {
/fc_function_not_found|FUNCTION_NOT_FOUND/g . test ( e3 . message ) && console . warn ( "clientDB未初始化, 请在web控制台保存一次schema以开启clientDB" ) ;
return a2 ( new te ( { code : e3 . code || "SYSTEM_ERROR" , message : e3 . message , requestId : e3 . requestId } ) ) ;
} ) ;
}
}
2024-07-12 08:50:13 +00:00
const ns = "token无效, 跳转登录页面" , ss = "token过期, 跳转登录页面" , rs = { TOKEN _INVALID _TOKEN _EXPIRED : ss , TOKEN _INVALID _INVALID _CLIENTID : ns , TOKEN _INVALID : ns , TOKEN _INVALID _WRONG _TOKEN : ns , TOKEN _INVALID _ANONYMOUS _USER : ns } , is = { "uni-id-token-expired" : ss , "uni-id-check-token-failed" : ns , "uni-id-token-not-exist" : ns , "uni-id-check-device-feature-failed" : ns } ;
function os ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
let n2 = "" ;
return n2 = e2 ? ` ${ e2 } / ${ t2 } ` : t2 , n2 . replace ( /^\// , "" ) ;
}
2024-07-12 08:50:13 +00:00
function as ( e2 = [ ] , t2 = "" ) {
2024-06-03 09:11:28 +00:00
const n2 = [ ] , s2 = [ ] ;
return e2 . forEach ( ( e3 ) => {
2024-07-12 08:50:13 +00:00
true === e3 . needLogin ? n2 . push ( os ( t2 , e3 . path ) ) : false === e3 . needLogin && s2 . push ( os ( t2 , e3 . path ) ) ;
2024-06-03 09:11:28 +00:00
} ) , { needLoginPage : n2 , notNeedLoginPage : s2 } ;
}
2024-07-12 08:50:13 +00:00
function cs ( e2 ) {
2024-06-03 09:11:28 +00:00
return e2 . split ( "?" ) [ 0 ] . replace ( /^\// , "" ) ;
}
2024-07-12 08:50:13 +00:00
function us ( ) {
2024-06-03 09:11:28 +00:00
return function ( e2 ) {
let t2 = e2 && e2 . $page && e2 . $page . fullPath || "" ;
return t2 ? ( "/" !== t2 . charAt ( 0 ) && ( t2 = "/" + t2 ) , t2 ) : t2 ;
} ( function ( ) {
const e2 = getCurrentPages ( ) ;
return e2 [ e2 . length - 1 ] ;
} ( ) ) ;
}
2024-07-12 08:50:13 +00:00
function hs ( ) {
return cs ( us ( ) ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function ls ( e2 = "" , t2 = { } ) {
2024-06-03 09:11:28 +00:00
if ( ! e2 )
return false ;
if ( ! ( t2 && t2 . list && t2 . list . length ) )
return false ;
2024-07-12 08:50:13 +00:00
const n2 = t2 . list , s2 = cs ( e2 ) ;
2024-06-03 09:11:28 +00:00
return n2 . some ( ( e3 ) => e3 . pagePath === s2 ) ;
}
2024-07-12 08:50:13 +00:00
const ds = ! ! e . uniIdRouter ;
const { loginPage : ps , routerNeedLogin : fs , resToLogin : gs , needLoginPage : ms , notNeedLoginPage : ys , loginPageInTabBar : _s } = function ( { pages : t2 = [ ] , subPackages : n2 = [ ] , uniIdRouter : s2 = { } , tabBar : r2 = { } } = e ) {
const { loginPage : i2 , needLogin : o2 = [ ] , resToLogin : a2 = true } = s2 , { needLoginPage : c2 , notNeedLoginPage : u2 } = as ( t2 ) , { needLoginPage : h2 , notNeedLoginPage : l2 } = function ( e2 = [ ] ) {
2024-06-03 09:11:28 +00:00
const t3 = [ ] , n3 = [ ] ;
return e2 . forEach ( ( e3 ) => {
2024-07-12 08:50:13 +00:00
const { root : s3 , pages : r3 = [ ] } = e3 , { needLoginPage : i3 , notNeedLoginPage : o3 } = as ( r3 , s3 ) ;
2024-06-03 09:11:28 +00:00
t3 . push ( ... i3 ) , n3 . push ( ... o3 ) ;
} ) , { needLoginPage : t3 , notNeedLoginPage : n3 } ;
} ( n2 ) ;
2024-07-12 08:50:13 +00:00
return { loginPage : i2 , routerNeedLogin : o2 , resToLogin : a2 , needLoginPage : [ ... c2 , ... h2 ] , notNeedLoginPage : [ ... u2 , ... l2 ] , loginPageInTabBar : ls ( i2 , r2 ) } ;
2024-06-03 09:11:28 +00:00
} ( ) ;
2024-07-12 08:50:13 +00:00
if ( ms . indexOf ( ps ) > - 1 )
throw new Error ( ` Login page [ ${ ps } ] should not be "needLogin", please check your pages.json ` ) ;
function ws ( e2 ) {
const t2 = hs ( ) ;
2024-06-03 09:11:28 +00:00
if ( "/" === e2 . charAt ( 0 ) )
return e2 ;
const [ n2 , s2 ] = e2 . split ( "?" ) , r2 = n2 . replace ( /^\// , "" ) . split ( "/" ) , i2 = t2 . split ( "/" ) ;
i2 . pop ( ) ;
for ( let e3 = 0 ; e3 < r2 . length ; e3 ++ ) {
const t3 = r2 [ e3 ] ;
".." === t3 ? i2 . pop ( ) : "." !== t3 && i2 . push ( t3 ) ;
}
return "" === i2 [ 0 ] && i2 . shift ( ) , "/" + i2 . join ( "/" ) + ( s2 ? "?" + s2 : "" ) ;
}
2024-07-12 08:50:13 +00:00
function vs ( e2 ) {
const t2 = cs ( ws ( e2 ) ) ;
return ! ( ys . indexOf ( t2 ) > - 1 ) && ( ms . indexOf ( t2 ) > - 1 || fs . some ( ( t3 ) => function ( e3 , t4 ) {
2024-06-03 09:11:28 +00:00
return new RegExp ( t4 ) . test ( e3 ) ;
} ( e2 , t3 ) ) ) ;
}
2024-07-12 08:50:13 +00:00
function Is ( { redirect : e2 } ) {
const t2 = cs ( e2 ) , n2 = cs ( ps ) ;
return hs ( ) !== n2 && t2 !== n2 ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
function Ss ( { api : e2 , redirect : t2 } = { } ) {
if ( ! t2 || ! Is ( { redirect : t2 } ) )
2024-06-03 09:11:28 +00:00
return ;
const n2 = function ( e3 , t3 ) {
return "/" !== e3 . charAt ( 0 ) && ( e3 = "/" + e3 ) , t3 ? e3 . indexOf ( "?" ) > - 1 ? e3 + ` &uniIdRedirectUrl= ${ encodeURIComponent ( t3 ) } ` : e3 + ` ?uniIdRedirectUrl= ${ encodeURIComponent ( t3 ) } ` : e3 ;
2024-07-12 08:50:13 +00:00
} ( ps , t2 ) ;
_s ? "navigateTo" !== e2 && "redirectTo" !== e2 || ( e2 = "switchTab" ) : "switchTab" === e2 && ( e2 = "navigateTo" ) ;
2024-06-03 09:11:28 +00:00
const s2 = { navigateTo : uni . navigateTo , redirectTo : uni . redirectTo , switchTab : uni . switchTab , reLaunch : uni . reLaunch } ;
setTimeout ( ( ) => {
s2 [ e2 ] ( { url : n2 } ) ;
} , 0 ) ;
}
2024-07-12 08:50:13 +00:00
function bs ( { url : e2 } = { } ) {
2024-06-03 09:11:28 +00:00
const t2 = { abortLoginPageJump : false , autoToLoginPage : false } , n2 = function ( ) {
const { token : e3 , tokenExpired : t3 } = re ( ) ;
let n3 ;
if ( e3 ) {
if ( t3 < Date . now ( ) ) {
const e4 = "uni-id-token-expired" ;
2024-07-12 08:50:13 +00:00
n3 = { errCode : e4 , errMsg : is [ e4 ] } ;
2024-06-03 09:11:28 +00:00
}
} else {
const e4 = "uni-id-check-token-failed" ;
2024-07-12 08:50:13 +00:00
n3 = { errCode : e4 , errMsg : is [ e4 ] } ;
2024-06-03 09:11:28 +00:00
}
return n3 ;
} ( ) ;
2024-07-12 08:50:13 +00:00
if ( vs ( e2 ) && n2 ) {
2024-06-03 09:11:28 +00:00
n2 . uniIdRedirectUrl = e2 ;
if ( J ( $ ) . length > 0 )
return setTimeout ( ( ) => {
Y ( $ , n2 ) ;
} , 0 ) , t2 . abortLoginPageJump = true , t2 ;
t2 . autoToLoginPage = true ;
}
return t2 ;
}
2024-07-12 08:50:13 +00:00
function ks ( ) {
2024-06-03 09:11:28 +00:00
! function ( ) {
2024-07-12 08:50:13 +00:00
const e3 = us ( ) , { abortLoginPageJump : t2 , autoToLoginPage : n2 } = bs ( { url : e3 } ) ;
t2 || n2 && Ss ( { api : "redirectTo" , redirect : e3 } ) ;
2024-06-03 09:11:28 +00:00
} ( ) ;
const e2 = [ "navigateTo" , "redirectTo" , "reLaunch" , "switchTab" ] ;
for ( let t2 = 0 ; t2 < e2 . length ; t2 ++ ) {
const n2 = e2 [ t2 ] ;
uni . addInterceptor ( n2 , { invoke ( e3 ) {
2024-07-12 08:50:13 +00:00
const { abortLoginPageJump : t3 , autoToLoginPage : s2 } = bs ( { url : e3 . url } ) ;
return t3 ? e3 : s2 ? ( Ss ( { api : n2 , redirect : ws ( e3 . url ) } ) , false ) : e3 ;
2024-06-03 09:11:28 +00:00
} } ) ;
}
}
2024-07-12 08:50:13 +00:00
function As ( ) {
2024-06-03 09:11:28 +00:00
this . onResponse ( ( e2 ) => {
const { type : t2 , content : n2 } = e2 ;
let s2 = false ;
switch ( t2 ) {
case "cloudobject" :
s2 = function ( e3 ) {
if ( "object" != typeof e3 )
return false ;
const { errCode : t3 } = e3 || { } ;
2024-07-12 08:50:13 +00:00
return t3 in is ;
2024-06-03 09:11:28 +00:00
} ( n2 ) ;
break ;
case "clientdb" :
s2 = function ( e3 ) {
if ( "object" != typeof e3 )
return false ;
const { errCode : t3 } = e3 || { } ;
2024-07-12 08:50:13 +00:00
return t3 in rs ;
2024-06-03 09:11:28 +00:00
} ( n2 ) ;
}
s2 && function ( e3 = { } ) {
const t3 = J ( $ ) ;
Z ( ) . then ( ( ) => {
2024-07-12 08:50:13 +00:00
const n3 = us ( ) ;
if ( n3 && Is ( { redirect : n3 } ) )
return t3 . length > 0 ? Y ( $ , Object . assign ( { uniIdRedirectUrl : n3 } , e3 ) ) : void ( ps && Ss ( { api : "navigateTo" , redirect : n3 } ) ) ;
2024-06-03 09:11:28 +00:00
} ) ;
} ( n2 ) ;
} ) ;
}
2024-07-12 08:50:13 +00:00
function Cs ( e2 ) {
2024-06-03 09:11:28 +00:00
! function ( e3 ) {
e3 . onResponse = function ( e4 ) {
V ( j , e4 ) ;
2024-07-12 08:50:13 +00:00
} , e3 . offResponse = function ( e4 ) {
G ( j , e4 ) ;
2024-06-03 09:11:28 +00:00
} ;
} ( e2 ) , function ( e3 ) {
e3 . onNeedLogin = function ( e4 ) {
V ( $ , e4 ) ;
2024-07-12 08:50:13 +00:00
} , e3 . offNeedLogin = function ( e4 ) {
G ( $ , e4 ) ;
} , ds && ( L ( "_globalUniCloudStatus" ) . needLoginInit || ( L ( "_globalUniCloudStatus" ) . needLoginInit = true , Z ( ) . then ( ( ) => {
ks . call ( e3 ) ;
} ) , gs && As . call ( e3 ) ) ) ;
2024-06-03 09:11:28 +00:00
} ( e2 ) , function ( e3 ) {
e3 . onRefreshToken = function ( e4 ) {
V ( B , e4 ) ;
2024-07-12 08:50:13 +00:00
} , e3 . offRefreshToken = function ( e4 ) {
G ( B , e4 ) ;
2024-06-03 09:11:28 +00:00
} ;
} ( e2 ) ;
}
2024-07-12 08:50:13 +00:00
let Ps ;
const Ts = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" , xs = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/ ;
function Os ( ) {
2024-06-03 09:11:28 +00:00
const e2 = re ( ) . token || "" , t2 = e2 . split ( "." ) ;
if ( ! e2 || 3 !== t2 . length )
return { uid : null , role : [ ] , permission : [ ] , tokenExpired : 0 } ;
let n2 ;
try {
2024-07-12 08:50:13 +00:00
n2 = JSON . parse ( ( s2 = t2 [ 1 ] , decodeURIComponent ( Ps ( s2 ) . split ( "" ) . map ( function ( e3 ) {
2024-06-03 09:11:28 +00:00
return "%" + ( "00" + e3 . charCodeAt ( 0 ) . toString ( 16 ) ) . slice ( - 2 ) ;
} ) . join ( "" ) ) ) ) ;
} catch ( e3 ) {
throw new Error ( "获取当前用户信息出错,详细错误信息为:" + e3 . message ) ;
}
var s2 ;
return n2 . tokenExpired = 1e3 * n2 . exp , delete n2 . exp , delete n2 . iat , n2 ;
}
2024-07-12 08:50:13 +00:00
Ps = "function" != typeof atob ? function ( e2 ) {
if ( e2 = String ( e2 ) . replace ( /[\t\n\f\r ]+/g , "" ) , ! xs . test ( e2 ) )
2024-06-03 09:11:28 +00:00
throw new Error ( "Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded." ) ;
var t2 ;
e2 += "==" . slice ( 2 - ( 3 & e2 . length ) ) ;
for ( var n2 , s2 , r2 = "" , i2 = 0 ; i2 < e2 . length ; )
2024-07-12 08:50:13 +00:00
t2 = Ts . indexOf ( e2 . charAt ( i2 ++ ) ) << 18 | Ts . indexOf ( e2 . charAt ( i2 ++ ) ) << 12 | ( n2 = Ts . indexOf ( e2 . charAt ( i2 ++ ) ) ) << 6 | ( s2 = Ts . indexOf ( e2 . charAt ( i2 ++ ) ) ) , r2 += 64 === n2 ? String . fromCharCode ( t2 >> 16 & 255 ) : 64 === s2 ? String . fromCharCode ( t2 >> 16 & 255 , t2 >> 8 & 255 ) : String . fromCharCode ( t2 >> 16 & 255 , t2 >> 8 & 255 , 255 & t2 ) ;
2024-06-03 09:11:28 +00:00
return r2 ;
} : atob ;
2024-07-12 08:50:13 +00:00
var Es = n ( function ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
Object . defineProperty ( t2 , "__esModule" , { value : true } ) ;
const n2 = "chooseAndUploadFile:ok" , s2 = "chooseAndUploadFile:fail" ;
function r2 ( e3 , t3 ) {
return e3 . tempFiles . forEach ( ( e4 , n3 ) => {
e4 . name || ( e4 . name = e4 . path . substring ( e4 . path . lastIndexOf ( "/" ) + 1 ) ) , t3 && ( e4 . fileType = t3 ) , e4 . cloudPath = Date . now ( ) + "_" + n3 + e4 . name . substring ( e4 . name . lastIndexOf ( "." ) ) ;
} ) , e3 . tempFilePaths || ( e3 . tempFilePaths = e3 . tempFiles . map ( ( e4 ) => e4 . path ) ) , e3 ;
}
function i2 ( e3 , t3 , { onChooseFile : s3 , onUploadProgress : r3 } ) {
return t3 . then ( ( e4 ) => {
if ( s3 ) {
const t4 = s3 ( e4 ) ;
if ( void 0 !== t4 )
return Promise . resolve ( t4 ) . then ( ( t5 ) => void 0 === t5 ? e4 : t5 ) ;
}
return e4 ;
} ) . then ( ( t4 ) => false === t4 ? { errMsg : n2 , tempFilePaths : [ ] , tempFiles : [ ] } : function ( e4 , t5 , s4 = 5 , r4 ) {
( t5 = Object . assign ( { } , t5 ) ) . errMsg = n2 ;
const i3 = t5 . tempFiles , o2 = i3 . length ;
let a2 = 0 ;
return new Promise ( ( n3 ) => {
for ( ; a2 < s4 ; )
c2 ( ) ;
function c2 ( ) {
const s5 = a2 ++ ;
if ( s5 >= o2 )
return void ( ! i3 . find ( ( e5 ) => ! e5 . url && ! e5 . errMsg ) && n3 ( t5 ) ) ;
const u2 = i3 [ s5 ] ;
e4 . uploadFile ( { provider : u2 . provider , filePath : u2 . path , cloudPath : u2 . cloudPath , fileType : u2 . fileType , cloudPathAsRealPath : u2 . cloudPathAsRealPath , onUploadProgress ( e5 ) {
e5 . index = s5 , e5 . tempFile = u2 , e5 . tempFilePath = u2 . path , r4 && r4 ( e5 ) ;
} } ) . then ( ( e5 ) => {
u2 . url = e5 . fileID , s5 < o2 && c2 ( ) ;
} ) . catch ( ( e5 ) => {
u2 . errMsg = e5 . errMsg || e5 . message , s5 < o2 && c2 ( ) ;
} ) ;
}
} ) ;
} ( e3 , t4 , 5 , r3 ) ) ;
}
t2 . initChooseAndUploadFile = function ( e3 ) {
return function ( t3 = { type : "all" } ) {
return "image" === t3 . type ? i2 ( e3 , function ( e4 ) {
const { count : t4 , sizeType : n3 , sourceType : i3 = [ "album" , "camera" ] , extension : o2 } = e4 ;
return new Promise ( ( e5 , a2 ) => {
uni . chooseImage ( { count : t4 , sizeType : n3 , sourceType : i3 , extension : o2 , success ( t5 ) {
e5 ( r2 ( t5 , "image" ) ) ;
} , fail ( e6 ) {
a2 ( { errMsg : e6 . errMsg . replace ( "chooseImage:fail" , s2 ) } ) ;
} } ) ;
} ) ;
} ( t3 ) , t3 ) : "video" === t3 . type ? i2 ( e3 , function ( e4 ) {
const { camera : t4 , compressed : n3 , maxDuration : i3 , sourceType : o2 = [ "album" , "camera" ] , extension : a2 } = e4 ;
return new Promise ( ( e5 , c2 ) => {
uni . chooseVideo ( { camera : t4 , compressed : n3 , maxDuration : i3 , sourceType : o2 , extension : a2 , success ( t5 ) {
const { tempFilePath : n4 , duration : s3 , size : i4 , height : o3 , width : a3 } = t5 ;
e5 ( r2 ( { errMsg : "chooseVideo:ok" , tempFilePaths : [ n4 ] , tempFiles : [ { name : t5 . tempFile && t5 . tempFile . name || "" , path : n4 , size : i4 , type : t5 . tempFile && t5 . tempFile . type || "" , width : a3 , height : o3 , duration : s3 , fileType : "video" , cloudPath : "" } ] } , "video" ) ) ;
} , fail ( e6 ) {
c2 ( { errMsg : e6 . errMsg . replace ( "chooseVideo:fail" , s2 ) } ) ;
} } ) ;
} ) ;
} ( t3 ) , t3 ) : i2 ( e3 , function ( e4 ) {
const { count : t4 , extension : n3 } = e4 ;
return new Promise ( ( e5 , i3 ) => {
let o2 = uni . chooseFile ;
if ( "undefined" != typeof wx && "function" == typeof wx . chooseMessageFile && ( o2 = wx . chooseMessageFile ) , "function" != typeof o2 )
return i3 ( { errMsg : s2 + " 请指定 type 类型,该平台仅支持选择 image 或 video。" } ) ;
o2 ( { type : "all" , count : t4 , extension : n3 , success ( t5 ) {
e5 ( r2 ( t5 ) ) ;
} , fail ( e6 ) {
i3 ( { errMsg : e6 . errMsg . replace ( "chooseFile:fail" , s2 ) } ) ;
} } ) ;
} ) ;
} ( t3 ) , t3 ) ;
} ;
} ;
2024-07-12 08:50:13 +00:00
} ) , Ls = t ( Es ) ;
const Rs = "manual" ;
function Us ( e2 ) {
2024-06-03 09:11:28 +00:00
return { props : { localdata : { type : Array , default : ( ) => [ ] } , options : { type : [ Object , Array ] , default : ( ) => ( { } ) } , spaceInfo : { type : Object , default : ( ) => ( { } ) } , collection : { type : [ String , Array ] , default : "" } , action : { type : String , default : "" } , field : { type : String , default : "" } , orderby : { type : String , default : "" } , where : { type : [ String , Object ] , default : "" } , pageData : { type : String , default : "add" } , pageCurrent : { type : Number , default : 1 } , pageSize : { type : Number , default : 20 } , getcount : { type : [ Boolean , String ] , default : false } , gettree : { type : [ Boolean , String ] , default : false } , gettreepath : { type : [ Boolean , String ] , default : false } , startwith : { type : String , default : "" } , limitlevel : { type : Number , default : 10 } , groupby : { type : String , default : "" } , groupField : { type : String , default : "" } , distinct : { type : [ Boolean , String ] , default : false } , foreignKey : { type : String , default : "" } , loadtime : { type : String , default : "auto" } , manual : { type : Boolean , default : false } } , data : ( ) => ( { mixinDatacomLoading : false , mixinDatacomHasMore : false , mixinDatacomResData : [ ] , mixinDatacomErrorMessage : "" , mixinDatacomPage : { } , mixinDatacomError : null } ) , created ( ) {
this . mixinDatacomPage = { current : this . pageCurrent , size : this . pageSize , count : 0 } , this . $watch ( ( ) => {
var e3 = [ ] ;
return [ "pageCurrent" , "pageSize" , "localdata" , "collection" , "action" , "field" , "orderby" , "where" , "getont" , "getcount" , "gettree" , "groupby" , "groupField" , "distinct" ] . forEach ( ( t2 ) => {
e3 . push ( this [ t2 ] ) ;
} ) , e3 ;
} , ( e3 , t2 ) => {
2024-07-12 08:50:13 +00:00
if ( this . loadtime === Rs )
2024-06-03 09:11:28 +00:00
return ;
let n2 = false ;
const s2 = [ ] ;
for ( let r2 = 2 ; r2 < e3 . length ; r2 ++ )
e3 [ r2 ] !== t2 [ r2 ] && ( s2 . push ( e3 [ r2 ] ) , n2 = true ) ;
e3 [ 0 ] !== t2 [ 0 ] && ( this . mixinDatacomPage . current = this . pageCurrent ) , this . mixinDatacomPage . size = this . pageSize , this . onMixinDatacomPropsChange ( n2 , s2 ) ;
} ) ;
} , methods : { onMixinDatacomPropsChange ( e3 , t2 ) {
} , mixinDatacomEasyGet ( { getone : e3 = false , success : t2 , fail : n2 } = { } ) {
this . mixinDatacomLoading || ( this . mixinDatacomLoading = true , this . mixinDatacomErrorMessage = "" , this . mixinDatacomError = null , this . mixinDatacomGet ( ) . then ( ( n3 ) => {
this . mixinDatacomLoading = false ;
const { data : s2 , count : r2 } = n3 . result ;
this . getcount && ( this . mixinDatacomPage . count = r2 ) , this . mixinDatacomHasMore = s2 . length < this . pageSize ;
const i2 = e3 ? s2 . length ? s2 [ 0 ] : void 0 : s2 ;
this . mixinDatacomResData = i2 , t2 && t2 ( i2 ) ;
} ) . catch ( ( e4 ) => {
this . mixinDatacomLoading = false , this . mixinDatacomErrorMessage = e4 , this . mixinDatacomError = e4 , n2 && n2 ( e4 ) ;
} ) ) ;
} , mixinDatacomGet ( t2 = { } ) {
let n2 ;
t2 = t2 || { } , n2 = "undefined" != typeof _ _uniX && _ _uniX ? e2 . databaseForJQL ( this . spaceInfo ) : e2 . database ( this . spaceInfo ) ;
const s2 = t2 . action || this . action ;
s2 && ( n2 = n2 . action ( s2 ) ) ;
const r2 = t2 . collection || this . collection ;
n2 = Array . isArray ( r2 ) ? n2 . collection ( ... r2 ) : n2 . collection ( r2 ) ;
const i2 = t2 . where || this . where ;
i2 && Object . keys ( i2 ) . length && ( n2 = n2 . where ( i2 ) ) ;
const o2 = t2 . field || this . field ;
o2 && ( n2 = n2 . field ( o2 ) ) ;
const a2 = t2 . foreignKey || this . foreignKey ;
a2 && ( n2 = n2 . foreignKey ( a2 ) ) ;
const c2 = t2 . groupby || this . groupby ;
c2 && ( n2 = n2 . groupBy ( c2 ) ) ;
const u2 = t2 . groupField || this . groupField ;
u2 && ( n2 = n2 . groupField ( u2 ) ) ;
true === ( void 0 !== t2 . distinct ? t2 . distinct : this . distinct ) && ( n2 = n2 . distinct ( ) ) ;
const h2 = t2 . orderby || this . orderby ;
h2 && ( n2 = n2 . orderBy ( h2 ) ) ;
const l2 = void 0 !== t2 . pageCurrent ? t2 . pageCurrent : this . mixinDatacomPage . current , d2 = void 0 !== t2 . pageSize ? t2 . pageSize : this . mixinDatacomPage . size , p2 = void 0 !== t2 . getcount ? t2 . getcount : this . getcount , f2 = void 0 !== t2 . gettree ? t2 . gettree : this . gettree , g2 = void 0 !== t2 . gettreepath ? t2 . gettreepath : this . gettreepath , m2 = { getCount : p2 } , y2 = { limitLevel : void 0 !== t2 . limitlevel ? t2 . limitlevel : this . limitlevel , startWith : void 0 !== t2 . startwith ? t2 . startwith : this . startwith } ;
return f2 && ( m2 . getTree = y2 ) , g2 && ( m2 . getTreePath = y2 ) , n2 = n2 . skip ( d2 * ( l2 - 1 ) ) . limit ( d2 ) . get ( m2 ) , n2 ;
} } } ;
}
2024-07-12 08:50:13 +00:00
function Ns ( e2 ) {
2024-06-03 09:11:28 +00:00
return function ( t2 , n2 = { } ) {
n2 = function ( e3 , t3 = { } ) {
return e3 . customUI = t3 . customUI || e3 . customUI , e3 . parseSystemError = t3 . parseSystemError || e3 . parseSystemError , Object . assign ( e3 . loadingOptions , t3 . loadingOptions ) , Object . assign ( e3 . errorOptions , t3 . errorOptions ) , "object" == typeof t3 . secretMethods && ( e3 . secretMethods = t3 . secretMethods ) , e3 ;
} ( { customUI : false , loadingOptions : { title : "加载中..." , mask : true } , errorOptions : { type : "modal" , retry : false } } , n2 ) ;
const { customUI : s2 , loadingOptions : r2 , errorOptions : i2 , parseSystemError : o2 } = n2 , a2 = ! s2 ;
return new Proxy ( { } , { get ( s3 , c2 ) {
switch ( c2 ) {
case "toString" :
return "[object UniCloudObject]" ;
case "toJSON" :
return { } ;
}
return function ( { fn : e3 , interceptorName : t3 , getCallbackArgs : n3 } = { } ) {
return async function ( ... s4 ) {
const r3 = n3 ? n3 ( { params : s4 } ) : { } ;
let i3 , o3 ;
try {
return await M ( q ( t3 , "invoke" ) , { ... r3 } ) , i3 = await e3 ( ... s4 ) , await M ( q ( t3 , "success" ) , { ... r3 , result : i3 } ) , i3 ;
} catch ( e4 ) {
throw o3 = e4 , await M ( q ( t3 , "fail" ) , { ... r3 , error : o3 } ) , o3 ;
} finally {
await M ( q ( t3 , "complete" ) , o3 ? { ... r3 , error : o3 } : { ... r3 , result : i3 } ) ;
}
} ;
} ( { fn : async function s4 ( ... h2 ) {
let l2 ;
a2 && uni . showLoading ( { title : r2 . title , mask : r2 . mask } ) ;
const d2 = { name : t2 , type : u , data : { method : c2 , params : h2 } } ;
"object" == typeof n2 . secretMethods && function ( e3 , t3 ) {
const n3 = t3 . data . method , s5 = e3 . secretMethods || { } , r3 = s5 [ n3 ] || s5 [ "*" ] ;
r3 && ( t3 . secretType = r3 ) ;
} ( n2 , d2 ) ;
let p2 = false ;
try {
l2 = await e2 . callFunction ( d2 ) ;
} catch ( e3 ) {
p2 = true , l2 = { result : new te ( e3 ) } ;
}
const { errSubject : f2 , errCode : g2 , errMsg : m2 , newToken : y2 } = l2 . result || { } ;
if ( a2 && uni . hideLoading ( ) , y2 && y2 . token && y2 . tokenExpired && ( ie ( y2 ) , Y ( B , { ... y2 } ) ) , g2 ) {
let e3 = m2 ;
if ( p2 && o2 ) {
e3 = ( await o2 ( { objectName : t2 , methodName : c2 , params : h2 , errSubject : f2 , errCode : g2 , errMsg : m2 } ) ) . errMsg || m2 ;
}
if ( a2 )
if ( "toast" === i2 . type )
uni . showToast ( { title : e3 , icon : "none" } ) ;
else {
if ( "modal" !== i2 . type )
throw new Error ( ` Invalid errorOptions.type: ${ i2 . type } ` ) ;
{
const { confirm : t3 } = await async function ( { title : e4 , content : t4 , showCancel : n4 , cancelText : s5 , confirmText : r3 } = { } ) {
return new Promise ( ( i3 , o3 ) => {
uni . showModal ( { title : e4 , content : t4 , showCancel : n4 , cancelText : s5 , confirmText : r3 , success ( e5 ) {
i3 ( e5 ) ;
} , fail ( ) {
i3 ( { confirm : false , cancel : true } ) ;
} } ) ;
} ) ;
} ( { title : "提示" , content : e3 , showCancel : i2 . retry , cancelText : "取消" , confirmText : i2 . retry ? "重试" : "确定" } ) ;
if ( i2 . retry && t3 )
return s4 ( ... h2 ) ;
}
}
const n3 = new te ( { subject : f2 , code : g2 , message : m2 , requestId : l2 . requestId } ) ;
throw n3 . detail = l2 . result , Y ( j , { type : z , content : n3 } ) , n3 ;
}
return Y ( j , { type : z , content : l2 . result } ) , l2 . result ;
} , interceptorName : "callObject" , getCallbackArgs : function ( { params : e3 } = { } ) {
return { objectName : t2 , methodName : c2 , params : e3 } ;
} } ) ;
} } ) ;
} ;
}
2024-07-12 08:50:13 +00:00
function Ds ( e2 ) {
2024-06-03 09:11:28 +00:00
return L ( "_globalUniCloudSecureNetworkCache__{spaceId}" . replace ( "{spaceId}" , e2 . config . spaceId ) ) ;
}
2024-07-12 08:50:13 +00:00
async function Ms ( { openid : e2 , callLoginByWeixin : t2 = false } = { } ) {
Ds ( this ) ;
throw new Error ( ` [SecureNetwork] API \` initSecureNetworkByWeixin \` is not supported on platform \` ${ C } \` ` ) ;
2024-06-03 09:11:28 +00:00
}
2024-07-12 08:50:13 +00:00
async function qs ( e2 ) {
const t2 = Ds ( this ) ;
return t2 . initPromise || ( t2 . initPromise = Ms . call ( this , e2 ) . then ( ( e3 ) => e3 ) . catch ( ( e3 ) => {
2024-06-03 09:11:28 +00:00
throw delete t2 . initPromise , e3 ;
} ) ) , t2 . initPromise ;
}
2024-07-12 08:50:13 +00:00
function Fs ( e2 ) {
2024-06-03 09:11:28 +00:00
return function ( { openid : t2 , callLoginByWeixin : n2 = false } = { } ) {
2024-07-12 08:50:13 +00:00
return qs . call ( e2 , { openid : t2 , callLoginByWeixin : n2 } ) ;
2024-06-03 09:11:28 +00:00
} ;
}
2024-07-12 08:50:13 +00:00
function Ks ( e2 ) {
! function ( e3 ) {
he = e3 ;
} ( e2 ) ;
}
function js ( e2 ) {
2024-06-03 09:11:28 +00:00
const t2 = { getSystemInfo : uni . getSystemInfo , getPushClientId : uni . getPushClientId } ;
return function ( n2 ) {
return new Promise ( ( s2 , r2 ) => {
t2 [ e2 ] ( { ... n2 , success ( e3 ) {
s2 ( e3 ) ;
} , fail ( e3 ) {
r2 ( e3 ) ;
} } ) ;
} ) ;
} ;
}
2024-07-12 08:50:13 +00:00
class $s extends class {
2024-06-03 09:11:28 +00:00
constructor ( ) {
this . _callback = { } ;
}
addListener ( e2 , t2 ) {
this . _callback [ e2 ] || ( this . _callback [ e2 ] = [ ] ) , this . _callback [ e2 ] . push ( t2 ) ;
}
on ( e2 , t2 ) {
return this . addListener ( e2 , t2 ) ;
}
removeListener ( e2 , t2 ) {
if ( ! t2 )
throw new Error ( 'The "listener" argument must be of type function. Received undefined' ) ;
const n2 = this . _callback [ e2 ] ;
if ( ! n2 )
return ;
const s2 = function ( e3 , t3 ) {
for ( let n3 = e3 . length - 1 ; n3 >= 0 ; n3 -- )
if ( e3 [ n3 ] === t3 )
return n3 ;
return - 1 ;
} ( n2 , t2 ) ;
n2 . splice ( s2 , 1 ) ;
}
off ( e2 , t2 ) {
return this . removeListener ( e2 , t2 ) ;
}
removeAllListener ( e2 ) {
delete this . _callback [ e2 ] ;
}
emit ( e2 , ... t2 ) {
const n2 = this . _callback [ e2 ] ;
if ( n2 )
for ( let e3 = 0 ; e3 < n2 . length ; e3 ++ )
n2 [ e3 ] ( ... t2 ) ;
}
} {
constructor ( ) {
super ( ) , this . _uniPushMessageCallback = this . _receivePushMessage . bind ( this ) , this . _currentMessageId = - 1 , this . _payloadQueue = [ ] ;
}
init ( ) {
2024-07-12 08:50:13 +00:00
return Promise . all ( [ js ( "getSystemInfo" ) ( ) , js ( "getPushClientId" ) ( ) ] ) . then ( ( [ { appId : e2 } = { } , { cid : t2 } = { } ] = [ ] ) => {
2024-06-03 09:11:28 +00:00
if ( ! e2 )
throw new Error ( "Invalid appId, please check the manifest.json file" ) ;
if ( ! t2 )
throw new Error ( "Invalid push client id" ) ;
this . _appId = e2 , this . _pushClientId = t2 , this . _seqId = Date . now ( ) + "-" + Math . floor ( 9e5 * Math . random ( ) + 1e5 ) , this . emit ( "open" ) , this . _initMessageListener ( ) ;
} , ( e2 ) => {
throw this . emit ( "error" , e2 ) , this . close ( ) , e2 ;
} ) ;
}
async open ( ) {
return this . init ( ) ;
}
_isUniCloudSSE ( e2 ) {
if ( "receive" !== e2 . type )
return false ;
const t2 = e2 && e2 . data && e2 . data . payload ;
return ! ( ! t2 || "UNI_CLOUD_SSE" !== t2 . channel || t2 . seqId !== this . _seqId ) ;
}
_receivePushMessage ( e2 ) {
if ( ! this . _isUniCloudSSE ( e2 ) )
return ;
const t2 = e2 && e2 . data && e2 . data . payload , { action : n2 , messageId : s2 , message : r2 } = t2 ;
this . _payloadQueue . push ( { action : n2 , messageId : s2 , message : r2 } ) , this . _consumMessage ( ) ;
}
_consumMessage ( ) {
for ( ; ; ) {
const e2 = this . _payloadQueue . find ( ( e3 ) => e3 . messageId === this . _currentMessageId + 1 ) ;
if ( ! e2 )
break ;
this . _currentMessageId ++ , this . _parseMessagePayload ( e2 ) ;
}
}
_parseMessagePayload ( e2 ) {
const { action : t2 , messageId : n2 , message : s2 } = e2 ;
"end" === t2 ? this . _end ( { messageId : n2 , message : s2 } ) : "message" === t2 && this . _appendMessage ( { messageId : n2 , message : s2 } ) ;
}
_appendMessage ( { messageId : e2 , message : t2 } = { } ) {
this . emit ( "message" , t2 ) ;
}
_end ( { messageId : e2 , message : t2 } = { } ) {
this . emit ( "end" , t2 ) , this . close ( ) ;
}
_initMessageListener ( ) {
uni . onPushMessage ( this . _uniPushMessageCallback ) ;
}
_destroy ( ) {
uni . offPushMessage ( this . _uniPushMessageCallback ) ;
}
toJSON ( ) {
return { appId : this . _appId , pushClientId : this . _pushClientId , seqId : this . _seqId } ;
}
close ( ) {
this . _destroy ( ) , this . emit ( "close" ) ;
}
}
2024-07-12 08:50:13 +00:00
async function Bs ( e2 , t2 ) {
2024-06-03 09:11:28 +00:00
const n2 = ` http:// ${ e2 } : ${ t2 } /system/ping ` ;
try {
const e3 = await ( s2 = { url : n2 , timeout : 500 } , new Promise ( ( e4 , t3 ) => {
ne . request ( { ... s2 , success ( t4 ) {
e4 ( t4 ) ;
} , fail ( e5 ) {
t3 ( e5 ) ;
} } ) ;
} ) ) ;
return ! ( ! e3 . data || 0 !== e3 . data . code ) ;
} catch ( e3 ) {
return false ;
}
var s2 ;
}
2024-07-12 08:50:13 +00:00
async function Ws ( e2 ) {
2024-06-03 09:11:28 +00:00
{
const { osName : e3 , osVersion : t3 } = ce ( ) ;
"ios" === e3 && function ( e4 ) {
if ( ! e4 || "string" != typeof e4 )
return 0 ;
const t4 = e4 . match ( /^(\d+)./ ) ;
return t4 && t4 [ 1 ] ? parseInt ( t4 [ 1 ] ) : 0 ;
} ( t3 ) >= 14 && console . warn ( "iOS 14及以上版本连接uniCloud本地调试服务需要允许客户端查找并连接到本地网络上的设备( 仅开发期间需要, 发行后不需要) " ) ;
}
const t2 = e2 . _ _dev _ _ ;
if ( ! t2 . debugInfo )
return ;
const { address : n2 , servePort : s2 } = t2 . debugInfo , { address : r2 } = await async function ( e3 , t3 ) {
let n3 ;
for ( let s3 = 0 ; s3 < e3 . length ; s3 ++ ) {
const r3 = e3 [ s3 ] ;
2024-07-12 08:50:13 +00:00
if ( await Bs ( r3 , t3 ) ) {
2024-06-03 09:11:28 +00:00
n3 = r3 ;
break ;
}
}
return { address : n3 , port : t3 } ;
} ( n2 , s2 ) ;
if ( r2 )
return t2 . localAddress = r2 , void ( t2 . localPort = s2 ) ;
const i2 = console [ "error" ] ;
let o2 = "" ;
2024-07-12 08:50:13 +00:00
if ( "remote" === t2 . debugInfo . initialLaunchType ? ( t2 . debugInfo . forceRemote = true , o2 = "当前客户端和HBuilderX不在同一局域网下( 或其他网络原因无法连接HBuilderX) , uniCloud本地调试服务不对当前客户端生效。\n- 如果不使用uniCloud本地调试服务, 请直接忽略此信息。\n- 如需使用uniCloud本地调试服务, 请将客户端与主机连接到同一局域网下并重新运行到客户端。" ) : o2 = "无法连接uniCloud本地调试服务, 请检查当前客户端是否与主机在同一局域网下。\n- 如需使用uniCloud本地调试服务, 请将客户端与主机连接到同一局域网下并重新运行到客户端。" , o2 += "\n- 如果在HBuilderX开启的状态下切换过网络环境, 请重启HBuilderX后再试\n- 检查系统防火墙是否拦截了HBuilderX自带的nodejs\n- 检查是否错误的使用拦截器修改uni.request方法的参数" , 0 === C . indexOf ( "mp-" ) && ( o2 += "\n- 小程序中如何使用uniCloud, 请参考: https://uniapp.dcloud.net.cn/uniCloud/publish.html#useinmp" ) , ! t2 . debugInfo . forceRemote )
2024-06-03 09:11:28 +00:00
throw new Error ( o2 ) ;
i2 ( o2 ) ;
}
2024-07-12 08:50:13 +00:00
function Hs ( e2 ) {
2024-06-03 09:11:28 +00:00
e2 . _initPromiseHub || ( e2 . _initPromiseHub = new v ( { createPromise : function ( ) {
let t2 = Promise . resolve ( ) ;
var n2 ;
n2 = 1 , t2 = new Promise ( ( e3 ) => {
setTimeout ( ( ) => {
e3 ( ) ;
} , n2 ) ;
} ) ;
const s2 = e2 . auth ( ) ;
return t2 . then ( ( ) => s2 . getLoginState ( ) ) . then ( ( e3 ) => e3 ? Promise . resolve ( ) : s2 . signInAnonymously ( ) ) ;
} } ) ) ;
}
2024-07-12 08:50:13 +00:00
const zs = { tcb : bt , tencent : bt , aliyun : fe , private : At , alipay : Nt } ;
let Js = new class {
2024-06-03 09:11:28 +00:00
init ( e2 ) {
let t2 = { } ;
2024-07-12 08:50:13 +00:00
const n2 = zs [ e2 . provider ] ;
2024-06-03 09:11:28 +00:00
if ( ! n2 )
throw new Error ( "未提供正确的provider参数" ) ;
t2 = n2 . init ( e2 ) , function ( e3 ) {
const t3 = { } ;
2024-07-12 08:50:13 +00:00
e3 . _ _dev _ _ = t3 , t3 . debugLog = "app" === C ;
const n3 = P ;
2024-06-03 09:11:28 +00:00
n3 && ! n3 . code && ( t3 . debugInfo = n3 ) ;
const s2 = new v ( { createPromise : function ( ) {
2024-07-12 08:50:13 +00:00
return Ws ( e3 ) ;
2024-06-03 09:11:28 +00:00
} } ) ;
t3 . initLocalNetwork = function ( ) {
return s2 . exec ( ) ;
} ;
2024-07-12 08:50:13 +00:00
} ( t2 ) , Hs ( t2 ) , Bn ( t2 ) , function ( e3 ) {
2024-06-03 09:11:28 +00:00
const t3 = e3 . uploadFile ;
e3 . uploadFile = function ( e4 ) {
return t3 . call ( this , e4 ) ;
} ;
} ( t2 ) , function ( e3 ) {
e3 . database = function ( t3 ) {
if ( t3 && Object . keys ( t3 ) . length > 0 )
return e3 . init ( t3 ) . database ( ) ;
if ( this . _database )
return this . _database ;
2024-07-12 08:50:13 +00:00
const n3 = es ( ts , { uniClient : e3 } ) ;
2024-06-03 09:11:28 +00:00
return this . _database = n3 , n3 ;
} , e3 . databaseForJQL = function ( t3 ) {
if ( t3 && Object . keys ( t3 ) . length > 0 )
return e3 . init ( t3 ) . databaseForJQL ( ) ;
if ( this . _databaseForJQL )
return this . _databaseForJQL ;
2024-07-12 08:50:13 +00:00
const n3 = es ( ts , { uniClient : e3 , isJQL : true } ) ;
2024-06-03 09:11:28 +00:00
return this . _databaseForJQL = n3 , n3 ;
} ;
} ( t2 ) , function ( e3 ) {
2024-07-12 08:50:13 +00:00
e3 . getCurrentUserInfo = Os , e3 . chooseAndUploadFile = Ls . initChooseAndUploadFile ( e3 ) , Object . assign ( e3 , { get mixinDatacom ( ) {
return Us ( e3 ) ;
} } ) , e3 . SSEChannel = $s , e3 . initSecureNetworkByWeixin = Fs ( e3 ) , e3 . setCustomClientInfo = Ks , e3 . importObject = Ns ( e3 ) ;
2024-06-03 09:11:28 +00:00
} ( t2 ) ;
return [ "callFunction" , "uploadFile" , "deleteFile" , "getTempFileURL" , "downloadFile" , "chooseAndUploadFile" ] . forEach ( ( e3 ) => {
if ( ! t2 [ e3 ] )
return ;
const n3 = t2 [ e3 ] ;
t2 [ e3 ] = function ( ) {
return n3 . apply ( t2 , Array . from ( arguments ) ) ;
} , t2 [ e3 ] = ( /* @__PURE__ */ function ( e4 , t3 ) {
return function ( n4 ) {
let s2 = false ;
if ( "callFunction" === t3 ) {
const e5 = n4 && n4 . type || c ;
s2 = e5 !== c ;
}
const r2 = "callFunction" === t3 && ! s2 , i2 = this . _initPromiseHub . exec ( ) ;
n4 = n4 || { } ;
const { success : o2 , fail : a2 , complete : u2 } = ee ( n4 ) , h2 = i2 . then ( ( ) => s2 ? Promise . resolve ( ) : M ( q ( t3 , "invoke" ) , n4 ) ) . then ( ( ) => e4 . call ( this , n4 ) ) . then ( ( e5 ) => s2 ? Promise . resolve ( e5 ) : M ( q ( t3 , "success" ) , e5 ) . then ( ( ) => M ( q ( t3 , "complete" ) , e5 ) ) . then ( ( ) => ( r2 && Y ( j , { type : H , content : e5 } ) , Promise . resolve ( e5 ) ) ) , ( e5 ) => s2 ? Promise . reject ( e5 ) : M ( q ( t3 , "fail" ) , e5 ) . then ( ( ) => M ( q ( t3 , "complete" ) , e5 ) ) . then ( ( ) => ( Y ( j , { type : H , content : e5 } ) , Promise . reject ( e5 ) ) ) ) ;
if ( ! ( o2 || a2 || u2 ) )
return h2 ;
h2 . then ( ( e5 ) => {
o2 && o2 ( e5 ) , u2 && u2 ( e5 ) , r2 && Y ( j , { type : H , content : e5 } ) ;
} , ( e5 ) => {
a2 && a2 ( e5 ) , u2 && u2 ( e5 ) , r2 && Y ( j , { type : H , content : e5 } ) ;
} ) ;
} ;
} ( t2 [ e3 ] , e3 ) ) . bind ( t2 ) ;
} ) , t2 . init = this . init , t2 ;
}
} ( ) ;
( ( ) => {
2024-07-12 08:50:13 +00:00
const e2 = T ;
2024-06-03 09:11:28 +00:00
let t2 = { } ;
if ( e2 && 1 === e2 . length )
2024-07-12 08:50:13 +00:00
t2 = e2 [ 0 ] , Js = Js . init ( t2 ) , Js . _isDefault = true ;
2024-06-03 09:11:28 +00:00
else {
const t3 = [ "auth" , "callFunction" , "uploadFile" , "deleteFile" , "getTempFileURL" , "downloadFile" , "database" , "getCurrentUSerInfo" , "importObject" ] ;
let n2 ;
n2 = e2 && e2 . length > 0 ? "应用有多个服务空间, 请通过uniCloud.init方法指定要使用的服务空间" : "应用未关联服务空间, 请在uniCloud目录右键关联服务空间" , t3 . forEach ( ( e3 ) => {
2024-07-12 08:50:13 +00:00
Js [ e3 ] = function ( ) {
2024-06-03 09:11:28 +00:00
return console . error ( n2 ) , Promise . reject ( new te ( { code : "SYS_ERR" , message : n2 } ) ) ;
} ;
} ) ;
}
2024-07-12 08:50:13 +00:00
Object . assign ( Js , { get mixinDatacom ( ) {
return Us ( Js ) ;
} } ) , Cs ( Js ) , Js . addInterceptor = N , Js . removeInterceptor = D , Js . interceptObject = F ;
2024-06-03 09:11:28 +00:00
} ) ( ) ;
2024-04-11 06:31:44 +00:00
function createApp ( ) {
const app = vue . createVueApp ( App ) ;
return {
app
} ;
}
const { app : _ _app _ _ , Vuex : _ _Vuex _ _ , Pinia : _ _Pinia _ _ } = createApp ( ) ;
uni . Vuex = _ _Vuex _ _ ;
uni . Pinia = _ _Pinia _ _ ;
_ _app _ _ . provide ( "__globalStyles" , _ _uniConfig . styles ) ;
_ _app _ _ . _component . mpType = "app" ;
_ _app _ _ . _component . render = ( ) => {
} ;
_ _app _ _ . mount ( "#app" ) ;
} ) ( Vue ) ;