-
Notifications
You must be signed in to change notification settings - Fork 191
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
feat(calendar): multiple selection mode #652
Conversation
* autoClose only in single mode * truncate formattedDate
@ashley-hunter since you created the calendar component, do you mind reviewing the changes? What do you think remains to support DateRange (e.g. |
Hey! Nice work! Sure I will take a look this evening!
Well it depends, we could have everything as one component, or we could introduce a date range component (that uses many of the existing brain directives under the hood. There are a few things to consider. Having the value as an object has a few disadvantages, notably with how change detection works, for example I can't just do There is also the added challenge of having a single event for value changes - it doesn't make it obvious whether it was the from date or to date that actually changed. While having separate inputs and outputs for both start and end has benefits, when integrating with Angular forms, that only expects a single value, so an object would have to be used in this case - which I guess is ok. Having everything as a single component may start to get complicated, we would support a single date, an array of dates and an object of dates - this could end up with a lot of conditions determining the correct format to read and handle. We also have the disadvantage of not having great type inference in Angular components based off inputs, what I mean by that is in React we can easily type components so that if So I guess, personally I lean towards a separate |
Thank you. Let me know if
Perhaps, it makes sense what you described to introduce a
Yes, that would be quite useful to infer the correct type based on the mode input value.
I agree, adding
|
Well I guess if we are going to split out the date range picker into a separate component then perhaps this too might make sense? We would get better typing which would be nice. It might lay the foundations for the date range picker nicely.
Yes, I suspect we would need to introduce a brn-date-range too, again for the reasons mentioned, but I suspect most of the other brain date picker components would remain the same, just perhaps with a few minor changes. If we make all the date picker components (brn-date-picker, brn-date-range-picker etc) implement a common interface and they register themselves using a token then the child brain components will work with any implementation.
Yes, this was another reason why having a separate component would be nice, we aren't tied to just the same structure, we can add this second calendar too! |
Hey guys, sorry for jumping into that topic. I'm not so deep into that topic as you. It would be awesome if we could get a behavior like Angular Material e.g. for the date-range picker: and for the single select: We are using a lot of forms in Angular for all our applications. The current behavior is @ashley-hunter and @marcjulian, what do you think about that? |
closing in favor of #653 |
PR Checklist
Please check if your PR fulfills the following requirements:
guidelines: https://github.com/goetzrobin/spartan/blob/main/CONTRIBUTING.md#-commit-message-guidelines
PR Type
What kind of change does this PR introduce?
Which package are you modifying?
What is the current behavior?
Calendar selection mode
What is the new behavior?
Calendar selection mode
single
|multiple
Date Picker
single
| 'multiple'single
Does this PR introduce a breaking change?
Other information