Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calendar component - Calculate and rendering calendar date elements #822

Closed
wants to merge 3 commits into from

Conversation

dilandoogan
Copy link
Collaborator

It calculates days in the selected year and month and shows in calendar

import style from "./bl-calendar.css";
import { TCalendarTypes, TMonth } from "./bl-calendar.types";

@customElement("bl-calendar")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add JSDoc to improve documentation?

return [style];
}
render() {
this.getWeekDayOfDate();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this here?

Comment on lines +71 to +78
${Array.from(calendarDays).map(([key, value]) => {
return html`<div class="calendar-column">
<div class="weekday-text calendar-cell">${DAYS[key]}</div>
${value.map(day => {
return html` <div class="day-text calendar-cell">${day}</div>`;
})}
</div>`;
})}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we split it to 2 variables and move out of html tags here?

let dayOfTheWeek = 0;
let iteratedDay = 1;

for (; i < this.getDayNumInAMonth() + this.getWeekDayOfDate(); i += 1) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if we shall place i before the first semicolon here, maybe ensure if it's working fine.

@@ -0,0 +1,3 @@
export type TCalendarTypes = "single" | "multiple" | "range";
export type TMonth = { value: number; name: string };
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we define strictly what values are valid here? Like value: 1 | 2, and name: "January" etc.

@@ -0,0 +1,3 @@
export type TCalendarTypes = "single" | "multiple" | "range";
export type TMonth = { value: number; name: string };
export type TCalendarMonths = TMonth[];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can use TMonth[] at constants/MONTHS instead, if we are not using it anywhere else directly.

@@ -33,5 +33,6 @@ <h1>Baklava Playground</h1>
</p>

<bl-button>Baklava is ready</bl-button>
<bl-calendar></bl-calendar>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should keep the playground template clean

@@ -0,0 +1,18 @@
import { TCalendarMonths } from "./bl-calendar.types";
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of using "T," we should use more meaningful names like "Months". It's already imported from types, so we don't need to add "calendar", "types" or anything else.

{ name: "December", value: 11 },
];

export const DAYS = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"];
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding types for days as well would be a good idea

static get styles(): CSSResultGroup {
return [style];
}
render() {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
render() {
render(): TemplateResult {

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additionally, moving the render method to the bottom of the code would increase readability


createCalendarDays() {
const monthlyCalendar: Map<number, (number | string)[]> = new Map();
let i = 0;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using meaningful variable names is preferable to using "i"

this.month = MONTHS[monthIndex];
}

setYear(year: number) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We don't need this setter function imho

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why? do you suggest to set like this.year= this.year-1 in where it is used ?

@property({ type: Array })
disabledDates?: Date | Date[];

@state()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Defining states with "_" like "_day" is the most common practice in Lit

}

setPreviousMonth() {
if (this.month.value === 0) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can use our MONTHS constant instead of numbers. It would be more readable

} else this.setMonth(this.month.value - 1);
}
setNextMonth() {
if (this.month.value === 11) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here too

></bl-button>
</div>
<div class="weekdays">
${Array.from(calendarDays).map(([key, value]) => {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why would we need the Array prototype in this context?

@erbilnas
Copy link
Collaborator

erbilnas commented Apr 3, 2024

type: TCalendarTypes = "single";

@property()
minDate?: Date | string;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should add descriptions for properties like below:

/**
*Sets the minimum date value for the calendar
*/
@property()
minDate?: Date | string;

Comment on lines +29 to +30
@property({ type: Array })
disabledDates?: Date | Date[];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do we need to describe attribute @property({ type: Array , attribute: "disabled-dates"}) ?

Comment on lines +71 to +78
${Array.from(calendarDays).map(([key, value]) => {
return html`<div class="calendar-column">
<div class="weekday-text calendar-cell">${DAYS[key]}</div>
${value.map(day => {
return html` <div class="day-text calendar-cell">${day}</div>`;
})}
</div>`;
})}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we can call this part from helper function

@Enes5519 Enes5519 force-pushed the calendar-component branch from e4dc2d0 to 3164c27 Compare April 4, 2024 12:30
@dilandoogan dilandoogan closed this Apr 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants