026ed949fb
Related to #5
176 lines
8.2 KiB
Vue
176 lines
8.2 KiB
Vue
<template>
|
|
<div class="fixed inset-0 bg-overlay flex justify-center items-center z-[1050]" @click.self="closeForm">
|
|
<div class="bg-background text-foreground p-6 rounded-xl border border-border/50 shadow-2xl w-[90%] max-w-lg">
|
|
<h2 class="m-0 mb-6 text-center text-xl font-semibold">{{ isEditing ? t('quickCommands.form.titleEdit', '编辑快捷指令') : t('quickCommands.form.titleAdd', '添加快捷指令') }}</h2>
|
|
<form @submit.prevent="handleSubmit" class="space-y-5">
|
|
<div>
|
|
<label for="qc-name" class="block mb-1.5 text-sm font-medium text-text-secondary">{{ t('quickCommands.form.name', '名称:') }}</label>
|
|
<input
|
|
id="qc-name"
|
|
type="text"
|
|
v-model="formData.name"
|
|
:placeholder="t('quickCommands.form.namePlaceholder', '可选,用于快速识别')"
|
|
class="w-full px-4 py-2 border border-border/50 rounded-lg bg-input text-foreground text-sm shadow-sm focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary transition duration-150 ease-in-out"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label for="qc-command" class="block mb-1.5 text-sm font-medium text-text-secondary">{{ t('quickCommands.form.command', '指令:') }} <span class="text-error">*</span></label>
|
|
<textarea
|
|
id="qc-command"
|
|
v-model="formData.command"
|
|
required
|
|
rows="4"
|
|
:placeholder="t('quickCommands.form.commandPlaceholder', '例如:ls -alh /home/user')"
|
|
class="w-full px-4 py-2 border border-border/50 rounded-lg bg-input text-foreground text-sm resize-y min-h-[100px] shadow-sm focus:outline-none focus:ring-2 focus:ring-primary/50 focus:border-primary transition duration-150 ease-in-out"
|
|
></textarea>
|
|
<small v-if="commandError" class="text-error text-xs mt-1 block">{{ commandError }}</small>
|
|
</div>
|
|
<!-- +++ Tag Input Section +++ -->
|
|
<div>
|
|
<label for="qc-tags" class="block mb-1.5 text-sm font-medium text-text-secondary">{{ t('quickCommands.form.tags', '标签:') }}</label>
|
|
<TagInput
|
|
id="qc-tags"
|
|
v-model="formData.tagIds"
|
|
:available-tags="quickCommandTagsStore.tags"
|
|
:placeholder="t('quickCommands.form.tagsPlaceholder', '添加或选择标签...')"
|
|
@create-tag="handleCreateTag"
|
|
:allow-create="true"
|
|
:allow-delete="true"
|
|
@delete-tag="handleDeleteTag"
|
|
class="w-full"
|
|
/>
|
|
<!-- Add styling/classes as needed for TagInput -->
|
|
</div>
|
|
<!-- +++ End Tag Input Section +++ -->
|
|
<div class="flex justify-end mt-8 pt-4 border-t border-border/50">
|
|
<!-- Secondary/Cancel Button -->
|
|
<button type="button" @click="closeForm" class="py-2 px-5 rounded-lg text-sm font-medium transition-colors duration-150 bg-background border border-border/50 text-text-secondary hover:bg-border hover:text-foreground mr-3">{{ t('common.cancel', '取消') }}</button>
|
|
<!-- Primary/Submit Button -->
|
|
<button type="submit" :disabled="isSubmitting || !!commandError" class="py-2 px-5 rounded-lg text-sm font-semibold transition-colors duration-150 bg-primary text-white border-none shadow-md hover:bg-primary-dark focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary disabled:bg-gray-400 disabled:opacity-70 disabled:cursor-not-allowed">
|
|
{{ isSubmitting ? t('common.saving', '保存中...') : (isEditing ? t('common.save', '保存') : t('quickCommands.form.add', '添加')) }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref, reactive, computed, watch, onMounted } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useQuickCommandsStore, type QuickCommandFE } from '../stores/quickCommands.store';
|
|
import { useQuickCommandTagsStore } from '../stores/quickCommandTags.store'; // +++ Import new tag store +++
|
|
import TagInput from './TagInput.vue'; // +++ Import TagInput component (assuming it exists) +++
|
|
|
|
const props = defineProps<{
|
|
commandToEdit?: QuickCommandFE | null; // 接收要编辑的指令对象 (should include tagIds)
|
|
}>();
|
|
|
|
const emit = defineEmits(['close']);
|
|
|
|
const { t } = useI18n();
|
|
const quickCommandsStore = useQuickCommandsStore();
|
|
const quickCommandTagsStore = useQuickCommandTagsStore(); // +++ Instantiate tag store +++
|
|
const isSubmitting = ref(false);
|
|
|
|
const isEditing = computed(() => !!props.commandToEdit);
|
|
|
|
const formData = reactive({
|
|
name: '',
|
|
command: '',
|
|
tagIds: [] as number[], // +++ Add tagIds +++
|
|
});
|
|
|
|
const commandError = ref<string | null>(null);
|
|
|
|
// 监听指令内容变化,进行校验
|
|
watch(() => formData.command, (newCommand) => {
|
|
if (!newCommand || newCommand.trim().length === 0) {
|
|
commandError.value = t('quickCommands.form.errorCommandRequired', '指令内容不能为空');
|
|
} else {
|
|
commandError.value = null;
|
|
}
|
|
});
|
|
|
|
// 初始化表单数据 (如果是编辑模式)
|
|
onMounted(() => {
|
|
if (isEditing.value && props.commandToEdit) {
|
|
formData.name = props.commandToEdit.name ?? '';
|
|
formData.command = props.commandToEdit.command;
|
|
// Initialize tagIds if editing
|
|
formData.tagIds = props.commandToEdit.tagIds ? [...props.commandToEdit.tagIds] : [];
|
|
}
|
|
// Fetch tags if not already loaded (optional, might be better in parent)
|
|
// if (quickCommandTagsStore.tags.length === 0) {
|
|
// quickCommandTagsStore.fetchTags();
|
|
// }
|
|
});
|
|
|
|
// --- Tag Creation Handling ---
|
|
// Assuming TagInput emits 'create-tag' with the tag name
|
|
const handleCreateTag = async (tagName: string) => {
|
|
console.log(`[QuickCmdForm] Received create-tag event for: ${tagName}`); // +++ 添加日志 +++
|
|
if (!tagName || tagName.trim().length === 0) return;
|
|
console.log(`[QuickCmdForm] Calling quickCommandTagsStore.addTag...`); // +++ 添加日志 +++
|
|
const newTag = await quickCommandTagsStore.addTag(tagName.trim());
|
|
if (newTag && !formData.tagIds.includes(newTag.id)) {
|
|
console.log(`[QuickCmdForm] New tag created (ID: ${newTag.id}), adding to selection.`); // +++ 添加日志 +++
|
|
// Add the new tag's ID to the selected list
|
|
formData.tagIds.push(newTag.id);
|
|
}
|
|
};
|
|
|
|
// --- Tag Deletion Handling ---
|
|
const handleDeleteTag = async (tagId: number) => {
|
|
console.log(`[QuickCmdForm] Received delete-tag event for ID: ${tagId}`); // +++ 添加日志 +++
|
|
const tagToDelete = quickCommandTagsStore.tags.find(t => t.id === tagId);
|
|
if (!tagToDelete) return;
|
|
|
|
if (confirm(t('tags.prompts.confirmDelete', { name: tagToDelete.name }))) {
|
|
console.log(`[QuickCmdForm] Calling quickCommandTagsStore.deleteTag...`); // +++ 添加日志 +++
|
|
const success = await quickCommandTagsStore.deleteTag(tagId);
|
|
if (success) {
|
|
// If deletion is successful, TagInput's availableTags will update,
|
|
// and the tag should disappear from the input.
|
|
// We also need to remove it from the local formData.tagIds if it was selected.
|
|
const index = formData.tagIds.indexOf(tagId);
|
|
if (index > -1) {
|
|
console.log(`[QuickCmdForm] Removing deleted tag ID ${tagId} from selection.`); // +++ 添加日志 +++
|
|
formData.tagIds.splice(index, 1);
|
|
}
|
|
} else {
|
|
// Optional: Show error notification if deletion fails
|
|
alert(t('tags.errorDelete', { error: quickCommandTagsStore.error || '未知错误' }));
|
|
}
|
|
}
|
|
};
|
|
|
|
const handleSubmit = async () => {
|
|
if (commandError.value) return; // 如果校验失败则不提交
|
|
|
|
isSubmitting.value = true;
|
|
let success = false;
|
|
|
|
// 处理名称,空字符串视为 null
|
|
const finalName = formData.name.trim().length > 0 ? formData.name.trim() : null;
|
|
|
|
if (isEditing.value && props.commandToEdit) {
|
|
// Pass tagIds to update action
|
|
success = await quickCommandsStore.updateQuickCommand(props.commandToEdit.id, finalName, formData.command.trim(), formData.tagIds);
|
|
} else {
|
|
// Pass tagIds to add action
|
|
success = await quickCommandsStore.addQuickCommand(finalName, formData.command.trim(), formData.tagIds);
|
|
}
|
|
|
|
isSubmitting.value = false;
|
|
if (success) {
|
|
closeForm();
|
|
}
|
|
};
|
|
|
|
const closeForm = () => {
|
|
emit('close');
|
|
};
|
|
</script>
|
|
|