mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
feat(editor): 数据源选择器编辑按钮添加tooltip
This commit is contained in:
parent
ea556d69f6
commit
3fa21fd3eb
@ -57,13 +57,11 @@
|
|||||||
@change="onChangeHandler"
|
@change="onChangeHandler"
|
||||||
></TMagicCascader>
|
></TMagicCascader>
|
||||||
|
|
||||||
<TMagicButton
|
<TMagicTooltip v-if="selectDataSourceId && hasDataSourceSidePanel" :content="notEditable ? '查看' : '编辑'">
|
||||||
v-if="selectDataSourceId && hasDataSourceSidePanel"
|
<TMagicButton class="m-fields-select-action-button" :size="size" @click="editHandler(selectDataSourceId)"
|
||||||
class="m-fields-select-action-button"
|
><MIcon :icon="!notEditable ? Edit : View"></MIcon
|
||||||
:size="size"
|
></TMagicButton>
|
||||||
@click="editHandler(selectDataSourceId)"
|
</TMagicTooltip>
|
||||||
><MIcon :icon="!notEditable ? Edit : View"></MIcon
|
|
||||||
></TMagicButton>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -71,7 +69,13 @@
|
|||||||
import { computed, inject, ref, watch } from 'vue';
|
import { computed, inject, ref, watch } from 'vue';
|
||||||
import { Edit, View } from '@element-plus/icons-vue';
|
import { Edit, View } from '@element-plus/icons-vue';
|
||||||
|
|
||||||
import { getConfig as getDesignConfig, TMagicButton, TMagicCascader, TMagicSelect } from '@tmagic/design';
|
import {
|
||||||
|
getConfig as getDesignConfig,
|
||||||
|
TMagicButton,
|
||||||
|
TMagicCascader,
|
||||||
|
TMagicSelect,
|
||||||
|
TMagicTooltip,
|
||||||
|
} from '@tmagic/design';
|
||||||
import { type FilterFunction, filterFunction, type FormState, type SelectOption } from '@tmagic/form';
|
import { type FilterFunction, filterFunction, type FormState, type SelectOption } from '@tmagic/form';
|
||||||
import { DataSourceFieldType } from '@tmagic/schema';
|
import { DataSourceFieldType } from '@tmagic/schema';
|
||||||
import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX } from '@tmagic/utils';
|
import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX } from '@tmagic/utils';
|
||||||
|
@ -26,14 +26,15 @@
|
|||||||
@change="onChangeHandler"
|
@change="onChangeHandler"
|
||||||
></component>
|
></component>
|
||||||
|
|
||||||
<TMagicButton
|
<TMagicTooltip v-if="config.fieldConfig" :disabled="showDataSourceFieldSelect" content="选择数据源">
|
||||||
v-if="config.fieldConfig"
|
<TMagicButton
|
||||||
style="margin-left: 5px"
|
style="margin-left: 5px"
|
||||||
:type="showDataSourceFieldSelect ? 'primary' : 'default'"
|
:type="showDataSourceFieldSelect ? 'primary' : 'default'"
|
||||||
:size="size"
|
:size="size"
|
||||||
@click="showDataSourceFieldSelect = !showDataSourceFieldSelect"
|
@click="showDataSourceFieldSelect = !showDataSourceFieldSelect"
|
||||||
><MIcon :icon="Coin"></MIcon
|
><MIcon :icon="Coin"></MIcon
|
||||||
></TMagicButton>
|
></TMagicButton>
|
||||||
|
</TMagicTooltip>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -41,7 +42,7 @@
|
|||||||
import { computed, inject, ref, resolveComponent, watch } from 'vue';
|
import { computed, inject, ref, resolveComponent, watch } from 'vue';
|
||||||
import { Coin } from '@element-plus/icons-vue';
|
import { Coin } from '@element-plus/icons-vue';
|
||||||
|
|
||||||
import { TMagicButton, tMagicMessage } from '@tmagic/design';
|
import { TMagicButton, tMagicMessage, TMagicTooltip } from '@tmagic/design';
|
||||||
import type { FieldProps, FormState } from '@tmagic/form';
|
import type { FieldProps, FormState } from '@tmagic/form';
|
||||||
import { DataSchema } from '@tmagic/schema';
|
import { DataSchema } from '@tmagic/schema';
|
||||||
import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX } from '@tmagic/utils';
|
import { DATA_SOURCE_FIELDS_SELECT_VALUE_PREFIX } from '@tmagic/utils';
|
||||||
|
@ -9,14 +9,14 @@
|
|||||||
@change="onChangeHandler"
|
@change="onChangeHandler"
|
||||||
></MContainer>
|
></MContainer>
|
||||||
|
|
||||||
<TMagicButton
|
<TMagicTooltip
|
||||||
v-if="model[name] && isCustomMethod && hasDataSourceSidePanel"
|
v-if="model[name] && isCustomMethod && hasDataSourceSidePanel"
|
||||||
class="m-fields-select-action-button"
|
:content="notEditable ? '查看' : '编辑'"
|
||||||
:size="size"
|
|
||||||
@click="editCodeHandler"
|
|
||||||
>
|
>
|
||||||
<MIcon :icon="!notEditable ? Edit : View"></MIcon>
|
<TMagicButton class="m-fields-select-action-button" :size="size" @click="editCodeHandler">
|
||||||
</TMagicButton>
|
<MIcon :icon="!notEditable ? Edit : View"></MIcon>
|
||||||
|
</TMagicButton>
|
||||||
|
</TMagicTooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<CodeParams
|
<CodeParams
|
||||||
@ -35,7 +35,7 @@
|
|||||||
import { computed, inject, ref } from 'vue';
|
import { computed, inject, ref } from 'vue';
|
||||||
import { Edit, View } from '@element-plus/icons-vue';
|
import { Edit, View } from '@element-plus/icons-vue';
|
||||||
|
|
||||||
import { TMagicButton } from '@tmagic/design';
|
import { TMagicButton, TMagicTooltip } from '@tmagic/design';
|
||||||
import { createValues, type FieldProps, filterFunction, type FormState, MContainer } from '@tmagic/form';
|
import { createValues, type FieldProps, filterFunction, type FormState, MContainer } from '@tmagic/form';
|
||||||
import type { Id } from '@tmagic/schema';
|
import type { Id } from '@tmagic/schema';
|
||||||
|
|
||||||
|
@ -11,13 +11,11 @@
|
|||||||
@change="changeHandler"
|
@change="changeHandler"
|
||||||
></MSelect>
|
></MSelect>
|
||||||
|
|
||||||
<TMagicButton
|
<TMagicTooltip v-if="model[name] && hasDataSourceSidePanel" :content="notEditable ? '查看' : '编辑'">
|
||||||
v-if="model[name] && hasDataSourceSidePanel"
|
<TMagicButton class="m-fields-select-action-button" :size="size" @click="editHandler"
|
||||||
class="m-fields-select-action-button"
|
><MIcon :icon="!notEditable ? Edit : View"></MIcon
|
||||||
:size="size"
|
></TMagicButton>
|
||||||
@click="editHandler"
|
</TMagicTooltip>
|
||||||
><MIcon :icon="!notEditable ? Edit : View"></MIcon
|
|
||||||
></TMagicButton>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -25,7 +23,7 @@
|
|||||||
import { computed, inject } from 'vue';
|
import { computed, inject } from 'vue';
|
||||||
import { Edit, View } from '@element-plus/icons-vue';
|
import { Edit, View } from '@element-plus/icons-vue';
|
||||||
|
|
||||||
import { TMagicButton } from '@tmagic/design';
|
import { TMagicButton, TMagicTooltip } from '@tmagic/design';
|
||||||
import { type FieldProps, filterFunction, type FormState, MSelect, type SelectConfig } from '@tmagic/form';
|
import { type FieldProps, filterFunction, type FormState, MSelect, type SelectConfig } from '@tmagic/form';
|
||||||
|
|
||||||
import MIcon from '@editor/components/Icon.vue';
|
import MIcon from '@editor/components/Icon.vue';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user