protocols.js 8.7 KB
Newer Older
X
xiaoyucoding 已提交
1
// 不支持的 API 列表
2
const todos = [
X
xiaoyucoding 已提交
3 4 5 6 7
  'saveImageToPhotosAlbum',
  'getRecorderManager',
  'getBackgroundAudioManager',
  'createInnerAudioContext',
  'createVideoContext',
X
xiaoyucoding 已提交
8 9
  'createCameraContext',
  'createLivePlayerContext',
X
xiaoyucoding 已提交
10
  'openDocument',
X
xiaoyucoding 已提交
11
  'onMemoryWarning',
X
xiaoyucoding 已提交
12 13 14
  'startAccelerometer',
  'startCompass',
  'addPhoneContact',
X
xiaoyucoding 已提交
15 16 17 18 19 20 21 22 23 24 25
  'authorize',
  'chooseAddress',
  'chooseInvoiceTitle',
  'addTemplate',
  'deleteTemplate',
  'getTemplateLibraryById',
  'getTemplateLibraryList',
  'getTemplateList',
  'sendTemplateMessage',
  'setEnableDebug',
  'getExtConfig',
X
xiaoyucoding 已提交
26 27
  'getExtConfigSync',
  'onWindowResize',
W
wangyaqi 已提交
28 29
  'offWindowResize',
  'saveVideoToPhotosAlbum'
fxy060608's avatar
fxy060608 已提交
30 31
]

32 33
// 存在兼容性的 API 列表
const canIUses = [
34 35 36 37 38 39 40 41
  'startPullDownRefresh',
  'setTabBarItem',
  'setTabBarStyle',
  'hideTabBar',
  'showTabBar',
  'setTabBarBadge',
  'removeTabBarBadge',
  'showTabBarRedDot',
W
wangyaqi 已提交
42 43 44 45
  'hideTabBarRedDot',
  'openSetting',
  'getSetting',
  'createIntersectionObserver',
W
wangyaqi 已提交
46 47 48
  'getUpdateManager',
  'setBackgroundColor',
  'setBackgroundTextStyle'
49 50
]

X
xiaoyucoding 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63
function _handleNetworkInfo (result) {
  switch (result.networkType) {
    case 'NOTREACHABLE':
      result.networkType = 'none'
      break
    case 'WWAN':
      // TODO ?
      result.networkType = '3g'
      break
    default:
      result.networkType = result.networkType.toLowerCase()
      break
  }
X
xiaoyucoding 已提交
64
  return {}
X
xiaoyucoding 已提交
65 66
}

X
xiaoyucoding 已提交
67 68 69 70 71 72 73 74
function _handleSystemInfo (result) {
  let platform = result.platform ? result.platform.toLowerCase() : 'devtools'
  if (!~['android', 'ios'].indexOf(platform)) {
    platform = 'devtools'
  }
  result.platform = platform
}

