<template>
<DxScheduler
time-zone="America/Los_Angeles"
:data-source="dataSource"
:current-date="currentDate"
:views="views"
:current-view="currentView"
:height="600"
:show-all-day-panel="false"
:first-day-of-week="0"
:start-day-hour="9"
:end-day-hour="19"
data-cell-template="dataCellTemplate"
date-cell-template="dateCellTemplate"
time-cell-template="timeCellTemplate"
:on-appointment-form-opening="onAppointmentFormOpening"
:on-appointment-adding="onAppointmentAdding"
:on-appointment-updating="onAppointmentUpdating"
>
<template #dataCellTemplate="{ data: cellData }">
<DataCell :cell-data="cellData"/>
</template>
<template #dateCellTemplate="{ data: cellData }">
<DateCell :cell-data="cellData"/>
</template>
<template #timeCellTemplate="{ data: cellData }">
<TimeCell :cell-data="cellData"/>
</template>
</DxScheduler>
</template>
<script>
import { DxScheduler } from 'devextreme-vue/scheduler';
import { data, holidays } from './data.js';
import notify from 'devextreme/ui/notify';
import Utils from './utils.js';
import DataCell from './DataCell.vue';
import DateCell from './DateCell.vue';
import TimeCell from './TimeCell.vue';
export default {
components: {
DxScheduler,
DataCell,
DateCell,
TimeCell
},
data() {
return {
views: ['workWeek', 'month'],
currentView: 'workWeek',
currentDate: new Date(2021, 4, 25),
dataSource: data
};
},
methods: {
onAppointmentFormOpening: function(e) {
const startDate = new Date(e.appointmentData.startDate);
if(!Utils.isValidAppointmentDate(startDate)) {
e.cancel = true;
this.notifyDisableDate();
}
this.applyDisableDatesToDateEditors(e.form);
},
onAppointmentAdding: function(e) {
const isValidAppointment = Utils.isValidAppointment(e.component, e.appointmentData);
if(!isValidAppointment) {
e.cancel = true;
this.notifyDisableDate();
}
},
onAppointmentUpdating(e) {
const isValidAppointment = Utils.isValidAppointment(e.component, e.newData);
if(!isValidAppointment) {
e.cancel = true;
this.notifyDisableDate();
}
},
notifyDisableDate() {
notify('Cannot create or move an appointment/event to disabled time/date regions.', 'warning', 1000);
},
applyDisableDatesToDateEditors(form) {
const startDateEditor = form.getEditor('startDate');
startDateEditor.option('disabledDates', holidays);
const endDateEditor = form.getEditor('endDate');
endDateEditor.option('disabledDates', holidays);
}
}
};
</script>
<template>
<div :class="markDataCell(cellData)">
{{ cellData.text }}
</div>
</template>
<script>
import Utils from './utils.js';
export default {
props: {
cellData: {
type: Object,
default: () => {}
}
},
methods: {
markDataCell(cellData) {
const date = cellData.startDate;
const isDisableDate = Utils.isHoliday(date) || Utils.isWeekend(date);
const isDinner = Utils.isDinner(date);
return {
'disable-date': isDisableDate,
'dinner': isDinner
};
}
}
};
</script>
<template>
<div :class="markDateCell(cellData)">
{{ cellData.text }}
</div>
</template>
<script>
import Utils from './utils.js';
export default {
props: {
cellData: {
type: Object,
default: () => {}
}
},
methods: {
markDateCell(cellData) {
return { 'disable-date': Utils.isWeekend(cellData.date) };
}
}
};
</script>
<template>
<div :class="markTimeCell(cellData)">
{{ cellData.text }}
<div
v-if="hasCoffeeCupIcon"
class="cafe"
/>
</div>
</template>
<script>
import Utils from './utils.js';
export default {
props: {
cellData: {
type: Object,
default: () => {}
}
},
computed: {
isDinner: function() {
const date = this.cellData.date;
return Utils.isDinner(date);
},
hasCoffeeCupIcon: function() {
const date = this.cellData.date;
return Utils.hasCoffeeCupIcon(date);
}
},
methods: {
markTimeCell(cellData) {
return { 'dinner': Utils.isDinner(cellData.date) };
}
}
};
</script>
import { dinnerTime, holidays } from './data.js';
export default class Utils {
static isHoliday(date) {
const localeDate = date.toLocaleDateString();
return holidays.filter(holiday => {
return holiday.toLocaleDateString() === localeDate;
}).length > 0;
}
static isWeekend(date) {
const day = date.getDay();
return day === 0 || day === 6;
}
static isDinner(date) {
const hours = date.getHours();
return hours >= dinnerTime.from && hours < dinnerTime.to;
}
static hasCoffeeCupIcon(date) {
const hours = date.getHours();
const minutes = date.getMinutes();
return hours === dinnerTime.from && minutes === 0;
}
static isValidAppointment(component, appointmentData) {
const startDate = new Date(appointmentData.startDate);
const endDate = new Date(appointmentData.endDate);
const cellDuration = component.option('cellDuration');
return Utils.isValidAppointmentInterval(startDate, endDate, cellDuration);
}
static isValidAppointmentInterval(startDate, endDate, cellDuration) {
const edgeEndDate = new Date(endDate.getTime() - 1);
if(!Utils.isValidAppointmentDate(edgeEndDate)) {
return false;
}
const durationInMs = cellDuration * 60 * 1000;
const date = startDate;
while(date <= endDate) {
if(!Utils.isValidAppointmentDate(date)) {
return false;
}
const newDateTime = date.getTime() + durationInMs - 1;
date.setTime(newDateTime);
}
return true;
}
static isValidAppointmentDate(date) {
return !Utils.isHoliday(date) && !Utils.isDinner(date) && !Utils.isWeekend(date);
}
}
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');
<!DOCTYPE html>
<html>
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.light.css" />
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/systemjs@0.21.3/dist/system.js"></script>
<script type="text/javascript" src="config.js"></script>
<script type="text/javascript">
System.import('./index.js');
</script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="app">
</div>
</div>
</body>
</html>
.disable-date,
.dinner {
height: 100%;
}
.disable-date {
background-image: repeating-linear-gradient(135deg,
rgba(244, 67, 54, 0.1),
rgba(244, 67, 54, 0.1) 4px,
transparent 4px,
transparent 9px);
color: #9B6467;
}
.dx-scheduler-header-panel-cell .disable-date {
display: flex;
flex-direction: column;
justify-content: center;
}
.dinner {
background: rgba(255, 193, 7, 0.2);
}
.dx-scheduler-time-panel-cell .dinner {
color: rgba(255, 193, 7);
font-weight: 400;
background: transparent;
}
.dx-draggable {
cursor: auto;
}
td.dx-scheduler-time-panel-cell .dinner .cafe {
height: 200%;
width: 100%;
left: 50%;
-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 0 24 24" width="24"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M20 3H4v10c0 2.21 1.79 4 4 4h6c2.21 0 4-1.79 4-4v-3h2c1.11 0 2-.9 2-2V5c0-1.11-.89-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4z"/></svg>');
-webkit-mask-repeat: no-repeat;
-webkit-mask-position-y: 50%;
-webkit-mask-position-x: 100%;
margin-top: -4px;
background-color: #ffc107;
}
.dx-scheduler-date-table-cell {
padding: 0;
opacity: 1;
}
export const dinnerTime = { from: 12, to: 13 };
export const holidays = [
new Date(2021, 4, 27),
new Date(2021, 6, 4)
];
export const data = [
{
text: 'Website Re-Design Plan',
startDate: new Date('2021-05-24T16:30:00.000Z'),
endDate: new Date('2021-05-24T18:30:00.000Z')
},
{
text: 'Install New Router in Dev Room',
startDate: new Date('2021-05-24T20:00:00.000Z'),
endDate: new Date('2021-05-24T21:00:00.000Z'),
allDay: false
},
{
text: 'Approve Personal Computer Upgrade Plan',
startDate: new Date('2021-05-25T17:00:00.000Z'),
endDate: new Date('2021-05-25T18:00:00.000Z')
},
{
text: 'Final Budget Review',
startDate: new Date('2021-05-25T20:30:00.000Z'),
endDate: new Date('2021-05-25T22:00:00.000Z'),
allDay: false
},
{
text: 'New Brochures',
startDate: new Date('2021-05-24T22:00:00.000Z'),
endDate: new Date('2021-05-24T23:15:00.000Z'),
allDay: false
},
{
text: 'Install New Database',
startDate: new Date('2021-05-26T16:45:00.000Z'),
endDate: new Date('2021-05-26T19:00:00.000Z')
},
{
text: 'Approve New Online Marketing Strategy',
startDate: new Date('2021-05-26T21:30:00.000Z'),
endDate: new Date('2021-05-26T23:30:00.000Z'),
allDay: false
},
{
text: 'Upgrade Personal Computers',
startDate: new Date('2021-05-25T22:30:00.000Z'),
endDate: new Date('2021-05-25T23:45:00.000Z'),
allDay: false
},
{
text: 'Prepare 2021 Marketing Plan',
startDate: new Date('2021-05-31T20:00:00.000Z'),
endDate: new Date('2021-05-31T22:00:00.000Z'),
allDay: false
},
{
text: 'Brochure Design Review',
startDate: new Date('2021-06-01T22:30:00.000Z'),
endDate: new Date('2021-06-02T00:00:00.000Z'),
allDay: false
},
{
text: 'Create Icons for Website',
startDate: new Date('2021-05-28T17:00:00.000Z'),
endDate: new Date('2021-05-28T19:00:00.000Z')
},
{
text: 'Upgrade Server Hardware',
startDate: new Date('2021-05-28T23:30:00.000Z'),
endDate: new Date('2021-05-29T01:00:00.000Z'),
allDay: false
},
{
text: 'Submit New Website Design',
startDate: new Date('2021-06-02T17:00:00.000Z'),
endDate: new Date('2021-06-02T18:30:00.000Z'),
allDay: false
},
{
text: 'Launch New Website',
startDate: new Date('2021-05-28T21:30:00.000Z'),
endDate: new Date('2021-05-28T23:10:00.000Z'),
allDay: false
}
];
System.config({
transpiler: 'plugin-babel',
meta: {
'*.vue': {
loader: 'vue-loader'
},
},
paths: {
'npm:': 'https://unpkg.com/'
},
map: {
'vue': 'npm:vue@3.0.0/dist/vue.esm-browser.js',
'vue-loader': 'npm:dx-systemjs-vue-browser@1.0.15/index.js',
'mitt': 'npm:mitt/dist/mitt.umd.js',
'rrule': 'npm:rrule@2.6.6/dist/es5/rrule.js',
'luxon': 'npm:luxon@1.25.0/build/global/luxon.min.js',
'es6-object-assign': 'npm:es6-object-assign@1.1.0',
'devextreme': 'npm:devextreme@20.2.4',
'devextreme-vue': 'npm:devextreme-vue@20.2.4',
'jszip': 'npm:jszip@3.5.0/dist/jszip.min.js',
'devextreme-quill': 'npm:devextreme-quill@0.9.7/dist/dx-quill.min.js',
'devexpress-diagram': 'npm:devexpress-diagram@2.0.5/dist/dx-diagram.js',
'devexpress-gantt': 'npm:devexpress-gantt@2.0.8/dist/dx-gantt.js',
'preact': 'npm:preact@10.5.7/dist/preact.js',
'preact/hooks': 'npm:preact@10.5.7/hooks/dist/hooks.js',
'plugin-babel': 'npm:systemjs-plugin-babel@0.0.25/plugin-babel.js',
'systemjs-babel-build': 'npm:systemjs-plugin-babel@0.0.25/systemjs-babel-browser.js'
},
packages: {
'devextreme-vue': {
main: 'index.js'
},
'devextreme': {
defaultExtension: 'js'
},
'devextreme/events/utils': {
main: 'index'
},
'devextreme/events': {
main: 'index'
},
'es6-object-assign': {
main: './index.js',
defaultExtension: 'js'
}
},
babelOptions: {
sourceMaps: false,
stage0: true
}
});