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.
 
 
 
 
 
 

79 lines
1.9 KiB

import Vue from 'vue';
import axios from 'axios';
axios.defaults.xsrfCookieName = 'csrftoken';
axios.defaults.xsrfHeaderName = 'X-CSRFToken';
const baseUrl = window.location.href.split('/').slice(0, 3).join('/');
const vm = new Vue({
el: '#projects_root',
delimiters: ['[[', ']]'],
data: {
items: [],
isActive: false,
isDelete: false,
project: null,
selected: 'All Project',
},
methods: {
deleteProject() {
axios.delete(`${baseUrl}/api/projects/${this.project.id}/`).then((response) => {
this.isDelete = false;
const index = this.items.indexOf(this.project);
this.items.splice(index, 1);
});
},
setProject(project) {
this.project = project;
this.isDelete = true;
},
matchType(projectType) {
if (projectType === 'DocumentClassification') {
return this.selected === 'Text Classification';
}
if (projectType === 'SequenceLabeling') {
return this.selected === 'Sequence Labeling';
}
if (projectType === 'Seq2seq') {
return this.selected === 'Seq2seq';
}
return false;
},
getDaysAgo(dateStr) {
const updatedAt = new Date(dateStr);
const currentTm = new Date();
// difference between days(ms)
const msDiff = currentTm.getTime() - updatedAt.getTime();
// convert daysDiff(ms) to daysDiff(day)
const daysDiff = Math.floor(msDiff / (1000 * 60 * 60 * 24));
return daysDiff;
},
},
computed: {
selectedProjects() {
const projects = [];
for (let item of this.items) {
if ((this.selected === 'All Project') || this.matchType(item.project_type)) {
projects.push(item);
}
}
return projects;
},
},
created() {
axios.get(`${baseUrl}/api/projects`).then((response) => {
this.items = response.data;
});
},
});