X
xiaoyucoding 已提交
75
const protocols = { // 需要做转换的 API 列表
fxy060608's avatar
fxy060608 已提交
76
  returnValue (methodName, res = {}) { // 通用 returnValue 解析
X
xiaoyucoding 已提交
77 78 79 80
    if (res.error || res.errorMessage) {
      res.errMsg = `${methodName}:fail ${res.errorMessage || res.error}`
      delete res.error
      delete res.errorMessage
X
xiaoyucoding 已提交
81 82
    } else {
      res.errMsg = `${methodName}:ok`
X
xiaoyucoding 已提交
83 84 85 86
    }
    return res
  },
  request: {
87
    name: my.canIUse('request') ? 'request' : 'httpRequest',
X
xiaoyucoding 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
    args (fromArgs) {
      if (!fromArgs.header) { // 默认增加 header 参数,方便格式化 content-type
        fromArgs.header = {}
      }
      return {
        header (header = {}, toArgs) {
          const headers = {
            'content-type': 'application/json'
          }
          Object.keys(header).forEach(key => {
            headers[key.toLocaleLowerCase()] = header[key]
          })
          return {
            name: 'headers',
            value: headers
          }
        },
        method: 'method', // TODO 支付宝小程序仅支持 get,post
        responseType: false
      }
    },
    returnValue: {
      status: 'statusCode',
      headers: 'header'
    }
  },
  setNavigationBarColor: {
    name: 'setNavigationBar',
    args: {
      frontColor: false,
      animation: false
    }
  },
  setNavigationBarTitle: {
    name: 'setNavigationBar'
  },
  showModal ({
    showCancel = true
  } = {}) {
    if (showCancel) {
      return {
        name: 'confirm',
        args: {
          cancelColor: false,
          confirmColor: false,
          cancelText: 'cancelButtonText',
          confirmText: 'confirmButtonText'
        },
        returnValue (fromRes, toRes) {
          toRes.confirm = fromRes.confirm
          toRes.cancel = !fromRes.confirm
        }
      }
    }
    return {
      name: 'alert',
      args: {
        confirmColor: false,
        confirmText: 'buttonText'
      },
      returnValue (fromRes, toRes) {
        toRes.confirm = true
        toRes.cancel = false
      }
    }
  },
  showToast ({
    icon = 'success'
  } = {}) {
    const args = {
      title: 'content',
      icon: 'type',
      duration: false,
      image: false,
      mask: false
    }
    if (icon === 'loading') {
      return {
        name: 'showLoading',
        args
      }
    }
    return {
      name: 'showToast',
      args
    }
  },
  showActionSheet: {
    name: 'showActionSheet',
    args: {
      itemList: 'items',
      itemColor: false
    },
    returnValue: {
      index: 'tapIndex'
    }
  },
X
xiaoyucoding 已提交
185 186 187 188 189 190
  showLoading: {
    args: {
      title: 'content',
      mask: false
    }
  },
X
xiaoyucoding 已提交
191 192 193 194 195 196 197 198
  uploadFile: {
    args: {
      name: 'fileName'
    }
    // 从测试结果看,是有返回对象的,文档上没有说明。
  },
  downloadFile: {
    returnValue: {
X
xiaoyucoding 已提交
199
      apFilePath: 'tempFilePath'
X
xiaoyucoding 已提交
200
    }
W
wangyaqi 已提交
201 202
  },
  chooseVideo: {
fxy060608's avatar
fxy060608 已提交
203
    // 支付宝小程序文档中未找到(仅在getSetting处提及),但实际可用
W
wangyaqi 已提交
204 205 206
    returnValue: {
      apFilePath: 'tempFilePath'
    }
X
xiaoyucoding 已提交
207 208 209 210 211 212 213 214 215 216
  },
  connectSocket: {
    args: {
      method: false,
      protocols: false
    }
    // TODO 有没有返回值还需要测试下
  },
  chooseImage: {
    returnValue: {
X
xiaoyucoding 已提交
217
      apFilePaths: 'tempFilePaths'
X
xiaoyucoding 已提交
218 219 220 221
    }
  },
  previewImage: {
    args (fromArgs) {
X
xiaoyucoding 已提交
222
      // 支付宝小程序的 current 是索引值,而非图片地址。
223 224 225 226 227 228 229 230
      const currentIndex = Number(fromArgs.current)
      if (isNaN(currentIndex)) {
        if (fromArgs.current && Array.isArray(fromArgs.urls)) {
          const index = fromArgs.urls.indexOf(fromArgs.current)
          fromArgs.current = ~index ? index : 0
        }
      } else {
        fromArgs.current = currentIndex
X
xiaoyucoding 已提交
231
      }
X
xiaoyucoding 已提交
232
      return {
X
xiaoyucoding 已提交
233 234
        indicator: false,
        loop: false
X
xiaoyucoding 已提交
235
      }
X
xiaoyucoding 已提交
236 237 238 239 240 241 242
    }
  },
  saveFile: {
    args: {
      tempFilePath: 'apFilePath'
    },
    returnValue: {
X
xiaoyucoding 已提交
243
      apFilePath: 'savedFilePath'
X
xiaoyucoding 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256
    }
  },
  getSavedFileInfo: {
    args: {
      filePath: 'apFilePath'
    },
    returnValue (result) {
      if (result.fileList && result.fileList.length) {
        result.fileList.forEach(file => {
          file.filePath = file.apFilePath
          delete file.apFilePath
        })
      }
X
xiaoyucoding 已提交
257
      return {}
X
xiaoyucoding 已提交
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
    }
  },
  removeSavedFile: {
    args: {
      filePath: 'apFilePath'
    }
  },
  getLocation: {
    args: {
      type: false,
      altitude: false
    }
  },
  openLocation: {
    args: {
      // TODO address 参数在阿里上是必传的
    }
  },
  getNetworkType: {
    returnValue: _handleNetworkInfo
  },
  onNetworkStatusChange: {
    returnValue: _handleNetworkInfo
  },
  stopAccelerometer: {
    name: 'offAccelerometerChange'
  },
  stopCompass: {
    name: 'offCompassChange'
  },
  scanCode: {
    name: 'scan',
fxy060608's avatar
fxy060608 已提交
290
    args (fromArgs) {
291 292 293
      if (fromArgs.scanType === 'qrCode') {
        fromArgs.type = 'qr'
        return {
fxy060608's avatar
fxy060608 已提交
294
          onlyFromCamera: 'hideAlbum'
295
        }
fxy060608's avatar
fxy060608 已提交
296
      } else if (fromArgs.scanType === 'barCode') {
297 298
        fromArgs.type = 'bar'
        return {
fxy060608's avatar
fxy060608 已提交
299
          onlyFromCamera: 'hideAlbum'
300 301 302 303
        }
      } else {
        return {
          scanType: false,
fxy060608's avatar
fxy060608 已提交
304
          onlyFromCamera: 'hideAlbum'
305 306
        }
      }
X
xiaoyucoding 已提交
307 308 309
    },
    returnValue: {
      code: 'result'
X
xiaoyucoding 已提交
310 311 312 313 314 315 316 317 318 319 320
    }
  },
  setClipboardData: {
    name: 'setClipboard',
    args: {
      data: 'text'
    }
  },
  getClipboardData: {
    name: 'getClipboard',
    returnValue: {
X
xiaoyucoding 已提交
321
      text: 'data'
X
xiaoyucoding 已提交
322 323 324 325 326 327
    }
  },
  pageScrollTo: {
    args: {
      duration: false
    }
X
xiaoyucoding 已提交
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
  },
  login: {
    name: 'getAuthCode',
    returnValue (result) {
      result.code = result.authCode
    }
  },
  getUserInfo: {
    name: 'getAuthUserInfo',
    returnValue (result) {
      result.userInfo = {
        nickName: result.nickName,
        avatarUrl: result.avatar
      }
    }
  },
  requestPayment: {
    name: 'tradePay',
    args: {
347
      orderInfo: 'tradeNO'
X
xiaoyucoding 已提交
348
    }
X
xiaoyucoding 已提交
349 350 351 352 353 354 355
  },
  getBLEDeviceServices: {
    returnValue (result) {
      result.services.forEach((item) => {
        item.uuid = item.serviceId
      })
    }
W
wangyaqi 已提交
356 357 358 359 360 361 362 363 364 365 366 367
  },
  createBLEConnection: {
    name: 'connectBLEDevice',
    args: {
      timeout: false
    }
  },
  closeBLEConnection: {
    name: 'disconnectBLEDevice'
  },
  onBLEConnectionStateChange: {
    name: 'onBLEConnectionStateChanged'
X
xiaoyucoding 已提交
368 369 370 371 372
  },
  makePhoneCall: {
    args: {
      phoneNumber: 'number'
    }
X
xiaoyucoding 已提交
373 374 375
  },
  stopGyroscope: {
    name: 'offGyroscopeChange'
X
xiaoyucoding 已提交
376 377 378 379 380 381
  },
  getSystemInfo: {
    returnValue: _handleSystemInfo
  },
  getSystemInfoSync: {
    returnValue: _handleSystemInfo
382 383 384 385 386 387 388
  },
  // 文档没提到,但是实测可用。
  canvasToTempFilePath: {
    returnValue (result) {
      // 真机的情况下会有 tempFilePath 这个值,因此需要主动修改。
      result.tempFilePath = result.apFilePath
    }
X
xiaoyucoding 已提交
389 390 391 392 393 394 395 396 397 398
  },
  setScreenBrightness: {
    args: {
      value: 'brightness'
    }
  },
  getScreenBrightness: {
    returnValue: {
      brightness: 'value'
    }
W
wangyaqi 已提交
399 400 401
  },
  showShareMenu: {
    name: 'showSharePanel'
402 403 404
  },
  hideHomeButton: {
    name: 'hideBackHome'
X
xiaoyucoding 已提交
405
  }
fxy060608's avatar
fxy060608 已提交
406 407
}

408 409 410 411
export {
  protocols,
  todos,
  canIUses
412
}