Add reactive calendar
This commit is contained in:
2498
package-lock.json
generated
2498
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -14,8 +14,11 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"pinia": "^3.0.1",
|
||||
"vite-plugin-svgr": "^4.3.0",
|
||||
"vite-svg-loader": "^5.1.0",
|
||||
"vue": "^3.5.13",
|
||||
"vue-router": "^4.5.0"
|
||||
"vue-router": "^4.5.0",
|
||||
"vue-svg-loader": "^0.16.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tsconfig/node22": "^22.0.0",
|
||||
|
||||
3
src/assets/arrow-left.svg
Normal file
3
src/assets/arrow-left.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
|
||||
<path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 251 B |
3
src/assets/arrow-right.svg
Normal file
3
src/assets/arrow-right.svg
Normal file
@@ -0,0 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512">
|
||||
<path d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 254 B |
@@ -15,4 +15,5 @@
|
||||
text-decoration: none;
|
||||
font-family: 'Afacad Flux', sans-serif;
|
||||
transition: 0.3s all;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@@ -1,25 +1,133 @@
|
||||
<script setup lang="ts">
|
||||
import ArrowRight from "@/assets/arrow-right.svg"
|
||||
import ArrowLeft from "@/assets/arrow-left.svg";
|
||||
|
||||
const months =
|
||||
[{"January":31},
|
||||
{"February":28},
|
||||
{"March":31},
|
||||
{"April":30},
|
||||
{"May":31},
|
||||
{"June":30},
|
||||
{"July":31},
|
||||
{"August":31},
|
||||
{"September":30},
|
||||
{"October":31},
|
||||
{"November":30},
|
||||
{"December":31}];
|
||||
import {ref, onMounted} from "vue";
|
||||
import {Calendar} from "@/models/Calendar.ts";
|
||||
|
||||
const calendar = new Calendar();
|
||||
|
||||
const monthYear = ref("");
|
||||
const dates = ref([]);
|
||||
|
||||
onMounted(() => {
|
||||
setupCalendar();
|
||||
})
|
||||
|
||||
function clickPrev(){
|
||||
dates.value = calendar.datesOfPrevMonth();
|
||||
updateMonth();
|
||||
}
|
||||
|
||||
function clickNext(){
|
||||
dates.value = calendar.datesOfNextMonth();
|
||||
updateMonth();
|
||||
}
|
||||
|
||||
function setupCalendar(){
|
||||
dates.value = calendar.datesOfToday();
|
||||
updateMonth();
|
||||
}
|
||||
|
||||
function updateMonth(){
|
||||
monthYear.value = calendar.getDate();
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<h1>Calendar</h1>
|
||||
<div class="calendar-container">
|
||||
<div class="month-picker">
|
||||
<div>{{ monthYear }}</div>
|
||||
<div class="arrows">
|
||||
<div @click="clickPrev" class="prevMonth"><ArrowLeft class="arrow-left" /></div>
|
||||
<div @click="clickNext" class="nextMonth"><ArrowRight class="arrow-right" /></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="day-names">
|
||||
<div>M</div>
|
||||
<div>T</div>
|
||||
<div>W</div>
|
||||
<div>T</div>
|
||||
<div>F</div>
|
||||
<div>S</div>
|
||||
<div>S</div>
|
||||
</div>
|
||||
|
||||
<div class="day-picker">
|
||||
<div v-for="day in dates" :key="day" :class="{'item': day !== null}">
|
||||
{{ day }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.calendar-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
border: solid 2px;
|
||||
border-radius: var(--radius);
|
||||
padding: 0 20px 20px 20px;
|
||||
}
|
||||
|
||||
.month-picker, .day-picker, .day-names {
|
||||
justify-items: center;
|
||||
}
|
||||
|
||||
.month-picker {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
border-bottom:solid 1px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.arrows {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.arrow-left, .arrow-right {
|
||||
width: 30px;
|
||||
border-radius: var(--radius);
|
||||
padding: 5px 7px 5px 7px;
|
||||
}
|
||||
|
||||
.arrow-left:hover, .arrow-right:hover {
|
||||
transform: scale(1.2);
|
||||
background-color: rgb(239,239,239);
|
||||
}
|
||||
|
||||
.day-picker, .day-names {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 2fr);
|
||||
row-gap: 20px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.day-names {
|
||||
padding: 20px 0 20px 0;
|
||||
}
|
||||
|
||||
.item
|
||||
{
|
||||
text-align: center;
|
||||
width: 90%;
|
||||
min-width: 30px;
|
||||
height: 100%;
|
||||
border: solid 1px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.item:hover
|
||||
{
|
||||
transform: scale(1.1);
|
||||
background-color: var(--secondary-color);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
@@ -60,7 +60,7 @@ nav p {
|
||||
::v-deep(nav .button) {
|
||||
font-size: calc(var(--font-size) * 0.8);
|
||||
background-color: var(--header-color);
|
||||
border: solid 2px ;
|
||||
border: solid 2px;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
|
||||
70
src/models/Calendar.ts
Normal file
70
src/models/Calendar.ts
Normal file
@@ -0,0 +1,70 @@
|
||||
export class Calendar {
|
||||
|
||||
private year : number;
|
||||
private month : number;
|
||||
private monthsName : string[] = [
|
||||
"January",
|
||||
"February",
|
||||
"March",
|
||||
"April",
|
||||
"May",
|
||||
"June",
|
||||
"July",
|
||||
"August",
|
||||
"September",
|
||||
"October",
|
||||
"November",
|
||||
"December"
|
||||
];
|
||||
|
||||
public constructor() {
|
||||
let date = new Date();
|
||||
this.year = date.getFullYear();
|
||||
this.month = date.getMonth();
|
||||
}
|
||||
|
||||
public getDate(){
|
||||
return this.monthsName[this.month] + " " + this.year;
|
||||
}
|
||||
|
||||
public datesOfToday(){
|
||||
return this.datesOf();
|
||||
}
|
||||
|
||||
public datesOfNextMonth(){
|
||||
|
||||
if(this.month+1 > 11){
|
||||
this.year += 1;
|
||||
this.month = 0;
|
||||
} else {
|
||||
this.month++;
|
||||
}
|
||||
|
||||
return this.datesOf();
|
||||
}
|
||||
|
||||
public datesOfPrevMonth(){
|
||||
if(this.month-1 < 0){
|
||||
this.year -= 1;
|
||||
this.month = 11;
|
||||
} else {
|
||||
this.month--;
|
||||
}
|
||||
return this.datesOf();
|
||||
}
|
||||
|
||||
private datesOf() {
|
||||
let dates = [];
|
||||
let daysInMonth = new Date(this.year, this.month+1, 0).getDate();
|
||||
let firstDayOfMonth = (new Date(this.year, this.month, 1).getDay() + 6) % 7; // Adjust to start from Monday
|
||||
|
||||
for (let i = 0; i < firstDayOfMonth; i++) {
|
||||
dates.push(null);
|
||||
}
|
||||
|
||||
for (let day = 1; day <= daysInMonth; day++) {
|
||||
dates.push(day);
|
||||
}
|
||||
return dates;
|
||||
}
|
||||
}
|
||||
@@ -5,12 +5,32 @@ import TextBlock from "@/components/TextBlock.vue";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<TextBlock>
|
||||
<h1>Create an event</h1>
|
||||
</TextBlock>
|
||||
<Calendar />
|
||||
<div class="container">
|
||||
<TextBlock class="text-block">
|
||||
<h1>Create an <span class="colored-text">event</span></h1>
|
||||
</TextBlock>
|
||||
<Calendar class="calendar" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
.container
|
||||
{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
width: 80%;
|
||||
gap: 10vw;
|
||||
}
|
||||
|
||||
.text-block
|
||||
{
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.calendar
|
||||
{
|
||||
width: 45%;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
@@ -4,6 +4,7 @@ import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||||
import vueDevTools from 'vite-plugin-vue-devtools'
|
||||
import svgLoader from 'vite-svg-loader';
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
@@ -11,6 +12,7 @@ export default defineConfig({
|
||||
vue(),
|
||||
vueJsx(),
|
||||
vueDevTools(),
|
||||
svgLoader()
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
|
||||
Reference in New Issue
Block a user