vite-uni-dev-tool 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist/const.cjs +1 -1
- package/dist/const.d.ts +1 -0
- package/dist/const.d.ts.map +1 -1
- package/dist/const.js +1 -1
- package/dist/core.d.ts.map +1 -1
- package/dist/core.js +2 -2
- package/dist/i18n/locales/en.cjs +1 -1
- package/dist/i18n/locales/en.d.ts +5 -0
- package/dist/i18n/locales/en.d.ts.map +1 -1
- package/dist/i18n/locales/en.js +1 -1
- package/dist/i18n/locales/zh-Hans.cjs +1 -1
- package/dist/i18n/locales/zh-Hans.d.ts +5 -0
- package/dist/i18n/locales/zh-Hans.d.ts.map +1 -1
- package/dist/i18n/locales/zh-Hans.js +1 -1
- package/dist/modules/devIntercept/index.cjs +9 -9
- package/dist/modules/devIntercept/index.d.ts +1 -1
- package/dist/modules/devIntercept/index.d.ts.map +1 -1
- package/dist/modules/devIntercept/index.js +9 -9
- package/dist/modules/devStore/index.cjs +1 -1
- package/dist/modules/devStore/index.d.ts.map +1 -1
- package/dist/modules/devStore/index.js +1 -1
- package/dist/plugins/uniDevTool/transform/transformMain.cjs +3 -3
- package/dist/plugins/uniDevTool/transform/transformMain.d.ts +2 -1
- package/dist/plugins/uniDevTool/transform/transformMain.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/transform/transformMain.js +3 -3
- package/dist/plugins/uniDevTool/transform/transformVue.cjs +31 -25
- package/dist/plugins/uniDevTool/transform/transformVue.d.ts +2 -1
- package/dist/plugins/uniDevTool/transform/transformVue.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/transform/transformVue.js +30 -24
- package/dist/plugins/uniDevTool/uniDevTool.cjs +3 -3
- package/dist/plugins/uniDevTool/uniDevTool.d.ts +3 -1
- package/dist/plugins/uniDevTool/uniDevTool.d.ts.map +1 -1
- package/dist/plugins/uniDevTool/uniDevTool.js +3 -3
- package/dist/type.d.ts +3 -0
- package/dist/type.d.ts.map +1 -1
- package/dist/v3/DevTool/components/BluetoothList/BluetoothItem.vue +199 -199
- package/dist/v3/DevTool/components/BluetoothList/BluetoothTool.vue +730 -730
- package/dist/v3/DevTool/components/BluetoothList/index.vue +167 -167
- package/dist/v3/DevTool/components/CaptureScreen/index.vue +109 -109
- package/dist/v3/DevTool/components/ConsoleList/ConsoleItem.vue +230 -225
- package/dist/v3/DevTool/components/ConsoleList/RunJSInput.vue +247 -247
- package/dist/v3/DevTool/components/ConsoleList/index.vue +171 -171
- package/dist/v3/DevTool/components/ConsoleList/staticTips.ts +1145 -1145
- package/dist/v3/DevTool/components/DevToolTitle/index.vue +24 -24
- package/dist/v3/DevTool/components/DevToolWindow/DevToolOverlay.vue +197 -197
- package/dist/v3/DevTool/components/DevToolWindow/hooks/dataUtils.ts +48 -48
- package/dist/v3/DevTool/components/DevToolWindow/hooks/useDevToolData.ts +387 -387
- package/dist/v3/DevTool/components/DevToolWindow/hooks/useDevToolHandlers.ts +629 -629
- package/dist/v3/DevTool/components/DevToolWindow/hooks/useDevToolOverlay.ts +201 -197
- package/dist/v3/DevTool/components/ElEvent/ElEventItem.vue +105 -105
- package/dist/v3/DevTool/components/ElEvent/index.vue +106 -106
- package/dist/v3/DevTool/components/Instance/components/InstanceTreeNode.vue +265 -265
- package/dist/v3/DevTool/components/Instance/flatten.ts +226 -226
- package/dist/v3/DevTool/components/Instance/index.vue +94 -94
- package/dist/v3/DevTool/components/Instance/registry.ts +49 -49
- package/dist/v3/DevTool/components/Instance/transformTree.ts +375 -375
- package/dist/v3/DevTool/components/Instance/transformTreeCtx.ts +268 -268
- package/dist/v3/DevTool/components/Instance/typing.d.ts +43 -43
- package/dist/v3/DevTool/components/InstanceDetail/index.vue +485 -485
- package/dist/v3/DevTool/components/JsonDetail/index.vue +70 -70
- package/dist/v3/DevTool/components/NFCList/NFCItem.vue +112 -112
- package/dist/v3/DevTool/components/NFCList/NFCTool.vue +454 -454
- package/dist/v3/DevTool/components/NFCList/const.ts +56 -56
- package/dist/v3/DevTool/components/NFCList/index.vue +94 -94
- package/dist/v3/DevTool/components/NetworkList/InterceptConfig.vue +624 -624
- package/dist/v3/DevTool/components/NetworkList/InterceptItem.vue +140 -140
- package/dist/v3/DevTool/components/NetworkList/NetworkDetail.vue +287 -287
- package/dist/v3/DevTool/components/NetworkList/NetworkIntercept.vue +88 -88
- package/dist/v3/DevTool/components/NetworkList/NetworkItem.vue +163 -163
- package/dist/v3/DevTool/components/NetworkList/NetworkSend.vue +589 -589
- package/dist/v3/DevTool/components/NetworkList/const.ts +4 -4
- package/dist/v3/DevTool/components/NetworkList/hooks/useNetworkForm.ts +86 -86
- package/dist/v3/DevTool/components/NetworkList/index.vue +160 -160
- package/dist/v3/DevTool/components/NetworkList/utils.ts +101 -101
- package/dist/v3/DevTool/components/Performance/index.vue +498 -498
- package/dist/v3/DevTool/components/Performance/modules/PerformanceMetrics.vue +153 -153
- package/dist/v3/DevTool/components/Performance/modules/usePerformanceChart.ts +460 -460
- package/dist/v3/DevTool/components/Performance/modules/usePerformanceData.ts +258 -258
- package/dist/v3/DevTool/components/PiniaList/index.vue +93 -93
- package/dist/v3/DevTool/components/RunJS/index.vue +148 -148
- package/dist/v3/DevTool/components/ScanCodeList/ScanCodeItem.vue +97 -97
- package/dist/v3/DevTool/components/ScanCodeList/index.vue +100 -100
- package/dist/v3/DevTool/components/SettingButton/index.vue +45 -45
- package/dist/v3/DevTool/components/SettingList/index.vue +218 -218
- package/dist/v3/DevTool/components/SettingList/modules/SettingBarrage.vue +304 -304
- package/dist/v3/DevTool/components/SettingList/modules/SettingDevTool.vue +212 -212
- package/dist/v3/DevTool/components/SettingList/modules/SettingInfo.vue +157 -157
- package/dist/v3/DevTool/components/SettingList/modules/SettingLanguage.vue +74 -74
- package/dist/v3/DevTool/components/SettingList/modules/SettingLog.vue +230 -230
- package/dist/v3/DevTool/components/SettingList/typing.d.ts +2 -2
- package/dist/v3/DevTool/components/SourceCode/Line.vue +127 -127
- package/dist/v3/DevTool/components/SourceCode/parseCode.ts +609 -609
- package/dist/v3/DevTool/components/StorageList/index.vue +174 -174
- package/dist/v3/DevTool/components/TransferList/TransferDetail.vue +268 -268
- package/dist/v3/DevTool/components/VuexList/index.vue +84 -84
- package/dist/v3/DevTool/index.vue +1 -0
- package/dist/v3/components/AppTransition/index.vue +176 -176
- package/dist/v3/components/AutoSizer/index.vue +192 -192
- package/dist/v3/components/AutoSizer/index1.vue +184 -184
- package/dist/v3/components/AutoSizer/utils.ts +49 -49
- package/dist/v3/components/Barrage/BarrageItem.vue +137 -137
- package/dist/v3/components/Barrage/index.vue +202 -202
- package/dist/v3/components/CircularButton/index.vue +84 -84
- package/dist/v3/components/CustomSwiper/CustomSwiperItem.vue +49 -49
- package/dist/v3/components/CustomSwiper/index.vue +104 -104
- package/dist/v3/components/DevErrorBoundary/index.vue +380 -0
- package/dist/v3/components/Empty/index.vue +29 -29
- package/dist/v3/components/FilterSelect/index.vue +179 -179
- package/dist/v3/components/JsonPretty/components/Brackets/index.vue +27 -27
- package/dist/v3/components/JsonPretty/components/Carets/index.vue +59 -59
- package/dist/v3/components/JsonPretty/components/CheckController/index.vue +136 -136
- package/dist/v3/components/JsonPretty/components/TreeNode/index.vue +387 -387
- package/dist/v3/components/JsonPretty/hooks/useClipboard.ts +21 -21
- package/dist/v3/components/JsonPretty/hooks/useError.ts +21 -21
- package/dist/v3/components/JsonPretty/type.ts +127 -127
- package/dist/v3/components/JsonPretty/utils/index.ts +169 -169
- package/dist/v3/components/MovableContainer/index.vue +8 -4
- package/dist/v3/components/Pick/index.vue +322 -322
- package/dist/v3/components/Tag/index.vue +113 -113
- package/dist/v3/components/VirtualList/AutoSize.vue +40 -40
- package/dist/v3/components/VirtualList/index.vue +416 -416
- package/dist/v3/hooks/useBluetooth/index.ts +561 -561
- package/dist/v3/hooks/useContainerStyle.ts +153 -153
- package/dist/v3/hooks/useNFC/index.ts +107 -107
- package/dist/v3/hooks/useNFC/typing.d.ts +396 -396
- package/dist/v3/hooks/useNFC/useNFCAndroid.ts +966 -966
- package/dist/v3/hooks/useNFC/useNFCMpWeiXin.ts +812 -812
- package/dist/v3/hooks/useNFC/utils.ts +754 -754
- package/dist/v3/hooks/useRequest/index.ts +586 -586
- package/dist/v3/hooks/useRequest/utils.ts +267 -267
- package/dist/v3/hooks/useScanCode/index.ts +206 -206
- package/dist/v3/hooks/useWebsocket/index.ts +253 -253
- package/dist/v3/styles/theme.ts +12 -12
- package/package.json +9 -1
|
@@ -1,93 +1,93 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<view class="pinia-content">
|
|
3
|
-
<view class="pinia-control">
|
|
4
|
-
<DevToolTitle>{{ t('pinia.title') }}</DevToolTitle>
|
|
5
|
-
</view>
|
|
6
|
-
<view class="pinia-json-wrapper">
|
|
7
|
-
<JsonPretty
|
|
8
|
-
editable
|
|
9
|
-
showLength
|
|
10
|
-
virtual
|
|
11
|
-
v-if="showJson"
|
|
12
|
-
:data="piniaList"
|
|
13
|
-
:theme="theme"
|
|
14
|
-
:height="contentHeight - 32 - 32"
|
|
15
|
-
:nodeSelectable="() => false"
|
|
16
|
-
:pathCollapsible="() => false"
|
|
17
|
-
@update:data="onUpdateData"
|
|
18
|
-
@nodeClick="onNodeClick" />
|
|
19
|
-
<Empty v-else />
|
|
20
|
-
</view>
|
|
21
|
-
</view>
|
|
22
|
-
</template>
|
|
23
|
-
<script lang="ts" setup>
|
|
24
|
-
import { computed } from 'vue';
|
|
25
|
-
import JsonPretty from '../../../components/JsonPretty/index.vue';
|
|
26
|
-
import Empty from '../../../components/Empty/index.vue';
|
|
27
|
-
import DevToolTitle from '../DevToolTitle/index.vue';
|
|
28
|
-
import { getValueByPath } from '../../../../utils';
|
|
29
|
-
import { useI18n } from '../../../../i18n';
|
|
30
|
-
|
|
31
|
-
const { t } = useI18n();
|
|
32
|
-
|
|
33
|
-
const props = defineProps<{
|
|
34
|
-
piniaList: Record<string, any>;
|
|
35
|
-
theme?: string;
|
|
36
|
-
contentHeight: number;
|
|
37
|
-
}>();
|
|
38
|
-
const emit = defineEmits<{
|
|
39
|
-
(e: 'update:piniaList', data: Record<string, any>): void;
|
|
40
|
-
(e: 'diffValue', value: any): void;
|
|
41
|
-
}>();
|
|
42
|
-
const showJson = computed(() => {
|
|
43
|
-
try {
|
|
44
|
-
const str = JSON.stringify(props.piniaList);
|
|
45
|
-
if (typeof props.piniaList === 'object' && (str === '' || str === '{}')) {
|
|
46
|
-
return false;
|
|
47
|
-
}
|
|
48
|
-
return true;
|
|
49
|
-
} catch (_error) {
|
|
50
|
-
return false;
|
|
51
|
-
}
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
let currentSelect: any;
|
|
55
|
-
function onUpdateData(data: Record<string, any>) {
|
|
56
|
-
try {
|
|
57
|
-
const keys = currentSelect?.path?.slice(5);
|
|
58
|
-
if (!keys) return;
|
|
59
|
-
const newData = getValueByPath(data, keys);
|
|
60
|
-
|
|
61
|
-
emit('update:piniaList', data);
|
|
62
|
-
emit('diffValue', {
|
|
63
|
-
[keys]: newData,
|
|
64
|
-
});
|
|
65
|
-
} catch (error) {
|
|
66
|
-
console.log('error: ', error);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
function onNodeClick(node: any) {
|
|
70
|
-
currentSelect = node;
|
|
71
|
-
}
|
|
72
|
-
</script>
|
|
73
|
-
<style scoped>
|
|
74
|
-
.pinia-content {
|
|
75
|
-
font-size: var(--dev-tool-base-font-size);
|
|
76
|
-
height: 100%;
|
|
77
|
-
box-sizing: border-box;
|
|
78
|
-
overflow: hidden;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.pinia-control {
|
|
82
|
-
display: flex;
|
|
83
|
-
align-items: center;
|
|
84
|
-
padding: 0 16px;
|
|
85
|
-
height: 32px;
|
|
86
|
-
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
87
|
-
box-sizing: border-box;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
.pinia-json-wrapper {
|
|
91
|
-
padding: 0 16px;
|
|
92
|
-
}
|
|
93
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<view class="pinia-content">
|
|
3
|
+
<view class="pinia-control">
|
|
4
|
+
<DevToolTitle>{{ t('pinia.title') }}</DevToolTitle>
|
|
5
|
+
</view>
|
|
6
|
+
<view class="pinia-json-wrapper">
|
|
7
|
+
<JsonPretty
|
|
8
|
+
editable
|
|
9
|
+
showLength
|
|
10
|
+
virtual
|
|
11
|
+
v-if="showJson"
|
|
12
|
+
:data="piniaList"
|
|
13
|
+
:theme="theme"
|
|
14
|
+
:height="contentHeight - 32 - 32"
|
|
15
|
+
:nodeSelectable="() => false"
|
|
16
|
+
:pathCollapsible="() => false"
|
|
17
|
+
@update:data="onUpdateData"
|
|
18
|
+
@nodeClick="onNodeClick" />
|
|
19
|
+
<Empty v-else />
|
|
20
|
+
</view>
|
|
21
|
+
</view>
|
|
22
|
+
</template>
|
|
23
|
+
<script lang="ts" setup>
|
|
24
|
+
import { computed } from 'vue';
|
|
25
|
+
import JsonPretty from '../../../components/JsonPretty/index.vue';
|
|
26
|
+
import Empty from '../../../components/Empty/index.vue';
|
|
27
|
+
import DevToolTitle from '../DevToolTitle/index.vue';
|
|
28
|
+
import { getValueByPath } from '../../../../utils';
|
|
29
|
+
import { useI18n } from '../../../../i18n';
|
|
30
|
+
|
|
31
|
+
const { t } = useI18n();
|
|
32
|
+
|
|
33
|
+
const props = defineProps<{
|
|
34
|
+
piniaList: Record<string, any>;
|
|
35
|
+
theme?: string;
|
|
36
|
+
contentHeight: number;
|
|
37
|
+
}>();
|
|
38
|
+
const emit = defineEmits<{
|
|
39
|
+
(e: 'update:piniaList', data: Record<string, any>): void;
|
|
40
|
+
(e: 'diffValue', value: any): void;
|
|
41
|
+
}>();
|
|
42
|
+
const showJson = computed(() => {
|
|
43
|
+
try {
|
|
44
|
+
const str = JSON.stringify(props.piniaList);
|
|
45
|
+
if (typeof props.piniaList === 'object' && (str === '' || str === '{}')) {
|
|
46
|
+
return false;
|
|
47
|
+
}
|
|
48
|
+
return true;
|
|
49
|
+
} catch (_error) {
|
|
50
|
+
return false;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
let currentSelect: any;
|
|
55
|
+
function onUpdateData(data: Record<string, any>) {
|
|
56
|
+
try {
|
|
57
|
+
const keys = currentSelect?.path?.slice(5);
|
|
58
|
+
if (!keys) return;
|
|
59
|
+
const newData = getValueByPath(data, keys);
|
|
60
|
+
|
|
61
|
+
emit('update:piniaList', data);
|
|
62
|
+
emit('diffValue', {
|
|
63
|
+
[keys]: newData,
|
|
64
|
+
});
|
|
65
|
+
} catch (error) {
|
|
66
|
+
console.log('error: ', error);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
function onNodeClick(node: any) {
|
|
70
|
+
currentSelect = node;
|
|
71
|
+
}
|
|
72
|
+
</script>
|
|
73
|
+
<style scoped>
|
|
74
|
+
.pinia-content {
|
|
75
|
+
font-size: var(--dev-tool-base-font-size);
|
|
76
|
+
height: 100%;
|
|
77
|
+
box-sizing: border-box;
|
|
78
|
+
overflow: hidden;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.pinia-control {
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
padding: 0 16px;
|
|
85
|
+
height: 32px;
|
|
86
|
+
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
87
|
+
box-sizing: border-box;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.pinia-json-wrapper {
|
|
91
|
+
padding: 0 16px;
|
|
92
|
+
}
|
|
93
|
+
</style>
|
|
@@ -1,148 +1,148 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- eslint-disable vue/no-v-html, vue/no-v-text-v-html-on-component -->
|
|
3
|
-
<view class="run-js">
|
|
4
|
-
<view class="run-js-control">
|
|
5
|
-
<FilterInput
|
|
6
|
-
:modelValue="modelValue"
|
|
7
|
-
placeholder="查询"
|
|
8
|
-
@search="onSearch"
|
|
9
|
-
@update:modelValue="onUpdateModelValue" />
|
|
10
|
-
<Tag mode="clear" @click="onClear">清空</Tag>
|
|
11
|
-
</view>
|
|
12
|
-
<view class="run-js-list">
|
|
13
|
-
<view class="run-js-item" v-for="item in runJSList" :key="item.timer">
|
|
14
|
-
<view :class="`run-js-item-icon run-js-item-${item.mode}`"></view>
|
|
15
|
-
<view class="run-js-item-duration" v-if="item.mode === 'output'">
|
|
16
|
-
{{ item.duration }}ms
|
|
17
|
-
</view>
|
|
18
|
-
<!-- eslint-disable-next-line vue/no-v-html, vue/no-v-text-v-html-on-component -->
|
|
19
|
-
<view
|
|
20
|
-
class="run-js-item-content"
|
|
21
|
-
v-html="item.mode === 'input' ? item.code : item.result"></view>
|
|
22
|
-
</view>
|
|
23
|
-
<view class="run-js-item">
|
|
24
|
-
<view class="run-js-item-icon run-js-item-input"></view>
|
|
25
|
-
|
|
26
|
-
<input
|
|
27
|
-
:value="code"
|
|
28
|
-
class="run-js-input"
|
|
29
|
-
@input="onInput"
|
|
30
|
-
@confirm="onConfirm" />
|
|
31
|
-
</view>
|
|
32
|
-
</view>
|
|
33
|
-
</view>
|
|
34
|
-
</template>
|
|
35
|
-
<script lang="ts" setup>
|
|
36
|
-
import { ref } from 'vue';
|
|
37
|
-
import type { DevTool } from '../../../../type';
|
|
38
|
-
import FilterInput from '../../../components/FilterInput/index.vue';
|
|
39
|
-
import Tag from '../../../components/Tag/index.vue';
|
|
40
|
-
|
|
41
|
-
defineProps<{ runJSList: DevTool.RunJSItem[]; modelValue: string }>();
|
|
42
|
-
|
|
43
|
-
const emit = defineEmits<{
|
|
44
|
-
(e: 'search', value: string): void;
|
|
45
|
-
(e: 'update:modelValue', value: string): void;
|
|
46
|
-
(e: 'clear'): void;
|
|
47
|
-
(e: 'run', value: string): void;
|
|
48
|
-
}>();
|
|
49
|
-
const code = ref('');
|
|
50
|
-
|
|
51
|
-
function onSearch(value: string) {
|
|
52
|
-
emit('search', value);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function onUpdateModelValue(value: string) {
|
|
56
|
-
emit('update:modelValue', value);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
function onClear() {
|
|
60
|
-
emit('clear');
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
function onInput(e: any) {
|
|
64
|
-
code.value = e.detail.value;
|
|
65
|
-
}
|
|
66
|
-
function onConfirm() {
|
|
67
|
-
const value = code.value;
|
|
68
|
-
if (!value) return;
|
|
69
|
-
code.value = '';
|
|
70
|
-
setTimeout(() => {
|
|
71
|
-
emit('run', value);
|
|
72
|
-
}, 100);
|
|
73
|
-
}
|
|
74
|
-
</script>
|
|
75
|
-
<style scoped>
|
|
76
|
-
.run-js {
|
|
77
|
-
height: 100%;
|
|
78
|
-
font-size: var(--dev-tool-base-font-size);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.run-js-control {
|
|
82
|
-
display: flex;
|
|
83
|
-
align-items: center;
|
|
84
|
-
justify-content: space-between;
|
|
85
|
-
gap: 8px;
|
|
86
|
-
padding: 0 16px;
|
|
87
|
-
height: 32px;
|
|
88
|
-
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
89
|
-
box-sizing: border-box;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.run-js-list {
|
|
93
|
-
height: calc(100% - 32px);
|
|
94
|
-
overflow: auto;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.run-js-item {
|
|
98
|
-
position: relative;
|
|
99
|
-
display: flex;
|
|
100
|
-
padding: 0 16px;
|
|
101
|
-
min-height: 28px;
|
|
102
|
-
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
103
|
-
overflow: hidden;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.run-js-item-icon {
|
|
107
|
-
width: 8px;
|
|
108
|
-
height: 8px;
|
|
109
|
-
border: 1px solid #000;
|
|
110
|
-
border-bottom-color: transparent;
|
|
111
|
-
border-left-color: transparent;
|
|
112
|
-
overflow: hidden;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.run-js-item-input {
|
|
116
|
-
margin: 10px 0 10px -4px;
|
|
117
|
-
transform: rotate(45deg);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.run-js-item-output {
|
|
121
|
-
margin: 10px -4px 10px 0;
|
|
122
|
-
transform: rotate(-135deg);
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
.run-js-item-content {
|
|
126
|
-
margin-left: 16px;
|
|
127
|
-
min-height: 28px;
|
|
128
|
-
line-height: 28px;
|
|
129
|
-
white-space: pre-line;
|
|
130
|
-
word-break: break-all;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.run-js-input {
|
|
134
|
-
margin: 1px 0 1px 16px;
|
|
135
|
-
min-height: 26px;
|
|
136
|
-
width: 100%;
|
|
137
|
-
border: 1px solid transparent;
|
|
138
|
-
font-size: var(--dev-tool-base-font-size);
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.run-js-item-duration {
|
|
142
|
-
position: absolute;
|
|
143
|
-
top: 2px;
|
|
144
|
-
right: 16px;
|
|
145
|
-
height: 24px;
|
|
146
|
-
line-height: 24px;
|
|
147
|
-
}
|
|
148
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<!-- eslint-disable vue/no-v-html, vue/no-v-text-v-html-on-component -->
|
|
3
|
+
<view class="run-js">
|
|
4
|
+
<view class="run-js-control">
|
|
5
|
+
<FilterInput
|
|
6
|
+
:modelValue="modelValue"
|
|
7
|
+
placeholder="查询"
|
|
8
|
+
@search="onSearch"
|
|
9
|
+
@update:modelValue="onUpdateModelValue" />
|
|
10
|
+
<Tag mode="clear" @click="onClear">清空</Tag>
|
|
11
|
+
</view>
|
|
12
|
+
<view class="run-js-list">
|
|
13
|
+
<view class="run-js-item" v-for="item in runJSList" :key="item.timer">
|
|
14
|
+
<view :class="`run-js-item-icon run-js-item-${item.mode}`"></view>
|
|
15
|
+
<view class="run-js-item-duration" v-if="item.mode === 'output'">
|
|
16
|
+
{{ item.duration }}ms
|
|
17
|
+
</view>
|
|
18
|
+
<!-- eslint-disable-next-line vue/no-v-html, vue/no-v-text-v-html-on-component -->
|
|
19
|
+
<view
|
|
20
|
+
class="run-js-item-content"
|
|
21
|
+
v-html="item.mode === 'input' ? item.code : item.result"></view>
|
|
22
|
+
</view>
|
|
23
|
+
<view class="run-js-item">
|
|
24
|
+
<view class="run-js-item-icon run-js-item-input"></view>
|
|
25
|
+
|
|
26
|
+
<input
|
|
27
|
+
:value="code"
|
|
28
|
+
class="run-js-input"
|
|
29
|
+
@input="onInput"
|
|
30
|
+
@confirm="onConfirm" />
|
|
31
|
+
</view>
|
|
32
|
+
</view>
|
|
33
|
+
</view>
|
|
34
|
+
</template>
|
|
35
|
+
<script lang="ts" setup>
|
|
36
|
+
import { ref } from 'vue';
|
|
37
|
+
import type { DevTool } from '../../../../type';
|
|
38
|
+
import FilterInput from '../../../components/FilterInput/index.vue';
|
|
39
|
+
import Tag from '../../../components/Tag/index.vue';
|
|
40
|
+
|
|
41
|
+
defineProps<{ runJSList: DevTool.RunJSItem[]; modelValue: string }>();
|
|
42
|
+
|
|
43
|
+
const emit = defineEmits<{
|
|
44
|
+
(e: 'search', value: string): void;
|
|
45
|
+
(e: 'update:modelValue', value: string): void;
|
|
46
|
+
(e: 'clear'): void;
|
|
47
|
+
(e: 'run', value: string): void;
|
|
48
|
+
}>();
|
|
49
|
+
const code = ref('');
|
|
50
|
+
|
|
51
|
+
function onSearch(value: string) {
|
|
52
|
+
emit('search', value);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
function onUpdateModelValue(value: string) {
|
|
56
|
+
emit('update:modelValue', value);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function onClear() {
|
|
60
|
+
emit('clear');
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function onInput(e: any) {
|
|
64
|
+
code.value = e.detail.value;
|
|
65
|
+
}
|
|
66
|
+
function onConfirm() {
|
|
67
|
+
const value = code.value;
|
|
68
|
+
if (!value) return;
|
|
69
|
+
code.value = '';
|
|
70
|
+
setTimeout(() => {
|
|
71
|
+
emit('run', value);
|
|
72
|
+
}, 100);
|
|
73
|
+
}
|
|
74
|
+
</script>
|
|
75
|
+
<style scoped>
|
|
76
|
+
.run-js {
|
|
77
|
+
height: 100%;
|
|
78
|
+
font-size: var(--dev-tool-base-font-size);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.run-js-control {
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
justify-content: space-between;
|
|
85
|
+
gap: 8px;
|
|
86
|
+
padding: 0 16px;
|
|
87
|
+
height: 32px;
|
|
88
|
+
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
89
|
+
box-sizing: border-box;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.run-js-list {
|
|
93
|
+
height: calc(100% - 32px);
|
|
94
|
+
overflow: auto;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.run-js-item {
|
|
98
|
+
position: relative;
|
|
99
|
+
display: flex;
|
|
100
|
+
padding: 0 16px;
|
|
101
|
+
min-height: 28px;
|
|
102
|
+
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
103
|
+
overflow: hidden;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.run-js-item-icon {
|
|
107
|
+
width: 8px;
|
|
108
|
+
height: 8px;
|
|
109
|
+
border: 1px solid #000;
|
|
110
|
+
border-bottom-color: transparent;
|
|
111
|
+
border-left-color: transparent;
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.run-js-item-input {
|
|
116
|
+
margin: 10px 0 10px -4px;
|
|
117
|
+
transform: rotate(45deg);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.run-js-item-output {
|
|
121
|
+
margin: 10px -4px 10px 0;
|
|
122
|
+
transform: rotate(-135deg);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.run-js-item-content {
|
|
126
|
+
margin-left: 16px;
|
|
127
|
+
min-height: 28px;
|
|
128
|
+
line-height: 28px;
|
|
129
|
+
white-space: pre-line;
|
|
130
|
+
word-break: break-all;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.run-js-input {
|
|
134
|
+
margin: 1px 0 1px 16px;
|
|
135
|
+
min-height: 26px;
|
|
136
|
+
width: 100%;
|
|
137
|
+
border: 1px solid transparent;
|
|
138
|
+
font-size: var(--dev-tool-base-font-size);
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.run-js-item-duration {
|
|
142
|
+
position: absolute;
|
|
143
|
+
top: 2px;
|
|
144
|
+
right: 16px;
|
|
145
|
+
height: 24px;
|
|
146
|
+
line-height: 24px;
|
|
147
|
+
}
|
|
148
|
+
</style>
|
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<view class="scan-code-item">
|
|
3
|
-
<!-- <view class="scan-code-item-row"> {{ scanCodeItem.eventName }} </view> -->
|
|
4
|
-
<view class="scan-code-item-row" @click.stop="onOpenJson">
|
|
5
|
-
{{
|
|
6
|
-
scanCodeItem?.shortValue || scanCodeItem?.result || scanCodeItem?.errMsg
|
|
7
|
-
}}
|
|
8
|
-
</view>
|
|
9
|
-
|
|
10
|
-
<view class="scan-code-item-right">
|
|
11
|
-
{{
|
|
12
|
-
scanCodeItem.timer
|
|
13
|
-
? formatDate(scanCodeItem.timer, 'YYYY-MM-DD HH:mm:SS')
|
|
14
|
-
: ''
|
|
15
|
-
}}
|
|
16
|
-
</view>
|
|
17
|
-
|
|
18
|
-
<view class="scan-code-item-page">{{ scanCodeItem?.path }}</view>
|
|
19
|
-
|
|
20
|
-
<view
|
|
21
|
-
:class="`scan-code-item-right ${isUseDevSource ? 'link' : ''}`"
|
|
22
|
-
@click="emit('openCode', scanCodeItem?.stack)">
|
|
23
|
-
{{ scanCodeItem?.stack }}
|
|
24
|
-
</view>
|
|
25
|
-
</view>
|
|
26
|
-
</template>
|
|
27
|
-
<script lang="ts" setup>
|
|
28
|
-
import { computed } from 'vue';
|
|
29
|
-
import type { DevTool } from '../../../../type';
|
|
30
|
-
import { formatDate, isMockWX } from '../../../../utils';
|
|
31
|
-
|
|
32
|
-
const props = defineProps<{
|
|
33
|
-
scanCodeItem: DevTool.ScanCodeItem;
|
|
34
|
-
mode?: string;
|
|
35
|
-
useDevSource?: boolean;
|
|
36
|
-
}>();
|
|
37
|
-
|
|
38
|
-
const emit = defineEmits<{
|
|
39
|
-
(e: 'openJson', value?: { title?: string; data: Record<string, any> }): void;
|
|
40
|
-
(e: 'openCode', value?: string): void;
|
|
41
|
-
}>();
|
|
42
|
-
|
|
43
|
-
const isUseDevSource = computed(() => {
|
|
44
|
-
return (
|
|
45
|
-
!isMockWX(props?.scanCodeItem?.stack ?? '') &&
|
|
46
|
-
props.mode === 'development' &&
|
|
47
|
-
props.useDevSource
|
|
48
|
-
);
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
function onOpenJson() {
|
|
52
|
-
emit('openJson', {
|
|
53
|
-
title: '扫描详情',
|
|
54
|
-
data: props.scanCodeItem,
|
|
55
|
-
});
|
|
56
|
-
}
|
|
57
|
-
</script>
|
|
58
|
-
|
|
59
|
-
<style scoped>
|
|
60
|
-
.scan-code-item {
|
|
61
|
-
padding: 16px;
|
|
62
|
-
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
63
|
-
box-sizing: border-box;
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
.scan-code-item-row {
|
|
67
|
-
display: flex;
|
|
68
|
-
align-items: center;
|
|
69
|
-
justify-content: space-between;
|
|
70
|
-
height: 28px;
|
|
71
|
-
word-break: break-all;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.scan-code-item-right {
|
|
75
|
-
text-align: right;
|
|
76
|
-
word-break: break-all;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.link {
|
|
80
|
-
cursor: pointer;
|
|
81
|
-
text-decoration: underline;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.scan-code-item-page {
|
|
85
|
-
text-align: right;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.scan-code-item-position {
|
|
89
|
-
display: flex;
|
|
90
|
-
align-items: center;
|
|
91
|
-
min-height: 24px;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.scan-code-item-position > view {
|
|
95
|
-
width: 25%;
|
|
96
|
-
}
|
|
97
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<view class="scan-code-item">
|
|
3
|
+
<!-- <view class="scan-code-item-row"> {{ scanCodeItem.eventName }} </view> -->
|
|
4
|
+
<view class="scan-code-item-row" @click.stop="onOpenJson">
|
|
5
|
+
{{
|
|
6
|
+
scanCodeItem?.shortValue || scanCodeItem?.result || scanCodeItem?.errMsg
|
|
7
|
+
}}
|
|
8
|
+
</view>
|
|
9
|
+
|
|
10
|
+
<view class="scan-code-item-right">
|
|
11
|
+
{{
|
|
12
|
+
scanCodeItem.timer
|
|
13
|
+
? formatDate(scanCodeItem.timer, 'YYYY-MM-DD HH:mm:SS')
|
|
14
|
+
: ''
|
|
15
|
+
}}
|
|
16
|
+
</view>
|
|
17
|
+
|
|
18
|
+
<view class="scan-code-item-page">{{ scanCodeItem?.path }}</view>
|
|
19
|
+
|
|
20
|
+
<view
|
|
21
|
+
:class="`scan-code-item-right ${isUseDevSource ? 'link' : ''}`"
|
|
22
|
+
@click="emit('openCode', scanCodeItem?.stack)">
|
|
23
|
+
{{ scanCodeItem?.stack }}
|
|
24
|
+
</view>
|
|
25
|
+
</view>
|
|
26
|
+
</template>
|
|
27
|
+
<script lang="ts" setup>
|
|
28
|
+
import { computed } from 'vue';
|
|
29
|
+
import type { DevTool } from '../../../../type';
|
|
30
|
+
import { formatDate, isMockWX } from '../../../../utils';
|
|
31
|
+
|
|
32
|
+
const props = defineProps<{
|
|
33
|
+
scanCodeItem: DevTool.ScanCodeItem;
|
|
34
|
+
mode?: string;
|
|
35
|
+
useDevSource?: boolean;
|
|
36
|
+
}>();
|
|
37
|
+
|
|
38
|
+
const emit = defineEmits<{
|
|
39
|
+
(e: 'openJson', value?: { title?: string; data: Record<string, any> }): void;
|
|
40
|
+
(e: 'openCode', value?: string): void;
|
|
41
|
+
}>();
|
|
42
|
+
|
|
43
|
+
const isUseDevSource = computed(() => {
|
|
44
|
+
return (
|
|
45
|
+
!isMockWX(props?.scanCodeItem?.stack ?? '') &&
|
|
46
|
+
props.mode === 'development' &&
|
|
47
|
+
props.useDevSource
|
|
48
|
+
);
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
function onOpenJson() {
|
|
52
|
+
emit('openJson', {
|
|
53
|
+
title: '扫描详情',
|
|
54
|
+
data: props.scanCodeItem,
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
</script>
|
|
58
|
+
|
|
59
|
+
<style scoped>
|
|
60
|
+
.scan-code-item {
|
|
61
|
+
padding: 16px;
|
|
62
|
+
border-bottom: 1px solid var(--dev-tool-border-color);
|
|
63
|
+
box-sizing: border-box;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.scan-code-item-row {
|
|
67
|
+
display: flex;
|
|
68
|
+
align-items: center;
|
|
69
|
+
justify-content: space-between;
|
|
70
|
+
height: 28px;
|
|
71
|
+
word-break: break-all;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.scan-code-item-right {
|
|
75
|
+
text-align: right;
|
|
76
|
+
word-break: break-all;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.link {
|
|
80
|
+
cursor: pointer;
|
|
81
|
+
text-decoration: underline;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.scan-code-item-page {
|
|
85
|
+
text-align: right;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.scan-code-item-position {
|
|
89
|
+
display: flex;
|
|
90
|
+
align-items: center;
|
|
91
|
+
min-height: 24px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.scan-code-item-position > view {
|
|
95
|
+
width: 25%;
|
|
96
|
+
}
|
|
97
|
+
</style>
|