|
| 1 | +<script setup lang="ts"> |
| 2 | +import { computed, ref, watch } from 'vue' |
| 3 | +import { Pane, Splitpanes } from 'splitpanes' |
| 4 | +import { callInspectorAction, callInspectorNodeAction, getInspectorActions, getInspectorNodeActions, getInspectorState, getInspectorTree, onInspectorStateUpdated, onInspectorTreeUpdated } from '@vue/devtools-core' |
| 5 | +import { parse } from '@vue/devtools-kit' |
| 6 | +import type { InspectorNodeTag, InspectorState } from '@vue/devtools-kit' |
| 7 | +import { vTooltip } from '@vue/devtools-ui' |
| 8 | +import Navbar from '~/components/basic/Navbar.vue' |
| 9 | +import SelectiveList from '~/components/basic/SelectiveList.vue' |
| 10 | +import DevToolsHeader from '~/components/basic/DevToolsHeader.vue' |
| 11 | +import Empty from '~/components/basic/Empty.vue' |
| 12 | +import RootStateViewer from '~/components/state/RootStateViewer.vue' |
| 13 | +import { createExpandedContext } from '~/composables/toggle-expanded' |
| 14 | +
|
| 15 | +const { expanded: expandedStateNodes } = createExpandedContext('vee-validate-state') |
| 16 | +
|
| 17 | +interface NodeAction { |
| 18 | + icon: string |
| 19 | + tooltip: string |
| 20 | + actions?: (payload: unknown) => void |
| 21 | +} |
| 22 | +const inspectorId = 'vee-validate-inspector' |
| 23 | +const nodeActions = ref<NodeAction[]>([]) |
| 24 | +const actions = ref<NodeAction[]>([]) |
| 25 | +
|
| 26 | +const selected = ref('') |
| 27 | +const tree = ref<{ id: string, label: string, tags: InspectorNodeTag[] }[]>([]) |
| 28 | +const state = ref<Record<string, InspectorState[]>>({}) |
| 29 | +const emptyState = computed(() => !Object.keys(state.value).length) |
| 30 | +
|
| 31 | +function getNodeActions() { |
| 32 | + getInspectorNodeActions(inspectorId).then((actions) => { |
| 33 | + nodeActions.value = actions as NodeAction[] |
| 34 | + }) |
| 35 | +} |
| 36 | +
|
| 37 | +function getActions() { |
| 38 | + getInspectorActions(inspectorId).then((_actions) => { |
| 39 | + actions.value = _actions as NodeAction[] |
| 40 | + }) |
| 41 | +} |
| 42 | +
|
| 43 | +getNodeActions() |
| 44 | +
|
| 45 | +getActions() |
| 46 | +
|
| 47 | +function callNodeAction(index: number) { |
| 48 | + callInspectorNodeAction(inspectorId, index, selected.value) |
| 49 | +} |
| 50 | +
|
| 51 | +function callAction(index: number) { |
| 52 | + callInspectorAction(inspectorId, index, selected.value) |
| 53 | +} |
| 54 | +
|
| 55 | +function filterEmptyState(data: Record<string, InspectorState[]>) { |
| 56 | + for (const key in data) { |
| 57 | + if (!data[key]?.length) |
| 58 | + delete data[key] |
| 59 | + } |
| 60 | + return data |
| 61 | +} |
| 62 | +
|
| 63 | +function getVeeValidateState(nodeId: string) { |
| 64 | + getInspectorState({ inspectorId, nodeId }).then((data) => { |
| 65 | + state.value = filterEmptyState(parse(data!)) |
| 66 | + expandedStateNodes.value = Array.from({ length: Object.keys(state.value).length }, (_, i) => `${i}`) |
| 67 | + }) |
| 68 | +} |
| 69 | +
|
| 70 | +function clearVeeValidateState() { |
| 71 | + state.value = {} |
| 72 | +} |
| 73 | +
|
| 74 | +watch(selected, () => { |
| 75 | + clearVeeValidateState() |
| 76 | + getVeeValidateState(selected.value) |
| 77 | +}) |
| 78 | +
|
| 79 | +const getVeeValidateInspectorTree = () => { |
| 80 | + getInspectorTree({ inspectorId, filter: '' }).then((_data) => { |
| 81 | + const data = parse(_data!) |
| 82 | + tree.value = data |
| 83 | + if (!selected.value && data.length) { |
| 84 | + selected.value = data[0].id |
| 85 | + getVeeValidateState(data[0].id) |
| 86 | + } |
| 87 | + }) |
| 88 | +} |
| 89 | +getVeeValidateInspectorTree() |
| 90 | +
|
| 91 | +onInspectorTreeUpdated((data) => { |
| 92 | + if (!data?.data.length || data.inspectorId !== inspectorId) |
| 93 | + return |
| 94 | + tree.value = data.data as unknown as { id: string, label: string, tags: InspectorNodeTag[] }[] |
| 95 | + if ((!selected.value && data.data.length) || (selected.value && !data.data.find(node => node.id === selected.value))) { |
| 96 | + selected.value = data.data[0].id |
| 97 | + getVeeValidateState(data.data[0].id) |
| 98 | + } |
| 99 | +}) |
| 100 | +
|
| 101 | +onInspectorStateUpdated((data) => { |
| 102 | + if (!data || data.inspectorId !== inspectorId) |
| 103 | + return |
| 104 | +
|
| 105 | + const { inspectorId: _inspectorId, ...filtered } = data |
| 106 | +
|
| 107 | + state.value = filterEmptyState(filtered) |
| 108 | + expandedStateNodes.value = Array.from({ length: Object.keys(state.value).length }, (_, i) => `${i}`) |
| 109 | +}) |
| 110 | +</script> |
| 111 | + |
| 112 | +<template> |
| 113 | + <div class="h-full flex flex-col"> |
| 114 | + <DevToolsHeader doc-link="https://vee-validate.logaretm.com/v4/" github-repo-link="https://github.com/logaretm/vee-validate/"> |
| 115 | + <Navbar /> |
| 116 | + </DevToolsHeader> |
| 117 | + <template v-if="tree.length"> |
| 118 | + <Splitpanes class="flex-1 overflow-auto"> |
| 119 | + <Pane border="r base" size="40" h-full> |
| 120 | + <div h-full select-none overflow-scroll class="no-scrollbar"> |
| 121 | + <div v-if="actions.length" class="w-full px2 pt2"> |
| 122 | + <div class="w-full flex justify-end pb1" border="b dashed base"> |
| 123 | + <div class="flex items-center gap-2 px-1"> |
| 124 | + <div v-for="(action, index) in actions" :key="index" v-tooltip.bottom-end="{ content: action.tooltip }" class="flex items-center gap1" @click="callAction(index)"> |
| 125 | + <i :class="`i-ic-baseline-${action.icon.replace(/\_/g, '-')}`" cursor-pointer op70 text-base hover:op100 /> |
| 126 | + </div> |
| 127 | + </div> |
| 128 | + </div> |
| 129 | + </div> |
| 130 | + <SelectiveList v-model="selected" :data="tree" /> |
| 131 | + </div> |
| 132 | + </Pane> |
| 133 | + <Pane size="60"> |
| 134 | + <div class="h-full flex flex-col p2"> |
| 135 | + <div v-if="nodeActions.length" class="flex justify-end pb-1" border="b dashed base"> |
| 136 | + <div class="flex items-center gap-2 px-1"> |
| 137 | + <div v-for="(action, index) in nodeActions" :key="index" v-tooltip.bottom-end="{ content: action.tooltip }" class="flex items-center gap1" @click="callNodeAction(index)"> |
| 138 | + <i :class="`i-ic-baseline-${action.icon.replace(/\_/g, '-')}`" cursor-pointer op70 text-base hover:op100 /> |
| 139 | + </div> |
| 140 | + </div> |
| 141 | + </div> |
| 142 | + <RootStateViewer v-if="selected && !emptyState" :data="state" :node-id="selected" :inspector-id="inspectorId" expanded-state-id="vee-validate-state" class="no-scrollbar flex-1 select-none overflow-scroll" /> |
| 143 | + <Empty v-else> |
| 144 | + No Data |
| 145 | + </Empty> |
| 146 | + </div> |
| 147 | + </Pane> |
| 148 | + </Splitpanes> |
| 149 | + </template> |
| 150 | + <Empty v-else> |
| 151 | + No Data |
| 152 | + </Empty> |
| 153 | + </div> |
| 154 | +</template> |
0 commit comments