-
Notifications
You must be signed in to change notification settings - Fork 123
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
Conversation
import style from "./bl-calendar.css"; | ||
import { TCalendarTypes, TMonth } from "./bl-calendar.types"; | ||
|
||
@customElement("bl-calendar") |
There was a problem hiding this comment.
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(); |
There was a problem hiding this comment.
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?
${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>`; | ||
})} |
There was a problem hiding this comment.
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) { |
There was a problem hiding this comment.
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 }; |
There was a problem hiding this comment.
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[]; |
There was a problem hiding this comment.
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> |
There was a problem hiding this comment.
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"; |
There was a problem hiding this comment.
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"]; |
There was a problem hiding this comment.
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() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
render() { | |
render(): TemplateResult { |
There was a problem hiding this comment.
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; |
There was a problem hiding this comment.
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) { |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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() |
There was a problem hiding this comment.
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) { |
There was a problem hiding this comment.
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) { |
There was a problem hiding this comment.
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]) => { |
There was a problem hiding this comment.
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?
Also, please be mindful of our commit rules: https://baklava.design/?path=/docs/documentation-contributing-baklava-commit-rules--documentation |
type: TCalendarTypes = "single"; | ||
|
||
@property() | ||
minDate?: Date | string; |
There was a problem hiding this comment.
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;
@property({ type: Array }) | ||
disabledDates?: Date | Date[]; |
There was a problem hiding this comment.
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"})
?
${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>`; | ||
})} |
There was a problem hiding this comment.
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
e4dc2d0
to
3164c27
Compare
It calculates days in the selected year and month and shows in calendar