<template>
<div>
<DxScheduler
time-zone="America/Los_Angeles"
:data-source="dataSource"
:views="views"
:current-date="currentDate"
:start-day-hour="9"
:first-day-of-week="1"
:height="600"
:on-appointment-context-menu="onAppointmentContextMenu"
:on-cell-context-menu="onCellContextMenu"
current-view="month"
recurrence-edit-mode="series"
>
<DxResource
:data-source="resourcesData"
field-expr="roomId"
label="Room"
/>
</DxScheduler>
<DxContextMenu
:data-source="contextMenuItems"
:width="200"
:disabled="disabled"
:target="target"
:on-item-click="onContextMenuItemClick"
:on-hiding="onContextMenuHiding"
item-template="itemTemplateSlot"
>
<template #itemTemplateSlot="{ data: itemData }">
<ItemTemplate :item-data="itemData"/>
</template>
</DxContextMenu>
</div>
</template>
<script>
import DxScheduler, { DxResource } from 'devextreme-vue/scheduler';
import DxContextMenu from 'devextreme-vue/context-menu';
import ItemTemplate from './ItemTemplate.vue';
import { resourcesData, data } from './data.js';
import { cellContextMenuItems, appointmentContextMenuItems, setResource } from './MenuItems.js';
export default {
components: {
DxScheduler,
DxResource,
DxContextMenu,
ItemTemplate
},
data() {
return {
views: ['day', 'month'],
currentDate: new Date(2021, 2, 25),
dataSource: data,
resourcesData: resourcesData,
cellContextMenuItems: cellContextMenuItems,
appointmentContextMenuItems: this.getAllAppointmentContextMenuItems(),
disabled: true,
contextMenuItems: [],
contextMenuEvent: null,
target: undefined,
};
},
methods: {
onAppointmentContextMenu(e) {
this.target = '.dx-scheduler-appointment';
this.disabled = false;
this.contextMenuItems = this.appointmentContextMenuItems;
this.contextMenuEvent = e;
},
onCellContextMenu(e) {
this.target = '.dx-scheduler-date-table-cell';
this.disabled = false;
this.contextMenuItems = this.cellContextMenuItems;
this.contextMenuEvent = e;
},
onContextMenuItemClick(e) {
e.itemData.onItemClick(this.contextMenuEvent, e);
},
onContextMenuHiding() {
this.disabled = true;
this.contextMenuItems = [];
},
getAllAppointmentContextMenuItems() {
resourcesData.map(function(item) {
item.onItemClick = setResource;
});
return appointmentContextMenuItems.concat(resourcesData);
}
},
};
</script>
<style scoped>
.dx-menu-item-content span {
margin-right: 5px;
}
.dx-menu-item-has-submenu .dx-icon-spinright {
position: absolute;
top: 7px;
right: 2px;
}
</style>
<template>
<div>
<div
v-if="itemData.color"
:style="styleObject"
class="item-badge"
/>
{{ itemData.text }}
</div>
</template>
<script>
export default {
props: {
itemData: {
type: Object,
default: function() { }
},
},
data() {
return {
styleObject: { backgroundColor: this.itemData.color }
};
}
};
</script>
<style scoped>
.item-badge {
text-align: center;
float: left;
margin-right: 12px;
color: white;
width: 18px;
height: 18px;
font-size: 19.5px;
border-radius: 18px;
margin-top: 2px;
}
</style>
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" />
<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>
export const data = [
{
text: 'Watercolor Landscape',
roomId: [1],
startDate: new Date('2021-03-01T17:30:00.000Z'),
endDate: new Date('2021-03-01T19:00:00.000Z'),
recurrenceRule: 'FREQ=WEEKLY;BYDAY=TU,FR;COUNT=10'
}, {
text: 'Oil Painting for Beginners',
roomId: [2],
startDate: new Date('2021-03-01T17:30:00.000Z'),
endDate: new Date('2021-03-01T19:00:00.000Z'),
recurrenceRule: 'FREQ=WEEKLY;BYDAY=MO,TH;COUNT=10'
}, {
text: 'Testing',
roomId: [3],
startDate: new Date('2021-03-01T20:00:00.000Z'),
endDate: new Date('2021-03-01T21:00:00.000Z'),
recurrenceRule: 'FREQ=WEEKLY;BYDAY=MO;WKST=TU;INTERVAL=2;COUNT=2'
}, {
text: 'Meeting of Instructors',
roomId: [4],
startDate: new Date('2021-03-01T17:00:00.000Z'),
endDate: new Date('2021-03-01T17:15:00.000Z'),
recurrenceRule: 'FREQ=DAILY;BYDAY=WE;UNTIL=20210401'
}, {
text: 'Recruiting students',
roomId: [5],
startDate: new Date('2021-02-24T18:00:00.000Z'),
endDate: new Date('2021-02-24T19:00:00.000Z'),
recurrenceRule: 'FREQ=YEARLY;BYWEEKNO=14',
recurrenceException: '20210411T180000Z'
}, {
text: 'Final exams',
roomId: [3],
startDate: new Date('2021-02-24T20:00:00.000Z'),
endDate: new Date('2021-02-24T21:35:00.000Z'),
recurrenceRule: 'FREQ=YEARLY;BYWEEKNO=24;BYDAY=TH,FR'
}, {
text: 'Monthly Planning',
roomId: [4],
startDate: new Date('2021-03-24T22:30:00.000Z'),
endDate: new Date('2021-03-24T23:45:00.000Z'),
recurrenceRule: 'FREQ=MONTHLY;BYMONTHDAY=28;COUNT=1'
}, {
text: 'Open Day',
roomId: [5],
startDate: new Date('2021-03-01T17:30:00.000Z'),
endDate: new Date('2021-03-01T21:00:00.000Z'),
recurrenceRule: 'FREQ=YEARLY;BYYEARDAY=87'
}
];
export const resourcesData = [
{
text: 'Room 101',
id: 1,
color: '#bbd806'
}, {
text: 'Room 102',
id: 2,
color: '#f34c8a'
}, {
text: 'Room 103',
id: 3,
color: '#ae7fcc'
}, {
text: 'Meeting room',
id: 4,
color: '#ff8817'
}, {
text: 'Conference hall',
id: 5,
color: '#03bb92'
}
];
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
}
});