mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2025-10-27 14:41:07 +08:00
127 lines
2.7 KiB
Vue
127 lines
2.7 KiB
Vue
<template>
|
|
<v-card class="ml-1 mr-1 mb-1 mt-1">
|
|
<v-card-title>
|
|
<v-icon left color="primary">filter_list</v-icon>
|
|
正则重命名
|
|
<v-spacer></v-spacer>
|
|
<v-btn icon @click="$emit('up', idx)">
|
|
<v-icon>keyboard_arrow_up</v-icon>
|
|
</v-btn>
|
|
<v-btn icon @click="$emit('down', idx)">
|
|
<v-icon>keyboard_arrow_down</v-icon>
|
|
</v-btn>
|
|
<v-btn icon @click="$emit('deleteProcess', idx)">
|
|
<v-icon color="error">mdi-delete</v-icon>
|
|
</v-btn>
|
|
<v-dialog>
|
|
<template #activator="{on}">
|
|
<v-btn icon v-on="on">
|
|
<v-icon>help</v-icon>
|
|
</v-btn>
|
|
</template>
|
|
<v-card>
|
|
<v-card-title class="headline">
|
|
正则重命名
|
|
</v-card-title>
|
|
<v-card-text>
|
|
使用替换节点名中的字段。
|
|
</v-card-text>
|
|
</v-card>
|
|
</v-dialog>
|
|
</v-card-title>
|
|
<v-card-text>
|
|
正则表达式
|
|
<v-chip-group>
|
|
<v-chip
|
|
close
|
|
close-icon="mdi-delete"
|
|
v-for="(chip, idx) in chips"
|
|
:key="idx"
|
|
@click:close="remove(idx)"
|
|
>
|
|
{{ chip }}
|
|
</v-chip>
|
|
</v-chip-group>
|
|
<v-row>
|
|
<v-col>
|
|
<v-text-field
|
|
placeholder="关键词"
|
|
solo
|
|
v-model="form.regex"
|
|
/>
|
|
</v-col>
|
|
<v-col>
|
|
<v-text-field
|
|
placeholder="替换为"
|
|
solo
|
|
v-model="form.replace"
|
|
append-icon="mdi-send"
|
|
@click:append="add"
|
|
@keyup.enter="add"
|
|
/>
|
|
</v-col>
|
|
</v-row>
|
|
|
|
</v-card-text>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['args'],
|
|
data: function () {
|
|
return {
|
|
idx: this.$vnode.key,
|
|
mode: "IN",
|
|
form: {
|
|
regex: "",
|
|
replace: ""
|
|
},
|
|
regexps: []
|
|
}
|
|
},
|
|
computed: {
|
|
chips() {
|
|
return this.regexps.map(k => {
|
|
const {expr, now} = k;
|
|
return `${expr} ⇒ ${now}`;
|
|
});
|
|
}
|
|
},
|
|
methods: {
|
|
add() {
|
|
if (this.form.regex && this.form.replace) {
|
|
this.regexps.push({
|
|
expr: this.form.regex,
|
|
now: this.form.replace
|
|
});
|
|
this.form.regex = "";
|
|
this.form.replace = "";
|
|
} else {
|
|
this.$store.commit("SET_ERROR_MESSAGE", "关键词不能为空!");
|
|
}
|
|
},
|
|
remove(idx) {
|
|
this.regexps.splice(idx, 1);
|
|
},
|
|
save() {
|
|
this.$emit("dataChanged", {
|
|
idx: this.idx,
|
|
args: this.regexps
|
|
});
|
|
}
|
|
},
|
|
created() {
|
|
this.regexps = this.args || [];
|
|
},
|
|
watch: {
|
|
regexps() {
|
|
this.save();
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |