Exposed Filters params cause invaild date on load

Created on 18 March 2025, 17 days ago

Problem/Motivation

When the FullCalendar block was loaded with URL parameters (like view filters), but without a valid date parameter, the calendar would incorrectly default to December 1969 (near Unix epoch 0) instead of the current date.

When processing URL parameters, the code attempted to create a date from the startParam value even when it was present but empty or invalid. This resulted in an invalid Date object that, when converted to a timestamp, was interpreted as December 1969.

Steps to reproduce

1. Have a full calendar view with exposed filters see https://www.drupal.org/project/fullcalendar_block/issues/3394725#comment... ๐Ÿ’ฌ Support for exposed filters? Active

2. When exposed filters added like /calendar/month?field_event_collection_target_id=96 see how initial display shows Decemeber 1969

Proposed resolution

Proper validation before attempting to create a Date object:

Checks if the startParam value exists in the URL
Verifies the value is not empty after trimming
Only then attempts to parse it as a date
Only sets initialDate if a valid date was created

Remaining tasks

User interface changes

API changes

Data model changes

๐Ÿ› Bug report
Status

Active

Version

1.1

Component

Code

Created by

๐Ÿ‡บ๐Ÿ‡ธUnited States NicholasS

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @NicholasS
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States NicholasS


    After this change if no start date in query param it does not default back to Dec 1969

  • Pipeline finished with Success
    17 days ago
    Total: 154s
    #451096
  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia mingsong ๐Ÿ‡ฆ๐Ÿ‡บ

    without a valid date parameter

    First of all, any issue caused by an invalid parameter is not a bug.

    Secondly, the Initial date parameter is optional, which mean if the client don't want to change the default initial date, which is the current day, no need to have the parameter in the URL. If the client does want to change the default initial date, then a valid date must be provided. If an unexpected initial date presented, please check the URL that you are visiting.

    After all, this module doesn't provide any Drupal view. The view mentioned in the description of this issue is an example attached to the tutorial article.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia mingsong ๐Ÿ‡ฆ๐Ÿ‡บ
  • ๐Ÿ‡บ๐Ÿ‡ธUnited States fallenturtle

    I have the same situation as @nicholass. It doesn't make sense from a UI perspective to have an exposed start date field for a calendar display like this since we are relying on FullCalendar to provide the calendar navigation.

    Is the best solution to add the exposed start date filter to the filters on the Page display and then hide it with CSS? I suppose the alternative would be to add a hook or something that will add &start= to the end of the URL parameters when ever the filter is applied.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia mingsong ๐Ÿ‡ฆ๐Ÿ‡บ

    I think there is a misunderstanding here.

    The โ€œstartโ€ parameter sent to the data source endpoint by the FullCalendar.js is the beginning of the date range of the dataset required by the FullCalendar.js. For example,when switching weeks or months, the FullCalendar.js will send out a HTTP request to the data source endpoint with the start date of that week, in your case, it is a request to the Drupal view built by you, not this module. This module has nothing to do with any Drupal view.

    The โ€œstartโ€ parameter in the URL to where the calendar block is placed is actually the โ€œinitial dateโ€ when the calendar should display at the beginning. Which is optional custom parameter.

    Again, this module does not include any Drupal view, that is saying no patch to this module can help you to solve the problem with the view created by you.

  • ๐Ÿ‡ฆ๐Ÿ‡บAustralia mingsong ๐Ÿ‡ฆ๐Ÿ‡บ

    If you are using a Drupal view to provide the data to the calendar, I think you might want to try other module,

    For example, https://www.drupal.org/project/fullcalendar โ†’

    Which is straightforward and simpler.

Production build 0.71.5 2024