This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export enum WechatScene { | |
| DISCOVER = 1001, // 发现栏小程序主入口 | |
| TOP_SEARCH_RESULT = 1005, // 顶部搜索框的搜索结果页 | |
| DISCOVER_SEARCH_RESULT = 1006, // 发现栏小程序主入口搜索框的搜索结果页 | |
| MESSAGE_CARD = 1007, // 单人聊天会话中的小程序消息卡片 | |
| GROUP_MESSAGE_CARD = 1008, // 群聊会话中的小程序消息卡片 | |
| SCAN_QRCODE = 1011, // 扫描二维码 | |
| PRESS_QRCODE = 1012, // 长按图片识别二维码 | |
| ALBUM_QRCODE = 1013, // 手机相册选取二维码 | |
| TEMPLATE_MESSAGE = 1014, // 小程序模版消息 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import mapKeys from 'lodash/mapKeys' | |
| const toKebabDataSet = (dataSet = {}) => { | |
| return mapKeys( | |
| dataSet, | |
| (_, key) => 'data-' + key.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase() | |
| ) | |
| } | |
| export default (props) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function requestMultipleAnimationFrame(cb, times) { | |
| if (times === 1) { | |
| return requestAnimationFrame(cb); | |
| } else { | |
| return requestAnimationFrame(() => { | |
| requestMultipleAnimationFrame(cb, times - 1); | |
| }); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat package.json | jq .scripts |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.