mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-29 18:00:51 +01:00
297 lines
9.6 KiB
Vue
297 lines
9.6 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<!--add popup-->
|
|
<el-dialog
|
|
:title="isEditMode ? 'Edit Spider' : 'Add Spider'"
|
|
:visible.sync="dialogVisible"
|
|
width="60%"
|
|
:before-close="onDialogClose">
|
|
<el-form label-width="150px"
|
|
:model="spiderForm"
|
|
:rules="spiderFormRules"
|
|
ref="spiderForm"
|
|
label-position="right">
|
|
<el-form-item label="Spider Name">
|
|
<el-input v-model="spiderForm.name" placeholder="Spider Name"></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="Source Folder">
|
|
<el-input v-model="spiderForm.src" placeholder="Source Folder"></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="Execute Command">
|
|
<el-input v-model="spiderForm.cmd" placeholder="Execute Command"></el-input>
|
|
</el-form-item>
|
|
<el-form-item label="Spider Type">
|
|
<el-select v-model="spiderForm.type" placeholder="Select Spider Type">
|
|
<el-option :value="1" label="Scrapy"></el-option>
|
|
<el-option :value="2" label="PySpider"></el-option>
|
|
<el-option :value="3" label="WebMagic"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="Language">
|
|
<el-select v-model="spiderForm.lang" placeholder="Select Language">
|
|
<el-option :value="1" label="Python"></el-option>
|
|
<el-option :value="2" label="Nodejs"></el-option>
|
|
<el-option :value="3" label="Java"></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form>
|
|
<span slot="footer" class="dialog-footer">
|
|
<el-button @click="onCancel">Cancel</el-button>
|
|
<el-button type="primary" @click="onSubmit">Submit</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
|
|
<!--filter-->
|
|
<div class="filter">
|
|
<el-input prefix-icon="el-icon-search"
|
|
placeholder="Search"
|
|
class="filter-search"
|
|
v-model="filter.keyword"
|
|
@change="onSearch">
|
|
</el-input>
|
|
<div class="right">
|
|
<el-button type="success"
|
|
icon="el-icon-refresh"
|
|
class="refresh"
|
|
@click="onRefresh">
|
|
Refresh
|
|
</el-button>
|
|
<el-button type="primary"
|
|
v-if="false"
|
|
icon="el-icon-plus"
|
|
class="add"
|
|
@click="onAdd">
|
|
Add Spider
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
|
|
<!--table list-->
|
|
<el-table :data="filteredTableData"
|
|
class="table"
|
|
height="500"
|
|
:header-cell-style="{background:'rgb(48, 65, 86)',color:'white'}"
|
|
border>
|
|
<template v-for="col in columns">
|
|
<el-table-column v-if="col.name === 'type'"
|
|
:key="col.name"
|
|
:label="col.label"
|
|
:sortable="col.sortable"
|
|
align="center"
|
|
:width="col.width">
|
|
<template slot-scope="scope">
|
|
<el-tag v-if="scope.row.type === 'scrapy'">Scrapy</el-tag>
|
|
<el-tag type="warning" v-else-if="scope.row.type === 'pyspider'">PySpider</el-tag>
|
|
<el-tag type="info" v-else-if="scope.row.type === 'webmagic'">WebMagic</el-tag>
|
|
<el-tag type="success" v-else>Other</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column v-else-if="col.name === 'lang'"
|
|
:key="col.name"
|
|
:label="col.label"
|
|
:sortable="col.sortable"
|
|
align="center"
|
|
:width="col.width">
|
|
<template slot-scope="scope">
|
|
<el-tag type="warning" v-if="scope.row.lang === 'python'">Python</el-tag>
|
|
<el-tag type="warning" v-else-if="scope.row.lang === 'javascript'">JavaScript</el-tag>
|
|
<el-tag type="info" v-else-if="scope.row.lang === 'java'">Java</el-tag>
|
|
<el-tag type="danger" v-else-if="scope.row.lang === 'go'">Go</el-tag>
|
|
<el-tag type="success" v-else>Other</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column v-else
|
|
:key="col.name"
|
|
:property="col.name"
|
|
:label="col.label"
|
|
:sortable="col.sortable"
|
|
align="center"
|
|
:width="col.width">
|
|
</el-table-column>
|
|
</template>
|
|
<el-table-column label="Action" align="center" width="250">
|
|
<template slot-scope="scope">
|
|
<el-tooltip content="View" placement="top">
|
|
<el-button type="info" icon="el-icon-search" size="mini" @click="onView(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip content="Edit" placement="top">
|
|
<el-button type="warning" icon="el-icon-edit" size="mini" @click="onView(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip content="Remove" placement="top">
|
|
<el-button type="danger" icon="el-icon-delete" size="mini" @click="onRemove(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip content="Deploy" placement="top">
|
|
<el-button type="primary" icon="fa fa-cloud" size="mini" @click="onDeploy(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip content="Run" placement="top">
|
|
<el-button type="success" icon="fa fa-bug" size="mini" @click="onCrawl(scope.row)"></el-button>
|
|
</el-tooltip>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
mapState
|
|
} from 'vuex'
|
|
|
|
export default {
|
|
name: 'SpiderList',
|
|
data () {
|
|
// let tableData = []
|
|
// for (let i = 0; i < 50; i++) {
|
|
// tableData.push({
|
|
// spider_name: `Spider ${Math.floor(Math.random() * 100)}`,
|
|
// spider_ip: '127.0.0.1:8888',
|
|
// 'spider_description': `The ID of the spider is ${Math.random().toString().replace('0.', '')}`,
|
|
// status: Math.floor(Math.random() * 100) % 2
|
|
// })
|
|
// }
|
|
return {
|
|
isEditMode: false,
|
|
dialogVisible: false,
|
|
filter: {
|
|
keyword: ''
|
|
},
|
|
// tableData,
|
|
columns: [
|
|
{ name: 'name', label: 'Name', width: 'auto' },
|
|
{ name: 'type', label: 'Spider Type', width: '160', sortable: true },
|
|
{ name: 'lang', label: 'Language', width: '160', sortable: true },
|
|
{ name: 'status', label: 'Status', width: '160' }
|
|
],
|
|
spiderFormRules: {
|
|
name: [{ required: true, message: 'Required Field', trigger: 'change' }]
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
...mapState('spider', [
|
|
'spiderList',
|
|
'spiderForm'
|
|
]),
|
|
filteredTableData () {
|
|
return this.spiderList.filter(d => {
|
|
if (!this.filter.keyword) return true
|
|
for (let i = 0; i < this.columns.length; i++) {
|
|
const colName = this.columns[i].name
|
|
if (d[colName] && d[colName].toLowerCase().indexOf(this.filter.keyword.toLowerCase()) > -1) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
})
|
|
}
|
|
},
|
|
methods: {
|
|
onSearch (value) {
|
|
console.log(value)
|
|
},
|
|
onAdd () {
|
|
this.$store.commit('spider/SET_SPIDER_FORM', {})
|
|
this.isEditMode = false
|
|
this.dialogVisible = true
|
|
},
|
|
onRefresh () {
|
|
// this.$store.dispatch('spider/getSpiderList')
|
|
},
|
|
onSubmit () {
|
|
const vm = this
|
|
const formName = 'spiderForm'
|
|
this.$refs[formName].validate((valid) => {
|
|
if (valid) {
|
|
if (this.isEditMode) {
|
|
vm.$store.dispatch('spider/editSpider')
|
|
} else {
|
|
vm.$store.dispatch('spider/addSpider')
|
|
}
|
|
vm.dialogVisible = false
|
|
} else {
|
|
return false
|
|
}
|
|
})
|
|
},
|
|
onCancel () {
|
|
this.$store.commit('spider/SET_SPIDER_FORM', {})
|
|
this.dialogVisible = false
|
|
},
|
|
onDialogClose () {
|
|
this.$store.commit('spider/SET_SPIDER_FORM', {})
|
|
this.dialogVisible = false
|
|
},
|
|
onEdit (row) {
|
|
console.log(row)
|
|
this.isEditMode = true
|
|
this.$store.commit('spider/SET_SPIDER_FORM', row)
|
|
this.dialogVisible = true
|
|
},
|
|
onRemove (row) {
|
|
this.$confirm(this.$t('Are you sure to delete this spider?)', this.$t('Notification'), {
|
|
confirmButtonText: this.$t('Confirm'),
|
|
cancelButtonText: this.$t('Cancel'),
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.$store.dispatch('spider/deleteSpider', row._id)
|
|
.then(() => {
|
|
this.$message({
|
|
type: 'success',
|
|
message: 'Deleted successfully'
|
|
})
|
|
})
|
|
}))
|
|
},
|
|
onDeploy (row) {
|
|
this.$store.dispatch('spider/getSpiderData', row._id)
|
|
this.$store.commit('dialogView/SET_DIALOG_VISIBLE', true)
|
|
this.$store.commit('dialogView/SET_DIALOG_TYPE', 'spiderDeploy')
|
|
},
|
|
onCrawl (row) {
|
|
this.$store.dispatch('spider/getSpiderData', row._id)
|
|
this.$store.commit('dialogView/SET_DIALOG_VISIBLE', true)
|
|
this.$store.commit('dialogView/SET_DIALOG_TYPE', 'spiderRun')
|
|
},
|
|
onView (row) {
|
|
this.$router.push(`/spiders/${row._id}`)
|
|
}
|
|
},
|
|
created () {
|
|
// this.$store.dispatch('spider/getSpiderList')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.el-dialog {
|
|
.el-select {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.filter {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
|
|
.filter-search {
|
|
width: 240px;
|
|
}
|
|
|
|
.add {
|
|
}
|
|
}
|
|
|
|
.table {
|
|
margin-top: 20px;
|
|
border-radius: 5px;
|
|
|
|
.el-button {
|
|
padding: 7px;
|
|
}
|
|
}
|
|
|
|
.delete-confirm {
|
|
background-color: red;
|
|
}
|
|
</style>
|