2021-06-17 12:40:37 +08:00

289 lines
9.6 KiB
Vue

<template>
<div class="page-calendar">
<PageTitle>{{$L('日历')}}</PageTitle>
<div class="calendar-head">
<div class="calendar-titbox">
<div class="calendar-title">
<h1>{{rangeText}}</h1>
</div>
<ButtonGroup class="calendar-arrow" size="small">
<Button @click="preMonth"><Icon type="ios-arrow-back"></Icon></Button>
<Button @click="curMonth">{{$L('今天')}}</Button>
<Button @click="afterMonth"><Icon type="ios-arrow-forward"></Icon></Button>
</ButtonGroup>
<ButtonGroup class="calendar-view">
<Button @click="setView('day')" :type="calendarView == 'day' ? 'primary' : 'default'">{{$L('日')}}</Button>
<Button @click="setView('week')" :type="calendarView == 'week' ? 'primary' : 'default'">{{$L('周')}}</Button>
<Button @click="setView('month')" :type="calendarView == 'month' ? 'primary' : 'default'">{{$L('月')}}</Button>
</ButtonGroup>
</div>
</div>
<div class="calendar-box">
<Calendar
ref="cal"
:view="calendarView"
:theme="calendarTheme"
:template="calendarTemplate"
:calendars="calendarList"
:schedules="calendarTasks"
@beforeCreateSchedule="onBeforeCreateSchedule"
@beforeClickSchedule="onBeforeClickSchedule"
@beforeUpdateSchedule="onBeforeUpdateSchedule"
disable-click/>
</div>
</div>
</template>
<script>
import 'tui-date-picker/dist/tui-date-picker.css';
import 'tui-time-picker/dist/tui-time-picker.css';
import 'tui-calendar-hi/dist/tui-calendar-hi.css'
import {mapState} from "vuex";
import Calendar from "./components/Calendar";
import moment from "moment";
const today = new Date();
const getDate = (type, start, value, operator) => {
start = new Date(start);
type = type.charAt(0).toUpperCase() + type.slice(1);
if (operator === '+') {
start[`set${type}`](start[`get${type}`]() + value);
} else {
start[`set${type}`](start[`get${type}`]() - value);
}
return start;
};
export default {
components: {Calendar},
data() {
return {
lists: [],
rangeText: 'Calendar',
rangeTime: [],
calendarView: 'month',
calendarTheme: {},
calendarTemplate: {},
calendarList: [],
scheduleLoad: 0,
}
},
mounted() {
this.setRenderRange();
},
activated() {
this.$refs.cal.resetRender();
},
computed: {
...mapState(['projectList', 'calendarTask']),
calendarTasks() {
return this.calendarTask.filter(({complete_at}) => !complete_at)
}
},
watch: {
rangeTime(time) {
this.getTask(time);
},
projectList: {
handler(data) {
const list = data.map((project) => {
return {
id: String(project.id),
name: project.name,
}
});
if (JSON.stringify(list) != JSON.stringify(this.calendarList)) {
this.calendarList = list;
}
},
immediate: true,
},
},
methods: {
initLanguage() {
this.calendarTheme = {
'common.border': '1px solid #f4f5f5',
'month.dayname.fontSize': '14px',
'month.dayname.borderLeft': '1px solid #f4f5f5',
'month.dayname.height': '50px',
}
this.calendarTemplate = {
titlePlaceholder: () => {
return this.$L("任务描述")
},
popupSave: () => {
return this.$L("保存");
},
popupEdit: () => {
return this.$L("详情");
},
popupDelete: () => {
return this.$L("删除");
}
}
},
getTask(time) {
if (this.scheduleLoad > 0) {
setTimeout(() => {
this.getTask(time)
}, 100)
return;
}
this.scheduleLoad++;
this.$store.dispatch("getTaskList", {
time
}).then(({data}) => {
this.scheduleLoad--;
this.$store.dispatch("saveCalendarTask", data.data)
}).catch(() => {
this.scheduleLoad--;
})
},
preMonth() {
this.$refs.cal.getInstance().prev();
this.setRenderRange()
},
curMonth() {
this.$refs.cal.getInstance().today();
this.setRenderRange()
},
afterMonth() {
this.$refs.cal.getInstance().next();
this.setRenderRange()
},
setView(view) {
this.calendarView = view;
this.setRenderRange()
},
setRenderRange() {
this.$nextTick(() => {
const cal = this.$refs.cal.getInstance();
let options = cal.getOptions();
let viewName = cal.getViewName();
let html = [];
if (viewName === 'day') {
html.push(this.currentCalendarDate('YYYY.MM.DD'));
} else if (viewName === 'month' &&
(!options.month.visibleWeeksCount || options.month.visibleWeeksCount > 4)) {
html.push(this.currentCalendarDate('YYYY.MM'));
} else {
html.push(moment(cal.getDateRangeStart().getTime()).format('YYYY.MM.DD'));
html.push(' ~ ');
html.push(moment(cal.getDateRangeEnd().getTime()).format(' MM.DD'));
}
this.rangeText = html.join('');
this.rangeTime = [moment(cal.getDateRangeStart().getTime()).format('YYYY-MM-DD'), moment(cal.getDateRangeEnd().getTime()).format('YYYY-MM-DD')];
})
},
currentCalendarDate(format) {
const cal = this.$refs.cal.getInstance();
let currentDate = moment([cal.getDate().getFullYear(), cal.getDate().getMonth(), cal.getDate().getDate()]);
return currentDate.format(format);
},
onBeforeCreateSchedule(res) {
this.$store.dispatch("taskAdd", {
project_id: res.calendarId,
times: [res.start.toDate(), res.end.toDate()],
name: res.title
}).then(({msg}) => {
$A.messageSuccess(msg);
}).catch(({msg}) => {
$A.modalError(msg);
});
},
onBeforeClickSchedule({type, schedule}) {
let data = this.calendarTask.find(({id}) => id === schedule.id);
if (!data) {
return;
}
switch (type) {
case "check":
this.$set(data, 'complete_at', $A.formatDate("Y-m-d H:i:s"))
this.$store.dispatch("taskUpdate", {
task_id: data.id,
complete_at: $A.formatDate("Y-m-d H:i:s"),
}).then(({msg}) => {
$A.messageSuccess(msg);
}).catch(({msg}) => {
this.$set(data, 'complete_at', null)
$A.modalError(msg);
});
break;
case "edit":
this.$store.dispatch("openTask", schedule.id)
break;
case "delete":
$A.modalConfirm({
title: '删除任务',
content: '你确定要删除任务【' + data.title + '】吗?',
loading: true,
onOk: () => {
this.$store.dispatch("taskArchivedOrRemove", {
task_id: data.id,
type: 'delete',
}).then(({msg}) => {
$A.messageSuccess(msg);
this.$Modal.remove();
}).catch(({msg}) => {
$A.modalError(msg, 301);
this.$Modal.remove();
this.setRenderRange();
});
}
});
break;
}
},
onBeforeUpdateSchedule(res) {
const {changes, schedule} = res;
let data = this.calendarTask.find(({id}) => id === schedule.id);
if (!data) {
return;
}
if (changes.start || changes.end) {
const cal = this.$refs.cal.getInstance();
cal.updateSchedule(schedule.id, schedule.calendarId, changes);
//
this.$store.dispatch("taskUpdate", {
task_id: data.id,
times: [
(changes.start || schedule.start).toDate(),
(changes.end || schedule.end).toDate(),
],
}).then(({msg}) => {
$A.messageSuccess(msg);
}).catch(({msg}) => {
$A.modalError(msg);
});
}
}
}
}
</script>