2020-07-28 13:13:33 +00:00
|
|
|
@extends("app.layout.base")
|
2020-07-29 09:53:37 +00:00
|
|
|
|
2020-07-28 13:13:33 +00:00
|
|
|
@section("title")
|
|
|
|
Booking Liste
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
2020-08-18 05:49:00 +00:00
|
|
|
<style>
|
|
|
|
option {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
</style>
|
2020-11-26 09:19:12 +00:00
|
|
|
<main class="justify-unset">
|
2020-08-06 18:33:46 +00:00
|
|
|
<h1 class="text-center sde-blue mb-0">{{__('msg.bookingliste')}}</h1>
|
2020-08-04 13:09:10 +00:00
|
|
|
{!! session()->get('ReservationExists') !!}
|
2020-08-11 16:21:51 +00:00
|
|
|
<div class="col w-100 mt-1">
|
2020-07-28 13:13:33 +00:00
|
|
|
<div class="calendar-container">
|
|
|
|
<div class="calendar-container__header">
|
|
|
|
<button id="week-previous" class="calendar-container__btn fas fa-arrow-left" title="Previous">
|
|
|
|
<i class="icon ion-ios-arrow-back"></i>
|
|
|
|
</button>
|
|
|
|
<h2 id="title" class="calendar-container__title">{Måned} {År}</h2>
|
|
|
|
<button id="week-next" class="calendar-container__btn fas fa-arrow-right" title="Next">
|
|
|
|
<i class="icon ion-ios-arrow-forward"></i>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="calendar-container__body">
|
|
|
|
<div id="calendar" class="calendar-table">
|
|
|
|
<div class="calendar-table__body">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<form method="post" action="{{ route("washing-reservations.store") }}" id="event-container" class="events-container">
|
|
|
|
@csrf
|
|
|
|
</form>
|
2020-08-05 08:12:05 +00:00
|
|
|
@if(count(\App\WashingMachine::all()) < 1)
|
2020-08-06 18:33:46 +00:00
|
|
|
<p style="margin: 0 18px;">{{__('msg.dereringenvaskemaskiner')}}.</p>
|
2020-08-05 08:12:05 +00:00
|
|
|
@endif
|
2020-07-28 13:13:33 +00:00
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("scripts")
|
2020-08-18 09:54:26 +00:00
|
|
|
<script src="{{ asset("/js/moment-with-locales.min.js") }}"></script>
|
|
|
|
<script src="{{ asset("/js/da.min.js") }}"></script>
|
2020-07-28 13:13:33 +00:00
|
|
|
<script>
|
2020-08-19 08:01:22 +00:00
|
|
|
//Global vars to use outside functions
|
2020-08-18 20:47:39 +00:00
|
|
|
var momentDate = null;
|
|
|
|
var dateText = null;
|
|
|
|
|
|
|
|
//Custom forEach
|
|
|
|
NodeList.prototype.forEach = Array.prototype.forEach;
|
|
|
|
|
2020-08-19 08:01:22 +00:00
|
|
|
//Generates the calender when the site loads
|
2020-07-28 13:13:33 +00:00
|
|
|
function generateCalendar(weekOffset = 0) {
|
|
|
|
const week = (moment().week() + weekOffset);
|
|
|
|
|
|
|
|
let weekDays = Array.apply(null, Array(7)).map((value, index) => {
|
|
|
|
return moment(index, "e").locale("da").startOf("week").weekday(index).format("ddd");
|
|
|
|
});
|
|
|
|
|
2020-08-06 18:33:46 +00:00
|
|
|
document.getElementById("title").innerHTML = '{{__('msg.ugestor')}} ' + moment().locale("da").day(weekDays[0]).week(week).isoWeek().toString();
|
2020-07-28 13:13:33 +00:00
|
|
|
|
|
|
|
const calendar = document.getElementById("calendar");
|
|
|
|
|
|
|
|
let header = document.createElement("div");
|
|
|
|
header.classList.add("calendar-table__header", "calendar-table__row");
|
|
|
|
|
|
|
|
let calendarBody = document.createElement("div");
|
|
|
|
calendarBody.classList.add("calendar-table__body");
|
|
|
|
|
|
|
|
let calendarRow = document.createElement("div");
|
|
|
|
calendarRow.classList.add("calendar-table__row")
|
|
|
|
calendarRow.id = "calenderRow";
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Generate day buttons
|
2020-07-28 13:13:33 +00:00
|
|
|
weekDays.forEach(function (weekDay) {
|
|
|
|
let headerDay = document.createElement("div");
|
|
|
|
headerDay.classList.add("calendar-table__col");
|
|
|
|
|
|
|
|
headerDay.innerText = weekDay;
|
|
|
|
|
|
|
|
header.appendChild(headerDay);
|
|
|
|
|
|
|
|
let date = moment().locale("da").day(weekDay).week(week);
|
2020-08-05 06:27:33 +00:00
|
|
|
var datetext = moment().locale("da").day(weekDay).week(week).year() + "-" + prependZero((moment().locale("da").day(weekDay).week(week).month() + 1)) + "-" + prependZero(moment().locale("da").day(weekDay).week(week).date());
|
2020-07-28 13:13:33 +00:00
|
|
|
|
|
|
|
let dayHolder = document.createElement("div");
|
|
|
|
dayHolder.classList.add("calendar-table__col");
|
|
|
|
|
|
|
|
let day = document.createElement("div");
|
|
|
|
day.classList.add("calendar-table__item");
|
|
|
|
day.innerText = date.date();
|
|
|
|
|
2020-08-31 08:15:12 +00:00
|
|
|
//If any date is selected, Add selected class to the selected day
|
|
|
|
if(momentDate !== null)
|
|
|
|
if(date.diff(momentDate, 'hours') == 0)
|
|
|
|
dayHolder.classList.add("selected");
|
|
|
|
|
2020-07-28 13:13:33 +00:00
|
|
|
dayHolder.appendChild(day);
|
|
|
|
|
2020-08-24 09:27:17 +00:00
|
|
|
//If date hasn't already happened
|
|
|
|
if(date > moment().subtract(1, "days").locale("da")) {
|
|
|
|
//When clicking on a date run "onDateSelect()"
|
|
|
|
dayHolder.onclick = function () {
|
|
|
|
onDateSelect(date, dayHolder, datetext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dayHolder.classList.add("disabled");
|
2020-07-28 13:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
calendarRow.appendChild(dayHolder);
|
|
|
|
});
|
|
|
|
|
|
|
|
calendarBody.appendChild(calendarRow);
|
|
|
|
|
|
|
|
calendar.innerHTML = "";
|
|
|
|
|
|
|
|
calendar.appendChild(header);
|
|
|
|
calendar.appendChild(calendarBody);
|
|
|
|
}
|
|
|
|
|
2020-08-19 08:01:22 +00:00
|
|
|
//When a date is selected
|
2020-08-04 13:29:21 +00:00
|
|
|
function onDateSelect(date, dayHolder, datetext) {
|
2020-08-18 20:47:39 +00:00
|
|
|
//Set selected date and dateText
|
|
|
|
momentDate = date;
|
|
|
|
dateText = datetext;
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Add selected class on the selected date and remove it on all others
|
2020-07-28 13:13:33 +00:00
|
|
|
var children = document.getElementById("calenderRow").childNodes;
|
|
|
|
|
|
|
|
children.forEach(function(item){
|
|
|
|
item.classList.remove("selected");
|
|
|
|
});
|
|
|
|
|
|
|
|
dayHolder.classList.add("selected");
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
/***************/
|
|
|
|
/*Generate form*/
|
|
|
|
/***************/
|
|
|
|
|
2020-08-03 10:57:14 +00:00
|
|
|
let machine_id;
|
2020-08-06 08:32:34 +00:00
|
|
|
let location_id;
|
2020-08-03 10:57:14 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If a washing-machine select exists, set machine_id to its currently selected options value
|
|
|
|
//Else set it to 0
|
|
|
|
if(document.getElementById('washing-machines')) {
|
2020-08-03 10:57:14 +00:00
|
|
|
machine_id = document.getElementById('washing-machines').value;
|
2020-08-18 20:47:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-08-03 10:57:14 +00:00
|
|
|
machine_id = 0;
|
2020-08-18 20:47:39 +00:00
|
|
|
}
|
2020-08-03 10:57:14 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If a location select exists, set location_id to its currently selected options value
|
|
|
|
//Else set it to 0
|
|
|
|
if(document.getElementById('locations')) {
|
2020-08-06 08:32:34 +00:00
|
|
|
location_id = document.getElementById('locations').value;
|
2020-08-18 20:47:39 +00:00
|
|
|
}
|
|
|
|
else {
|
2020-08-06 08:32:34 +00:00
|
|
|
location_id = 0;
|
2020-08-18 20:47:39 +00:00
|
|
|
}
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-07-28 13:13:33 +00:00
|
|
|
axios({
|
|
|
|
method: 'get',
|
2020-07-29 09:53:37 +00:00
|
|
|
url: '{{ route("washing-reservations.api") }}',
|
2020-08-06 08:32:34 +00:00
|
|
|
params: { 'date': date, 'machine_id': machine_id, 'datetext': datetext, 'location_id': location_id }
|
2020-08-18 20:47:39 +00:00
|
|
|
})
|
|
|
|
.then(function (response) {
|
2020-07-28 13:13:33 +00:00
|
|
|
var data = response.data;
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Fill locations
|
|
|
|
fillLocations(data["locations"], location_id);
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-09-02 10:20:49 +00:00
|
|
|
updateForm();
|
2020-08-18 20:47:39 +00:00
|
|
|
});
|
|
|
|
}
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Fill locations
|
|
|
|
function fillLocations(locations, selected_location_id){
|
|
|
|
var element;
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If a location select exists, set element to the select element
|
|
|
|
//Else create it
|
|
|
|
if(document.getElementById("locations") !== null) {
|
|
|
|
element = document.getElementById("locations");
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Clear locations
|
|
|
|
element.innerHTML = "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
let span = document.createElement("span");
|
|
|
|
span.classList.add("events__title");
|
|
|
|
span.innerText = "{{__('msg.lokation')}}";
|
|
|
|
|
|
|
|
let select = document.createElement("select");
|
|
|
|
select.classList.add("events__title");
|
|
|
|
select.id = "locations";
|
|
|
|
select.name = "location_id";
|
|
|
|
|
|
|
|
select.onchange = function() {
|
|
|
|
updateForm();
|
2020-07-28 13:13:33 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
document.getElementById("event-container").appendChild(span);
|
|
|
|
document.getElementById("event-container").appendChild(select);
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
element = document.getElementById("locations");
|
|
|
|
}
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
element.onchange = function () {
|
|
|
|
updateForm();
|
|
|
|
}
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Add location options
|
|
|
|
for (let i = 0; i < locations.length; i++) {
|
|
|
|
let option = document.createElement("option");
|
|
|
|
option.text = locations[i]["name"];
|
|
|
|
option.value = locations[i]["id"];
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If current location is the location we have selected, mark it selected
|
|
|
|
if(selected_location_id == locations[i]["id"])
|
|
|
|
option.selected = "selected";
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
element.appendChild(option);
|
|
|
|
}
|
|
|
|
}
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Fill washing-machines
|
|
|
|
function fillMachines(machines, selected_machine_id) {
|
|
|
|
var element;
|
2020-08-06 08:32:34 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If a washing-machine select exists, set element to the select element
|
|
|
|
//Else create it
|
|
|
|
if(document.getElementById("washing-machines") !== null) {
|
|
|
|
element = document.getElementById("washing-machines");
|
|
|
|
|
|
|
|
//Clear machines
|
|
|
|
element.innerHTML = "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
let span = document.createElement("span");
|
|
|
|
span.classList.add("events__title");
|
|
|
|
span.innerText = "{{__('msg.maskiner')}}";
|
|
|
|
|
|
|
|
let select = document.createElement("select");
|
|
|
|
select.classList.add("events__title");
|
|
|
|
select.id = "washing-machines";
|
|
|
|
select.name = "machine_id";
|
|
|
|
|
|
|
|
select.onchange = function() {
|
|
|
|
updateForm();
|
2020-08-06 08:32:34 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
document.getElementById("event-container").appendChild(span);
|
|
|
|
document.getElementById("event-container").appendChild(select);
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
element = document.getElementById("washing-machines");
|
|
|
|
}
|
2020-08-03 10:57:14 +00:00
|
|
|
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
element.onchange = function () {
|
|
|
|
updateForm();
|
|
|
|
}
|
2020-08-03 10:57:14 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Add machine options
|
|
|
|
for (let i = 0; i < machines.length; i++) {
|
|
|
|
let option = document.createElement("option");
|
|
|
|
option.text = machines[i]["name"];
|
|
|
|
option.value = machines[i]["id"];
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If current machine is the machine we have selected, mark it selected
|
|
|
|
if(selected_machine_id == machines[i]["id"])
|
|
|
|
option.selected = "selected";
|
2020-08-04 13:29:21 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
element.appendChild(option);
|
|
|
|
}
|
|
|
|
}
|
2020-07-29 09:53:37 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Fill events (times) and remove unavailable_times
|
2020-08-31 08:15:12 +00:00
|
|
|
function fillTimes(unavailable_times, datetext, date) {
|
2020-08-18 20:47:39 +00:00
|
|
|
var element;
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//If a events (times) select exists, set element to the select element
|
|
|
|
//Else create it
|
|
|
|
if(document.getElementById("events") !== null) {
|
|
|
|
element = document.getElementById("events");
|
2020-07-29 09:53:37 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Clear times
|
|
|
|
element.innerHTML = "";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
let span = document.createElement("span");
|
|
|
|
span.classList.add("events__title");
|
|
|
|
span.innerText = "{{__('msg.tilgængeligetider')}}";
|
2020-07-29 09:53:37 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
let select = document.createElement("select");
|
|
|
|
select.classList.add("events__title");
|
|
|
|
select.id = "events";
|
|
|
|
select.name = "time";
|
2020-07-29 09:53:37 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
document.getElementById("event-container").appendChild(span);
|
|
|
|
document.getElementById("event-container").appendChild(select);
|
|
|
|
|
|
|
|
element = document.getElementById("events");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//Add times 8:00-20:00
|
2020-08-24 09:27:17 +00:00
|
|
|
for (let hour = 8; hour < 20; hour++) {
|
2020-08-31 08:15:12 +00:00
|
|
|
if(hour < new Date().getHours() && moment().locale("da").diff(date, 'hours') == 0)
|
2020-08-24 09:27:17 +00:00
|
|
|
continue;
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
let value = datetext + " " + prependZero(hour) + ":00:00";
|
|
|
|
|
|
|
|
let option = document.createElement("option");
|
|
|
|
|
2020-08-24 09:27:17 +00:00
|
|
|
option.text = prependZero(hour) + ":00-" + prependZero(hour+1) + ":00";
|
2020-08-18 20:47:39 +00:00
|
|
|
option.value = value;
|
|
|
|
option.id = value;
|
|
|
|
element.appendChild(option);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Remove unavailable_times
|
|
|
|
unavailable_times.forEach(function (item, index) {
|
|
|
|
document.getElementById(item).remove();
|
2020-07-28 13:13:33 +00:00
|
|
|
});
|
2020-08-18 20:47:39 +00:00
|
|
|
|
|
|
|
//If a submit button doesn't exist, create it
|
|
|
|
if(document.getElementById("create-reservation") === null) {
|
|
|
|
let button = document.createElement("button");
|
|
|
|
|
|
|
|
button.id = "create-reservation";
|
|
|
|
button.innerText = "{{__('msg.reserver')}}";
|
|
|
|
button.classList.add("btn", "btn-sde-blue")
|
|
|
|
button.type = "submit";
|
|
|
|
|
|
|
|
document.getElementById("event-container").appendChild(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
//If there is no available times, disable the make reservation button and create new option
|
|
|
|
if(element.childElementCount === 0){
|
|
|
|
let option = document.createElement("option");
|
|
|
|
option.disabled = "disabled";
|
|
|
|
option.text = "Der er ingen tilgængelige tider";
|
|
|
|
option.selected = "selected";
|
|
|
|
element.appendChild(option);
|
|
|
|
|
|
|
|
document.getElementById("create-reservation").disabled = "disabled";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
document.getElementById("create-reservation").disabled = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Update selects
|
|
|
|
function updateForm() {
|
2020-09-02 10:31:44 +00:00
|
|
|
//console.log("Updating form...");
|
2020-08-18 20:47:39 +00:00
|
|
|
var location_id;
|
|
|
|
var machine_id;
|
|
|
|
|
|
|
|
//If a location select exists, set location_id to its currently selected options value
|
|
|
|
//Else set it to 0
|
|
|
|
if(document.getElementById('locations') !== null)
|
|
|
|
location_id = document.getElementById('locations').value;
|
|
|
|
else
|
|
|
|
location_id = 0;
|
|
|
|
|
2020-09-02 10:31:44 +00:00
|
|
|
//console.log("location_id: " + location_id);
|
2020-08-18 20:55:50 +00:00
|
|
|
|
|
|
|
//If a washing-machine select exists, set machine_id to its currently selected options value
|
|
|
|
//Else set it to 0
|
|
|
|
if(document.getElementById('washing-machines') !== null)
|
|
|
|
machine_id = document.getElementById('washing-machines').value;
|
|
|
|
else
|
|
|
|
machine_id = 0;
|
2020-08-18 20:47:39 +00:00
|
|
|
|
|
|
|
axios({
|
|
|
|
method: 'get',
|
|
|
|
url: '{{ route("washing-reservations.getMachines") }}',
|
|
|
|
params: { 'location_id': location_id }
|
|
|
|
})
|
|
|
|
.then(function (response) {
|
|
|
|
var data = response.data;
|
|
|
|
|
|
|
|
//Fill washing-machines
|
|
|
|
fillMachines(data["washingmachines"], machine_id);
|
|
|
|
|
|
|
|
//If a washing-machine select exists, set machine_id to its currently selected options value
|
|
|
|
//Else set it to 0
|
|
|
|
if(document.getElementById('washing-machines') !== null)
|
|
|
|
machine_id = document.getElementById('washing-machines').value;
|
|
|
|
else
|
|
|
|
machine_id = 0;
|
|
|
|
|
2020-09-02 10:31:44 +00:00
|
|
|
//console.log("machine_id: " + machine_id);
|
2020-08-18 20:47:39 +00:00
|
|
|
|
|
|
|
axios({
|
|
|
|
method: 'get',
|
|
|
|
url: '{{ route("washing-reservations.getTimes") }}',
|
|
|
|
params: { 'machine_id': machine_id, 'datetext': dateText }
|
|
|
|
})
|
|
|
|
.then(function (response) {
|
|
|
|
var data = response.data;
|
|
|
|
|
|
|
|
//Fill events (times) and remove unavailable_times
|
2020-09-02 10:20:49 +00:00
|
|
|
fillTimes(data["unavailable_times"], dateText, momentDate);
|
2020-08-18 20:47:39 +00:00
|
|
|
});
|
|
|
|
});
|
2020-07-28 13:13:33 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Adds a "0" in front of values below 10
|
2020-07-28 13:13:33 +00:00
|
|
|
function prependZero(value) {
|
|
|
|
if(value < 10)
|
|
|
|
return "0" + value;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//The offset from the current week
|
2020-07-28 13:13:33 +00:00
|
|
|
let weekOffset = 0;
|
2020-08-31 06:16:26 +00:00
|
|
|
var styleElem = document.head.appendChild(document.createElement("style"));
|
|
|
|
styleElem.innerHTML = "#week-previous:before {color: unset;}";
|
2020-07-28 13:13:33 +00:00
|
|
|
|
2020-08-18 20:47:39 +00:00
|
|
|
//Generate calender and set onclick function on the week changing arrows
|
2020-07-28 13:13:33 +00:00
|
|
|
if(document.getElementById("calendar")) {
|
|
|
|
generateCalendar();
|
|
|
|
|
|
|
|
document.getElementById("week-previous").onclick = function () {
|
2020-08-11 16:21:51 +00:00
|
|
|
if(weekOffset > 0)
|
|
|
|
{
|
|
|
|
weekOffset--;
|
2020-08-31 06:16:26 +00:00
|
|
|
if(weekOffset == 0){
|
|
|
|
styleElem.innerHTML = "#week-previous:before {color: unset;}";
|
|
|
|
}
|
2020-08-11 16:21:51 +00:00
|
|
|
generateCalendar(weekOffset);
|
|
|
|
}
|
2020-07-28 13:13:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
document.getElementById("week-next").onclick = function () {
|
2020-08-31 06:16:26 +00:00
|
|
|
if(weekOffset == 0)
|
|
|
|
{
|
|
|
|
styleElem.innerHTML = "#week-previous:before {color: black;}";
|
|
|
|
}
|
2020-07-28 13:13:33 +00:00
|
|
|
weekOffset++;
|
|
|
|
generateCalendar(weekOffset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
@endsection
|