mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
209 lines
7.8 KiB
Vue
209 lines
7.8 KiB
Vue
<template>
|
|
<div class="project-list">
|
|
<PageTitle :title="$L('项目')"/>
|
|
<div class="list-search">
|
|
<div class="search-wrapper">
|
|
<Input v-model="projectKeyValue" :placeholder="$L(loadProjects ? '更新中...' : '搜索项目')" clearable>
|
|
<div class="search-pre" slot="prefix">
|
|
<Loading v-if="loadProjects"/>
|
|
<Icon v-else type="ios-search" />
|
|
</div>
|
|
</Input>
|
|
</div>
|
|
</div>
|
|
<ul @scroll="operateVisible = false">
|
|
<template v-if="projectLists.length === 0">
|
|
<li v-if="projectKeyLoading > 0" class="loading"><Loading/></li>
|
|
<li v-else class="nothing">
|
|
{{$L(projectKeyValue ? `没有任何与"${projectKeyValue}"相关的项目` : `没有任何项目`)}}
|
|
</li>
|
|
</template>
|
|
<li
|
|
v-for="(item, key) in projectLists"
|
|
:key="key"
|
|
:data-id="item.id"
|
|
:class="{operate: item.id == operateItem.id && operateVisible}"
|
|
v-longpress="handleLongpress"
|
|
@click="toggleRoute('project', {projectId: item.id})">
|
|
<div class="project-item">
|
|
<div class="item-left">
|
|
<div class="project-h1">
|
|
<div class="project-name">{{item.name}}</div>
|
|
<div v-if="item.top_at" class="icon-top"></div>
|
|
<div v-if="item.task_my_num - item.task_my_complete > 0" class="num">{{item.task_my_num - item.task_my_complete}}</div>
|
|
</div>
|
|
<div class="project-h2">
|
|
{{item.desc}}
|
|
</div>
|
|
</div>
|
|
<div v-if="item.task_num > 0" class="item-right" @click.stop="modalPercent(item)">
|
|
<iCircle
|
|
type="circle"
|
|
trail-color="rgba(132, 197, 106, 0.2)"
|
|
:trail-width="7"
|
|
:stroke-color="item.task_percent === 100 ? 'rgba(132, 197, 106, 0)' : '#84C56A'"
|
|
:stroke-width="7"
|
|
:percent="item.task_percent"
|
|
:size="44">
|
|
<Icon v-if="item.task_percent === 100" type="ios-checkmark"></Icon>
|
|
<span v-else class="percent-text">{{item.task_percent}}%</span>
|
|
</iCircle>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<div class="operate-position" :style="operateStyles" v-show="operateVisible">
|
|
<Dropdown
|
|
trigger="custom"
|
|
:placement="windowLandscape ? 'bottom' : 'top'"
|
|
:visible="operateVisible"
|
|
@on-clickoutside="operateVisible = false"
|
|
transfer>
|
|
<div :style="{userSelect:operateVisible ? 'none' : 'auto', height: operateStyles.height}"></div>
|
|
<DropdownMenu slot="list">
|
|
<DropdownItem @click.native="handleTopClick">
|
|
{{ $L(operateItem.top_at ? '取消置顶' : '置顶该项目') }}
|
|
</DropdownItem>
|
|
</DropdownMenu>
|
|
</Dropdown>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {mapState} from "vuex";
|
|
import longpress from "../../../directives/longpress";
|
|
|
|
export default {
|
|
name: "ProjectList",
|
|
directives: {longpress},
|
|
data() {
|
|
return {
|
|
projectKeyValue: '',
|
|
projectKeyLoading: 0,
|
|
|
|
operateStyles: {},
|
|
operateVisible: false,
|
|
operateItem: {},
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapState(['cacheProjects', 'loadProjects']),
|
|
|
|
projectLists() {
|
|
const {projectKeyValue, cacheProjects} = this;
|
|
const data = $A.cloneJSON(cacheProjects).sort((a, b) => {
|
|
if (a.top_at || b.top_at) {
|
|
return $A.Date(b.top_at) - $A.Date(a.top_at);
|
|
}
|
|
return b.id - a.id;
|
|
});
|
|
if (projectKeyValue) {
|
|
return data.filter(item => $A.strExists(`${item.name} ${item.desc}`, projectKeyValue));
|
|
}
|
|
/*return data.map(item => {
|
|
if (!$A.isArray(item.user_simple)) {
|
|
const arr = (item.user_simple || "").split("|");
|
|
if (arr.length > 1) {
|
|
item.user_count = arr[0];
|
|
item.user_simple = arr[1].split(",");
|
|
} else {
|
|
item.user_count = 0;
|
|
item.user_simple = [];
|
|
}
|
|
}
|
|
return item;
|
|
});*/
|
|
return data;
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
projectKeyValue(val) {
|
|
if (val == '') {
|
|
return;
|
|
}
|
|
this.projectKeyLoading++;
|
|
setTimeout(() => {
|
|
if (this.projectKeyValue == val) {
|
|
this.searchProject();
|
|
}
|
|
this.projectKeyLoading--;
|
|
}, 600);
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
searchProject() {
|
|
this.projectKeyLoading++;
|
|
this.$store.dispatch("getProjects", {
|
|
keys: {
|
|
name: this.projectKeyValue
|
|
},
|
|
hideload: true,
|
|
}).finally(_ => {
|
|
this.projectKeyLoading--;
|
|
});
|
|
},
|
|
|
|
toggleRoute(path, params) {
|
|
if (this.operateVisible) {
|
|
return
|
|
}
|
|
this.goForward({name: 'manage-' + path, params: params || {}});
|
|
},
|
|
|
|
modalPercent(item) {
|
|
if (this.operateVisible) {
|
|
return
|
|
}
|
|
let content = `<p><strong>${this.$L('总进度')}</strong></p>`
|
|
content += `<p>${this.$L('总数量')}: ${item.task_num}</p>`
|
|
content += `<p>${this.$L('已完成')}: ${item.task_complete}</p>`
|
|
content += `<p style="margin-top:12px"><strong>${this.$L('我的任务')}</strong></p>`
|
|
content += `<p>${this.$L('总数量')}: ${item.task_my_num}</p>`
|
|
content += `<p>${this.$L('已完成')}: ${item.task_my_complete}</p>`
|
|
$A.modalInfo({
|
|
language: false,
|
|
title: `${item.name} ${this.$L('项目进度')}`,
|
|
content,
|
|
});
|
|
},
|
|
|
|
handleLongpress(event, el) {
|
|
const projectId = $A.getAttr(el, 'data-id')
|
|
const projectItem = this.projectLists.find(item => item.id == projectId)
|
|
if (!projectItem) {
|
|
return
|
|
}
|
|
this.operateVisible = false;
|
|
this.operateItem = $A.isJson(projectItem) ? projectItem : {};
|
|
this.$nextTick(() => {
|
|
const projectRect = el.getBoundingClientRect();
|
|
const wrapRect = this.$el.getBoundingClientRect();
|
|
this.operateStyles = {
|
|
left: `${event.clientX - wrapRect.left}px`,
|
|
top: `${projectRect.top + this.windowScrollY}px`,
|
|
height: projectRect.height + 'px',
|
|
}
|
|
this.operateVisible = true;
|
|
})
|
|
},
|
|
|
|
handleTopClick() {
|
|
this.$store.dispatch("call", {
|
|
url: 'project/top',
|
|
data: {
|
|
project_id: this.operateItem.id,
|
|
},
|
|
}).then(({data}) => {
|
|
this.$store.dispatch("saveProject", data);
|
|
}).catch(({msg}) => {
|
|
$A.modalError(msg);
|
|
});
|
|
},
|
|
}
|
|
}
|
|
</script>
|