Skip to content

Commit a8cc421

Browse files
committed
Adds a basic http-server (using start), build and watch scripts as well as some simple styling for demo
1 parent cdfa8c0 commit a8cc421

7 files changed

+244
-6
lines changed

calus.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ export default function calus(options) {
6868
// `displayInColumn` is false)
6969
currentDisplayedMonth: DateTime.local().setZone(timezone, { keepLocalTime: true }).startOf('month'),
7070

71+
// force the week to start on another day (0 is Monday)
72+
weekStartOffset: options.weekStartOffset || 0,
73+
7174
// callback for when an available date is clicked
7275
onSelect: options.onSelect || function (day) { },
7376
// callback for when selected month is changed with button
@@ -103,8 +106,8 @@ export default function calus(options) {
103106
while (date.startOf('month') <= end) {
104107
let days = []
105108

106-
let monthStart = date.startOf('month').startOf('week')
107-
let monthEnd = date.set({ day: date.daysInMonth }).plus({ weeks: 1 }).startOf('week').plus({ days: -1 })
109+
let monthStart = date.startOf('month').startOf('week').plus({ days: this.weekStartOffset })
110+
let monthEnd = date.set({ day: date.daysInMonth }).plus({ weeks: 1 }).startOf('week').plus({ days: this.weekStartOffset })
108111

109112
for (let day = monthStart; day <= monthEnd; day = day.plus({ days: 1 })) {
110113
while(available.length && day > available[0]) {

script.js demo/script.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
document.addEventListener('DOMContentLoaded', () => {
22
let calendar = new Calus({
3-
el: '#calendar'
3+
el: '#calendar',
4+
useDefaultTemplate: true,
45
})
56

67
console.log(calendar)

demo/style.css

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.month-container {
2+
text-align: center;
3+
width: 25%;
4+
}
5+
6+
.month__header {
7+
display: grid;
8+
grid-template-columns: repeat(3, 1fr);;
9+
}
10+
11+
.month__days {
12+
display: grid;
13+
grid-template-columns: repeat(7, 1fr);
14+
}
15+
16+
.month__days .day {
17+
padding: 0.25em 0;
18+
}
19+
20+
.month__days .day.is-past {
21+
opacity: 0.5;
22+
}
23+
24+
.month__days .day.is-today {
25+
text-decoration: underline;
26+
}

dist/calus.lib.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
<meta http-equiv="X-UA-Compatible" content="ie=edge">
77
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
88
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/global/luxon.min.js"></script>
9+
<link href="demo/style.css" rel="stylesheet">
910
<script src="dist/calus.lib.js"></script>
10-
<script src="script.js"></script>
11+
<script src="demo/script.js"></script>
1112
<title>Document</title>
1213
</head>
1314
<body>

package-lock.json

+203
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)