You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
462 lines
11 KiB
462 lines
11 KiB
<template>
|
|
<div class="card" style="max-height:100%">
|
|
|
|
|
|
<v-wait for="myRunInstancetutor">
|
|
<template slot="waiting">
|
|
<div>
|
|
<img src="@/assets/loading.gif" />
|
|
Enter Lab_room...
|
|
</div>
|
|
</template>
|
|
</v-wait>
|
|
|
|
|
|
<div class="input-group input-group-sm sm-3">
|
|
|
|
<input type="text"
|
|
class="form-control"
|
|
aria-label="Small" aria-describedby="inputGroup-sizing-sm"
|
|
placeholder="Search"
|
|
v-model="searchFor"
|
|
@keyup.enter="setFilter"
|
|
>
|
|
|
|
<div class="input-group-append">
|
|
<button
|
|
class="btn btn-outline-primary"
|
|
round
|
|
type="button"
|
|
@click="setFilter">
|
|
Go</button>
|
|
</div>
|
|
|
|
<div class="input-group-append">
|
|
<button class="btn btn-outline-secondary"
|
|
round
|
|
type="button"
|
|
@click="resetFilter">
|
|
Reset</button>
|
|
</div>
|
|
</div>
|
|
<div class="white h-100 flex-fixed-width-item"
|
|
<vuetable
|
|
ref="vuetable"
|
|
:key="vuetablekey"
|
|
:api-url='apiurl'
|
|
:api-mode="true"
|
|
:http-options="httpOptions"
|
|
:fields="fields"
|
|
:item-actions="itemActions"
|
|
:sort-order="sortOrder"
|
|
:show-sort-icons="true"
|
|
:multi-sort="multiSort"
|
|
:per-page="perpage"
|
|
pagination-path="links.pagination"
|
|
:pagination-component="paginationComponent"
|
|
:append-params="moreParams"
|
|
wrapper-class="vuetable-wrapper"
|
|
loading-class="loading"
|
|
detail-row-id="id"
|
|
@vuetable:pagination-data="onPaginationData"
|
|
@vuetable:load-success="loadsuccess"
|
|
:css="css.table"
|
|
>
|
|
<div slot="action-slot" slot-scope="props">
|
|
<button
|
|
class="ti-thought btn btn-outline-secondary btn-sm"
|
|
round
|
|
@click="onAction('run-item', props.rowData, props.rowIndex)">
|
|
</button>
|
|
</div>
|
|
</vuetable>
|
|
<div class="vuetable-pagination ui basic segment grid">
|
|
<vuetable-pagination-info
|
|
ref="paginationInfo"
|
|
:css="css.paginationInfo"
|
|
>
|
|
</vuetable-pagination-info>
|
|
<vuetable-pagination
|
|
:css="css.pagination"
|
|
ref="pagination"
|
|
@vuetable-pagination:change-page="onChangePage"
|
|
>
|
|
</vuetable-pagination>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import store from '@/store/index'
|
|
import {mapState, mapGetters, mapActions,dispatch} from 'vuex'
|
|
import Vue from 'vue'
|
|
import {Vuetable, VuetablePaginationDropdown} from 'vuetable-2'
|
|
import VuetablePaginationInfo from 'vuetable-2/src/components/VuetablePaginationInfo'
|
|
import VuetablePagination from 'vuetable-2/src/components/VuetablePagination'
|
|
import CssConfig from 'vuetable-2/src/components/VuetableCssConfig.js'
|
|
import {ApiConfig} from "@/config/index";
|
|
export default {
|
|
components: {
|
|
Vuetable,
|
|
VuetablePagination,
|
|
VuetablePaginationInfo,
|
|
VuetablePaginationDropdown
|
|
},
|
|
props: {
|
|
},
|
|
data() {
|
|
return{
|
|
playbookInfo: {},
|
|
token: '',
|
|
playbook: {
|
|
'title':'',
|
|
'name':'',
|
|
'description':''
|
|
},
|
|
container:{
|
|
name:'',
|
|
view:0
|
|
},
|
|
pipeline:{},
|
|
selected: '',
|
|
options: [
|
|
{ text: 'Packages', value: 'packages' },
|
|
{ text: 'Images', value: 'images' },
|
|
{ text: 'Scripts', value: 'scripts' }
|
|
],
|
|
showModal: false,
|
|
visibility: [],
|
|
active:false,
|
|
vuetablekey:0,
|
|
fielddata:{},
|
|
fields: [
|
|
{
|
|
name: 'swarmlabname',
|
|
title: '<span class="orange"></span>Name',
|
|
sortField: 'swarmlabname',
|
|
visible:true,
|
|
dataClass: 'left aligned col-3',
|
|
width: '70%'
|
|
},
|
|
{
|
|
name: 'swarmlabname',
|
|
title: '<span class="orange"></span>Type',
|
|
sortField: 'swarmlabname',
|
|
visible:true,
|
|
dataClass: 'left aligned col-3',
|
|
width: '10%',
|
|
formatter (value) {
|
|
const result = /^ondemand_playground/.test(value);
|
|
if (result) {
|
|
var v = '<p class="text-warning">Playground</p>'
|
|
return v
|
|
}else{
|
|
var v = '<p class="text-info">Lab</p>'
|
|
return v
|
|
}
|
|
}
|
|
|
|
},
|
|
{
|
|
name: '_id',
|
|
title: '<span class="orange"></span>mongo',
|
|
visible:false
|
|
},
|
|
{
|
|
name: 'description',
|
|
sortField: 'gitrepoCloneUrl',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'left aligned w-25',
|
|
visible:false,
|
|
width: '15%'
|
|
},
|
|
{
|
|
name: 'gitrepoFullName',
|
|
sortField: 'gitrepoFullName',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'left aligned w-25',
|
|
visible:false,
|
|
width: '15%'
|
|
},
|
|
{
|
|
name: "action-slot",
|
|
title: 'Actions',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'center aligned',
|
|
width: '20%'
|
|
},
|
|
|
|
|
|
/*
|
|
{
|
|
name: 'description',
|
|
title: '<span class="orange"></span>Description',
|
|
sortField: 'description',
|
|
visible:true,
|
|
dataClass: 'left aligned col-3',
|
|
width: '55%',
|
|
// formatter (value) {
|
|
// const result = /^ondemand/.test(value);
|
|
// if (result) {
|
|
// var v = '<p class="text-info">'+value+'</p>'
|
|
// return v
|
|
// }else{
|
|
// return value
|
|
// }
|
|
// }
|
|
},
|
|
{
|
|
name: '_id',
|
|
title: '<span class="orange"></span>mongo',
|
|
visible:false
|
|
},
|
|
{
|
|
name: 'res25labstart',
|
|
title: '<span class="orange"></span>Begin',
|
|
sortField: 'bootstraptimelab',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'left aligned w-25',
|
|
visible:true,
|
|
width: '35%',
|
|
callback (value) {
|
|
},
|
|
formatter (value) {
|
|
// return value
|
|
var datevalue = value
|
|
//var datevalue = data.res25labend
|
|
var datenow = new Date();
|
|
var now_utc = Date.UTC(datenow.getUTCFullYear(), datenow.getUTCMonth(), datenow.getUTCDate(), datenow.getUTCHours(), datenow.getUTCMinutes(), datenow.getUTCSeconds());
|
|
var newdate = new Date(now_utc);
|
|
|
|
//if(Date.parse(value)-Date.parse(new Date().toLocaleString())<0){
|
|
if(Date.parse(datevalue)-Date.parse(newdate)<0){
|
|
var v = '<p class="text-warning">'+value+'</p>'
|
|
return v
|
|
}else{
|
|
var v = '<p class="text-success">'+value+'</p>'
|
|
return v
|
|
}
|
|
|
|
}
|
|
},
|
|
{
|
|
name: 'gitrepoCloneUrl',
|
|
sortField: 'gitrepoCloneUrl',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'left aligned w-25',
|
|
visible:false,
|
|
width: '45%'
|
|
},
|
|
{
|
|
name: 'swarmlabname',
|
|
sortField: 'swarmlabname',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'left aligned w-25',
|
|
visible:false,
|
|
width: '15%'
|
|
},
|
|
{
|
|
name: 'gitrepoFullName',
|
|
sortField: 'gitrepoFullName',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'left aligned w-25',
|
|
visible:false,
|
|
width: '15%'
|
|
},
|
|
{
|
|
name: 'actions',
|
|
title: 'Actions',
|
|
titleClass: 'center aligned',
|
|
dataClass: 'center aligned',
|
|
width: '45%'
|
|
},
|
|
*/
|
|
],
|
|
apiurl:ApiConfig.url_80+"/swarmlabservices",
|
|
css: CssConfig,
|
|
perpage: 5,
|
|
searchFor: '',
|
|
sortOrder: [{
|
|
field: 'pipelinename',
|
|
direction: 'asc'
|
|
}],
|
|
multiSort: true,
|
|
paginationComponent: 'vuetable-pagination',
|
|
itemActions: [
|
|
{ name: 'view-item', label: '', icon: 'glyphicon glyphicon-zoom-in', class: 'btn btn-info', extra: {'title': 'View', 'data-toggle':"tooltip", 'data-placement': "left"} },
|
|
{ name: 'edit-item', label: '', icon: 'glyphicon glyphicon-pencil', class: 'btn btn-warning', extra: {title: 'Edit', 'data-toggle':"tooltip", 'data-placement': "top"} },
|
|
{ name: 'delete-item', label: '', icon: 'glyphicon glyphicon-remove', class: 'btn btn-danger', extra: {title: 'Delete', 'data-toggle':"tooltip", 'data-placement': "right" } }
|
|
],
|
|
moreParams: {
|
|
'filter': '',
|
|
'type': 'scripts',
|
|
'tutor': 'yes'
|
|
},
|
|
|
|
}
|
|
},
|
|
mounted() {
|
|
},
|
|
created() {
|
|
var url_string = window.location.href
|
|
var url = new URL(url_string);
|
|
this.token = url.searchParams.get("token");
|
|
console.log("token "+ this.token);
|
|
|
|
},
|
|
beforeDestroy () {
|
|
},
|
|
computed: {
|
|
httpOptions() {
|
|
var token = this.token
|
|
var p="headers: {Authorization: token}}"; //table props -> :http-options="httpOptions"
|
|
return {headers: {Authorization: 'Bearer ' + token}} //table props -> :http-options="httpOptions"
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
onError (type,description) {
|
|
var winfo=description
|
|
var info='<h5>Bootstrap '+type+'</h5>'
|
|
this.$swal({
|
|
type: type,
|
|
html: info+winfo,
|
|
showCloseButton: true,
|
|
showLoaderOnConfirm: false,
|
|
allowOutsideClick: false,
|
|
cancelButtonText: 'No, cancel!',
|
|
showCancelButton: false,
|
|
showLoaderOnConfirm: false,
|
|
reverseButtons: true,
|
|
focusCancel: true,
|
|
confirmButtonText: 'Ok!'
|
|
})
|
|
},
|
|
|
|
|
|
setFilter () {
|
|
this.moreParams = {
|
|
'filter': this.searchFor,
|
|
'type': this.selected
|
|
}
|
|
Vue.nextTick( () => this.$refs.vuetable.refresh())
|
|
},
|
|
resetFilter () {
|
|
this.moreParams = {}
|
|
this.searchFor = ''
|
|
Vue.nextTick( () => this.$refs.vuetable.refresh())
|
|
},
|
|
onPaginationData (paginationData) {
|
|
this.$refs.pagination.setPaginationData(paginationData)
|
|
this.$refs.paginationInfo.setPaginationData(paginationData)
|
|
},
|
|
onChangePage (page) {
|
|
this.$refs.vuetable.changePage(page)
|
|
},
|
|
editRow(rowData) {
|
|
alert("You clicked edit on"+ JSON.stringify(rowData));
|
|
},
|
|
async onAction (action, data, index) {
|
|
if(action == 'view-item' ){
|
|
}else if(action == 'delete-item' ){
|
|
this.$swal({
|
|
type: 'info',
|
|
html: info+winfo,
|
|
showCloseButton: true,
|
|
showLoaderOnConfirm: false,
|
|
allowOutsideClick: false,
|
|
cancelButtonText: 'No, cancel!',
|
|
showCancelButton: true,
|
|
showLoaderOnConfirm: false,
|
|
reverseButtons: true,
|
|
focusCancel: true,
|
|
confirmButtonText: 'Yes, Delete it!'
|
|
})
|
|
}else if(action == 'run-item' ){
|
|
}
|
|
},
|
|
refreshVuetable() {
|
|
this.$nextTick(()=>{
|
|
this.vuetablekey += 1
|
|
})
|
|
},
|
|
playbookinfoShow(value) {
|
|
return this.visibility[value]=true
|
|
},
|
|
playbookinfo(value) {
|
|
return this.playbookInfo=value
|
|
},
|
|
rowClicked(row, event) {
|
|
return {
|
|
html: true,
|
|
title: () => { return 'Hello <b>Popover:</b> ' + (++this.counter) },
|
|
content: () => { return 'The date is:<br><em>' + new Date() + '</em>' }
|
|
}
|
|
},
|
|
loadsuccess(response) {
|
|
var data = response.data.data
|
|
this.fielddata=data
|
|
var n = data.length
|
|
n=n-1
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
actions: {
|
|
|
|
|
|
}
|
|
|
|
};
|
|
</script>
|
|
<style>
|
|
.flex-fixed-width-item {
|
|
flex: 0 0 100px;
|
|
}
|
|
.modalinfo {
|
|
z-index: 10000000 !important;
|
|
position:fixed;
|
|
}
|
|
/* a container with flex-direction column */
|
|
|
|
.vue-notifyjs.notifications{
|
|
.alert{
|
|
z-index: 100;
|
|
}
|
|
.list-move {
|
|
transition: transform 0.3s, opacity 0.4s;
|
|
}
|
|
.list-item {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
|
|
}
|
|
.list-enter-active {
|
|
transition: transform 0.2s ease-in, opacity 0.4s ease-in;
|
|
}
|
|
.list-leave-active {
|
|
transition: transform 1s ease-out, opacity 0.4s ease-out;
|
|
}
|
|
|
|
.list-enter {
|
|
opacity: 0;
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
.list-leave-to {
|
|
opacity: 0;
|
|
transform: scale(1.2, 0.7);
|
|
}
|
|
}
|
|
|
|
pre {
|
|
//background-color: rgb(255, 247, 229);
|
|
background-color: #eff0f1;
|
|
border: 1px solid blue;
|
|
//white-space: pre-line;
|
|
}
|
|
|
|
</style>
|
|
|