mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
104 lines
3.3 KiB
JavaScript
104 lines
3.3 KiB
JavaScript
Vue.component("url-patterns-box", {
|
|
props: ["value"],
|
|
data: function () {
|
|
let patterns = []
|
|
if (this.value != null) {
|
|
patterns = this.value
|
|
}
|
|
return {
|
|
patterns: patterns,
|
|
isAdding: false,
|
|
|
|
addingPattern: {"type": "wildcard", "pattern": ""},
|
|
editingIndex: -1
|
|
}
|
|
},
|
|
methods: {
|
|
add: function () {
|
|
this.isAdding = true
|
|
let that = this
|
|
setTimeout(function () {
|
|
that.$refs.patternInput.focus()
|
|
})
|
|
},
|
|
edit: function (index) {
|
|
this.isAdding = true
|
|
this.editingIndex = index
|
|
this.addingPattern = {
|
|
type: this.patterns[index].type,
|
|
pattern: this.patterns[index].pattern
|
|
}
|
|
},
|
|
confirm: function () {
|
|
let pattern = this.addingPattern.pattern.trim()
|
|
if (pattern.length == 0) {
|
|
let that = this
|
|
teaweb.warn("请输入URL", function () {
|
|
that.$refs.patternInput.focus()
|
|
})
|
|
return
|
|
}
|
|
if (this.editingIndex < 0) {
|
|
this.patterns.push({
|
|
type: this.addingPattern.type,
|
|
pattern: this.addingPattern.pattern
|
|
})
|
|
} else {
|
|
this.patterns[this.editingIndex].type = this.addingPattern.type
|
|
this.patterns[this.editingIndex].pattern = this.addingPattern.pattern
|
|
}
|
|
this.notifyChange()
|
|
this.cancel()
|
|
},
|
|
remove: function (index) {
|
|
this.patterns.$remove(index)
|
|
this.cancel()
|
|
this.notifyChange()
|
|
},
|
|
cancel: function () {
|
|
this.isAdding = false
|
|
this.addingPattern = {"type": "wildcard", "pattern": ""}
|
|
this.editingIndex = -1
|
|
},
|
|
patternTypeName: function (patternType) {
|
|
switch (patternType) {
|
|
case "wildcard":
|
|
return "通配符"
|
|
case "regexp":
|
|
return "正则"
|
|
}
|
|
return ""
|
|
},
|
|
notifyChange: function () {
|
|
this.$emit("input", this.patterns)
|
|
}
|
|
},
|
|
template: `<div>
|
|
<div v-show="patterns.length > 0">
|
|
<div v-for="(pattern, index) in patterns" class="ui label basic small" :class="{blue: index == editingIndex, disabled: isAdding && index != editingIndex}" style="margin-bottom: 0.8em">
|
|
<span class="grey" style="font-weight: normal">[{{patternTypeName(pattern.type)}}]</span> <span >{{pattern.pattern}}</span>
|
|
<a href="" title="修改" @click.prevent="edit(index)"><i class="icon pencil tiny"></i></a>
|
|
<a href="" title="删除" @click.prevent="remove(index)"><i class="icon remove small"></i></a>
|
|
</div>
|
|
</div>
|
|
<div v-show="isAdding" style="margin-top: 0.5em">
|
|
<div class="ui fields inline">
|
|
<div class="ui field">
|
|
<select class="ui dropdown auto-width" v-model="addingPattern.type">
|
|
<option value="wildcard">通配符</option>
|
|
<option value="regexp">正则表达式</option>
|
|
</select>
|
|
</div>
|
|
<div class="ui field">
|
|
<input type="text" :placeholder="(addingPattern.type == 'wildcard') ? '可以包含星号(*)通配符,不区分大小写' : '可以使用正则表达式,不区分大小写'" v-model="addingPattern.pattern" size="36" ref="patternInput" @keyup.enter="confirm()" @keypress.enter.prevent="1" spellcheck="false"/>
|
|
</div>
|
|
<div class="ui field">
|
|
<button class="ui button tiny" type="button" @click.prevent="confirm">确定</button> <a href="" title="取消" @click.prevent="cancel"><i class="icon remove small"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-if=!isAdding style="margin-top: 0.5em">
|
|
<button class="ui button tiny basic" type="button" @click.prevent="add">+</button>
|
|
</div>
|
|
</div>`
|
|
}) |