mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
fix(form): text组件配置了tooltip无效
This commit is contained in:
parent
1fa27e1239
commit
3a7bfef5cf
@ -43,6 +43,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@element-plus/icons-vue": "^2.3.1",
|
"@element-plus/icons-vue": "^2.3.1",
|
||||||
|
"@popperjs/core": "^2.11.8",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "^4.17.21",
|
||||||
"sortablejs": "^1.15.2"
|
"sortablejs": "^1.15.2"
|
||||||
},
|
},
|
||||||
@ -61,8 +62,8 @@
|
|||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/design": "workspace:*",
|
"@tmagic/design": "workspace:*",
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:*",
|
||||||
"vue": "^3.4.35",
|
"typescript": "*",
|
||||||
"typescript": "*"
|
"vue": "^3.4.35"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"typescript": {
|
"typescript": {
|
||||||
|
@ -1,43 +1,48 @@
|
|||||||
<template>
|
<template>
|
||||||
<TMagicPopover :visible="popoverVisible" width="220px">
|
<div style="width: 100%">
|
||||||
<template #reference>
|
<TMagicInput
|
||||||
<TMagicInput
|
v-model="model[name]"
|
||||||
v-model="model[name]"
|
ref="input"
|
||||||
clearable
|
clearable
|
||||||
:size="size"
|
:size="size"
|
||||||
:placeholder="config.placeholder"
|
:placeholder="config.placeholder"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
@change="changeHandler"
|
@change="changeHandler"
|
||||||
@input="inputHandler"
|
@input="inputHandler"
|
||||||
@keyup="keyUpHandler($event)"
|
@keyup="keyUpHandler($event)"
|
||||||
>
|
>
|
||||||
<template #append v-if="appendConfig">
|
<template #append v-if="appendConfig">
|
||||||
<TMagicButton
|
<TMagicButton
|
||||||
v-if="appendConfig.type === 'button'"
|
v-if="appendConfig.type === 'button'"
|
||||||
style="color: #409eff"
|
style="color: #409eff"
|
||||||
:size="size"
|
:size="size"
|
||||||
@click.prevent="buttonClickHandler"
|
@click.prevent="buttonClickHandler"
|
||||||
>
|
>
|
||||||
{{ appendConfig.text }}
|
{{ appendConfig.text }}
|
||||||
</TMagicButton>
|
</TMagicButton>
|
||||||
</template>
|
</template>
|
||||||
</TMagicInput>
|
</TMagicInput>
|
||||||
</template>
|
|
||||||
|
|
||||||
<div class="m-form-item__content">
|
<Teleport to="body">
|
||||||
<div class="m-form-validate__warning">输入内容前后有空格,是否移除空格?</div>
|
<div v-if="popoverVisible" class="tmagic-form-text-popper m-form-item__content" ref="popoverEl">
|
||||||
<div style="display: flex; justify-content: flex-end">
|
<div class="m-form-validate__warning">输入内容前后有空格,是否移除空格?</div>
|
||||||
<TMagicButton link size="small" @click="popoverVisible = false">保持原样</TMagicButton>
|
<div style="display: flex; justify-content: flex-end">
|
||||||
<TMagicButton type="primary" size="small" @click="confirmTrimHandler">移除空格</TMagicButton>
|
<TMagicButton link size="small" @click="popoverVisible = false">保持原样</TMagicButton>
|
||||||
|
<TMagicButton type="primary" size="small" @click="confirmTrimHandler">移除空格</TMagicButton>
|
||||||
|
</div>
|
||||||
|
<span class="tmagic-form-text-popper-arrow" data-popper-arrow></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</Teleport>
|
||||||
</TMagicPopover>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { computed, inject, ref } from 'vue';
|
import { computed, inject, ref, shallowRef, watch } from 'vue';
|
||||||
|
import type { Instance } from '@popperjs/core';
|
||||||
|
import { createPopper } from '@popperjs/core';
|
||||||
|
import { debounce } from 'lodash-es';
|
||||||
|
|
||||||
import { TMagicButton, TMagicInput, TMagicPopover } from '@tmagic/design';
|
import { TMagicButton, TMagicInput } from '@tmagic/design';
|
||||||
import { isNumber } from '@tmagic/utils';
|
import { isNumber } from '@tmagic/utils';
|
||||||
|
|
||||||
import type { FieldProps, FormState, TextConfig } from '../schema';
|
import type { FieldProps, FormState, TextConfig } from '../schema';
|
||||||
@ -85,11 +90,11 @@ const confirmTrimHandler = () => {
|
|||||||
popoverVisible.value = false;
|
popoverVisible.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const checkWhiteSpace = (value: unknown) => {
|
const checkWhiteSpace = debounce((value: unknown) => {
|
||||||
if (typeof value === 'string' && !props.config.trim) {
|
if (typeof value === 'string' && !props.config.trim) {
|
||||||
popoverVisible.value = value.trim() !== value;
|
popoverVisible.value = value.trim() !== value;
|
||||||
}
|
}
|
||||||
};
|
}, 300);
|
||||||
|
|
||||||
const changeHandler = (value: string) => {
|
const changeHandler = (value: string) => {
|
||||||
emit('change', value);
|
emit('change', value);
|
||||||
@ -167,4 +172,34 @@ const keyUpHandler = ($event: KeyboardEvent) => {
|
|||||||
props.model[props.name] = `${num}${unit || ''}`;
|
props.model[props.name] = `${num}${unit || ''}`;
|
||||||
emit('change', props.model[props.name]);
|
emit('change', props.model[props.name]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const popoverEl = ref<HTMLDivElement>();
|
||||||
|
const input = ref<InstanceType<typeof TMagicInput>>();
|
||||||
|
const instanceRef = shallowRef<Instance | undefined>();
|
||||||
|
|
||||||
|
watch(popoverEl, (el) => {
|
||||||
|
destroyPopover();
|
||||||
|
|
||||||
|
if (!input.value?.$el || !el) return;
|
||||||
|
|
||||||
|
instanceRef.value = createPopper(input.value.$el, el, {
|
||||||
|
placement: props.config.tooltip ? 'top' : 'bottom',
|
||||||
|
strategy: 'absolute',
|
||||||
|
modifiers: [
|
||||||
|
{
|
||||||
|
name: 'offset',
|
||||||
|
options: {
|
||||||
|
offset: [0, 10],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
const destroyPopover = () => {
|
||||||
|
if (!instanceRef.value) return;
|
||||||
|
|
||||||
|
instanceRef.value.destroy();
|
||||||
|
instanceRef.value = undefined;
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
@ -4,3 +4,59 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper {
|
||||||
|
min-width: 150px;
|
||||||
|
line-height: 1.4;
|
||||||
|
background-color: #fff;
|
||||||
|
box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
|
||||||
|
color: #606266;
|
||||||
|
border: 1px solid #e4e7ed;
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
box-sizing: border-box;
|
||||||
|
padding: 10px;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper[data-popper-placement^="top"]
|
||||||
|
> .tmagic-form-text-popper-arrow {
|
||||||
|
bottom: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper[data-popper-placement^="bottom"]
|
||||||
|
> .tmagic-form-text-popper-arrow {
|
||||||
|
top: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper[data-popper-placement^="left"]
|
||||||
|
> .tmagic-form-text-popper-arrow {
|
||||||
|
right: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper[data-popper-placement^="right"]
|
||||||
|
> .tmagic-form-text-popper-arrow {
|
||||||
|
left: -4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper-arrow,
|
||||||
|
.tmagic-form-text-popper-arrow::before {
|
||||||
|
position: absolute;
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
background: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper-arrow {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tmagic-form-text-popper-arrow::before {
|
||||||
|
visibility: visible;
|
||||||
|
content: "";
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
4
pnpm-lock.yaml
generated
4
pnpm-lock.yaml
generated
@ -426,6 +426,9 @@ importers:
|
|||||||
'@element-plus/icons-vue':
|
'@element-plus/icons-vue':
|
||||||
specifier: ^2.3.1
|
specifier: ^2.3.1
|
||||||
version: 2.3.1(vue@3.4.35(typescript@5.5.4))
|
version: 2.3.1(vue@3.4.35(typescript@5.5.4))
|
||||||
|
'@popperjs/core':
|
||||||
|
specifier: ^2.11.8
|
||||||
|
version: 2.11.8
|
||||||
'@tmagic/design':
|
'@tmagic/design':
|
||||||
specifier: workspace:*
|
specifier: workspace:*
|
||||||
version: link:../design
|
version: link:../design
|
||||||
@ -3932,6 +3935,7 @@ packages:
|
|||||||
eslint@8.57.0:
|
eslint@8.57.0:
|
||||||
resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
|
resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
|
||||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||||
|
deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
espree@9.6.1:
|
espree@9.6.1:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user