Skip to content

feat(analytics): #34397 remove today/yesterday from filters, enforce 7-day minimum on custom ranges#34790

Open
oidacra wants to merge 279 commits intomainfrom
issue-34397-update-date-filter-options-in-analytics-dashboard
Open

feat(analytics): #34397 remove today/yesterday from filters, enforce 7-day minimum on custom ranges#34790
oidacra wants to merge 279 commits intomainfrom
issue-34397-update-date-filter-options-in-analytics-dashboard

Conversation

@oidacra
Copy link
Member

@oidacra oidacra commented Feb 26, 2026

Proposed Changes

  • Removed today and yesterday options from TIME_PERIOD_OPTIONS in analytics filter constants
  • Updated isValidCustomDateRange utility to enforce a minimum of 7 calendar days using differenceInCalendarDays >= 6
  • Updated utility tests to reflect the new 7-day minimum boundary behavior
  • Updated component tests to assert today/yesterday are absent and added 6-day/7-day boundary edge-case tests

Checklist

  • Tests added/updated
  • Translations required
  • Security implications considered

Additional Info

Closes #34397

Implementation Notes

The custom date range validator now uses date-fns differenceInCalendarDays instead of isBefore/isSameDay. The threshold is >= 6 because day0 to day6 inclusive equals 7 calendar days. Reversed and same-day ranges return false naturally (negative or 0 difference).

Base branch: issue-33882-primeng-update (PrimeNG v19 migration branch — this analytics feature depends on it).

fmontes and others added 30 commits December 11, 2025 16:27
…n logic

- Introduced a Set to track loaded pages, preventing redundant data fetching.
- Updated content type addition logic to ensure uniqueness based on the variable property and maintain sorted order.
- Improved pagination checks to optimize loading behavior and avoid unnecessary API calls.
…d-elements (#34076)

# Migrate Stencil from v2 to v4 and Fix Build Errors

## Overview

This PR migrates Stencil from version 2.22.2 to 4.39.0 to resolve
critical build errors and fixes TypeScript compilation issues that were
introduced after the Angular 21 migration.

## Problem Statement

After the Angular 21 migration, the Stencil build was failing with:
1. **Runtime Error**: `TypeError: Cannot read properties of null
(reading 'newLine')` at `getNewLineCharacter` - This was a bug in
Stencil 2.x that prevented builds from completing
2. **TypeScript Compilation Errors**: 
   - `Cannot find module 'primeng/api'`
   - `Cannot find module '@angular/common/http'`
- These errors occurred because Stencil builds couldn't resolve types
from Angular/PrimeNG dependencies

## Solution

### 1. Stencil Migration (v2 → v4)

**Upgraded Dependencies:**
- `@stencil/core`: `^2.22.2` → `^4.39.0`
- `@stencil/sass`: `^2.0.3` → `^3.2.3`
- `@nxext/stencil`: `20.1.0` → `21.0.0`

**Configuration Updates:**
- Removed deprecated configuration options
- Fixed duplicate `outputTargets` in
`dotcms-field-elements/stencil.config.ts`
- Verified no deprecated `@Prop` context/connect usage (none found)

**Migration References:**
- [Stencil 4 Migration
Guide](https://stenciljs.com/docs/introduction/upgrading-to-stencil-four)
- [Stencil 2 Breaking
Changes](https://github.com/stenciljs/core/blob/main/BREAKING_CHANGES.md#stencil-two)
- [Stencil 3 Breaking
Changes](https://github.com/stenciljs/core/blob/main/BREAKING_CHANGES.md#stencil-v300)

### 2. Type Declaration Stubs

Created type declaration stubs (`stencil-types.d.ts`) for both Stencil
projects to provide TypeScript type information for external
dependencies that aren't available during the Stencil build:

- **`@angular/common/http`**: Stub declarations for `HttpClient`,
`HttpRequest`, `HttpResponse`, `HttpErrorResponse`, `HttpEvent`,
`HttpEventType`, `HttpParams`, `HttpHeaders`
- **`primeng/api`**: Stub declarations for `MenuItem`,
`MenuItemCommandEvent`, `SelectItem`

**Why This Approach?**
- Web components should be framework-agnostic and not bundle
Angular/PrimeNG code
- These dependencies are only needed for type checking, not runtime
- Stencil builds web components independently, and these external
dependencies shouldn't be included in the final bundle
- This is a standard TypeScript pattern using `declare module`

**Files Created:**
- `libs/dotcms-webcomponents/stencil-types.d.ts`
- `libs/dotcms-field-elements/stencil-types.d.ts`

### 3. TypeScript Configuration Updates

**Updated `tsconfig.json` files:**
- Added `skipLibCheck: true` to ignore type errors in declaration files
- Excluded e2e test files (`**/*.e2e.ts`, `**/*.e2e.tsx`) from builds
- Updated `include` paths to reference type declaration files
- Added `types: ["node"]` for proper type resolution

**Files Modified:**
- `libs/dotcms-webcomponents/tsconfig.json`
- `libs/dotcms-field-elements/tsconfig.json`

### 4. Type-Only Imports

Converted regular imports to `import type` for type-only usage to
prevent runtime dependencies:

**Files Modified:**
- `libs/dotcms-models/src/lib/dot-action-menu-item.model.ts`
- `libs/dotcms-models/src/lib/dot-apps.model.ts`
- `libs/dotcms-models/src/lib/dot-experiments.model.ts`
- `libs/dotcms-js/src/lib/core/util/http-response-util.ts`
- `libs/dotcms-js/src/lib/core/login.service.ts`

### 5. Babel Runtime Module Resolution

**Problem**: Build was failing with `Module not found: Error: Can't
resolve '@babel/runtime/helpers/esm/asyncToGenerator.js'` because the
build system was looking for `@babel/runtime` in a nested location.

**Solution**:
- Added `@babel/runtime@^7.28.4` as a direct dependency
- Added npm `overrides` to ensure proper module hoisting:
  ```json
  "overrides": {
      "@babel/runtime": "^7.28.4"
  }
  ```

### 6. Additional Fixes

**MCP Server Module Resolution:**
- Fixed ESM subpath imports by adding `.js` extensions:
- `@modelcontextprotocol/sdk/server/mcp` →
`@modelcontextprotocol/sdk/server/mcp.js`
- `@modelcontextprotocol/sdk/shared/protocol` →
`@modelcontextprotocol/sdk/shared/protocol.js`
- `@modelcontextprotocol/sdk/types` →
`@modelcontextprotocol/sdk/types.js`

**SCSS @extend Issues:**
- Added `!optional` flag to `@extend #form-field-disabled` in
`_autocomplete.scss`
- Added `@use "common";` at the top of `form/index.scss` to ensure
proper import order

**Type Definitions:**
- Added `@types/minimatch@^5.1.2` for Stencil build compatibility

## Testing

✅ **All builds now succeed:**
- `nx run dotcms-webcomponents:build` - ✅ Success
- `nx run dotcms-field-elements:build` - ✅ Success (with type stubs)
- `nx run dotcdn:build` - ✅ Success
- `nx run mcp-server:build:production` - ✅ Success
- `nx run sdk-angular:build:production` - ✅ Success

## Breaking Changes

None. This is a bug fix and migration that maintains backward
compatibility.

## Migration Notes

- The type declaration stubs are minimal and only include the types
actually used
- If new Angular/PrimeNG types are needed in the future, they should be
added to the stubs
- The Stencil 4 migration follows official migration guides and
maintains all existing functionality

## Related Issues

- Resolves Stencil runtime error: `TypeError: Cannot read properties of
null (reading 'newLine')`
- Resolves TypeScript compilation errors for `primeng/api` and
`@angular/common/http`
- Resolves Babel runtime module resolution issues
- Resolves MCP server module resolution issues

This PR fixes: #33882
…nent with improved prop binding and lazy loading validation
…ontrol for enhanced form handling in unit tests
…izing indentation and formatting for better readability
…omponent properties and methods to improve code clarity and maintainability
…d virtual scroller initialization for improved user experience
…ze and minHeight properties for better layout control
…d user experience and enhance dropdown options management
…nsive scenarios including lazy loading, filtering, and pinned option functionality
… for improved consistency and functionality across the application
hmoreras and others added 21 commits February 24, 2026 12:34
…ngular)

Align with other libs to avoid ts-jest emitDecoratorMetadata warning.

Co-authored-by: Cursor <cursoragent@cursor.com>
Convert DotConvertToBlockInfoComponent and DotConvertWysiwygToBlockComponent
to standalone so their input() bindings (currentFieldType, currentField) are
correctly recognized by the template compiler in all build contexts (CI/AOT).

- Set standalone: true and add required imports (CommonModule, PrimeNG,
  DotMessagePipe, FormsModule where needed) in both components.
- Move both components from DotContentTypesEditModule declarations to
  imports.
- Update content-type-fields-drop-zone and component specs to import the
  standalone components instead of declaring them.

Co-authored-by: Cursor <cursoragent@cursor.com>
…4773)

## Summary
- Remove the confirmation dialog that appeared before archiving content
on the Content Drive
- The archive action now executes immediately without requiring user
confirmation


https://github.com/user-attachments/assets/817c8716-fdfc-4443-98d2-ebb10efc5dd6




## Test plan
- [ ] Verify archiving content on the Content Drive no longer shows a
confirmation dialog
- [ ] Verify the archive action executes correctly without the dialog
- [ ] Verify no regression in other archive-related actions

Closes #34772

🤖 Generated with [Claude Code](https://claude.com/claude-code)
… visual issues (#34758)

## Summary

Enhance the analytics engagement dashboard with dual-period sparkline
comparison, improved chart interactions, and UI refinements across
engagement and pageview reports.


https://github.com/user-attachments/assets/c46c97ea-7a20-4d7f-a6a0-d8916f1de2ba


## Changes Made

### Frontend - Engagement Sparkline (Current vs Previous Period)

- Refactored `DotAnalyticsSparklineComponent` to accept an array of
`SparklineDataset` objects instead of a single data series, enabling
multi-line sparkline comparison
- Added `SparklineDataset` interface with `label`, `data`, `color`,
`dashed`, `borderWidth`, and `fillOpacity` properties for per-dataset
customization
- Updated `with-engagement.feature.ts` store to fetch both current and
previous period data using `forkJoin` and `getPreviousPeriod()`, mapping
results to `EngagementSparklineData`
- Added `EngagementSparklineData` interface to `engagement.types.ts` to
hold current and previous sparkline data

### Frontend - Chart Interactions & Plugins

- Created `sparkline-crosshair.plugin.ts` - a Chart.js plugin that draws
a vertical crosshair line and custom hover points at the active index,
bypassing Chart.js internal clipping at chart edges
- Implemented custom floating tooltip positioned to the left/right of
the hovered point (avoids obstructing chart data), with date and
multi-dataset value display
- Updated `gradient-fill.plugin.ts` to apply gradient fills to ALL
filled datasets (not just the first), using each dataset's `borderColor`
and optional `_fillOpacity` multiplier

### Frontend - Engagement Platforms Table

- Removed language tab/data from the platforms table component
(`PlatformsData`, template, store query, utils, specs) - only Device and
Browser remain
- Cleaned up `toEngagementPlatforms()` and
`getEmptyEngagementPlatforms()` utilities

### Frontend - Top Performing Pages Table

- Replaced virtual scroll with PrimeNG native pagination
(`[paginator]="true"`, 10 rows per page, no rows-per-page selector)
- Removed `p-card` wrapper - table renders directly for a cleaner layout
- Changed Pageviews column alignment from `center` to `right`
- Removed `p-datatable-sm` class for better row height
- Centered pie chart vertically when table is taller (`justify-center`
on flex container)

### Backend - ClickHouse Schema

- Updated ClickHouse materialized view refresh intervals to 30 seconds
for local development (was 15 minutes)
- Added `DEPENDS ON` clauses between downstream MVs and
`session_facts_rmv` for correct refresh ordering
- Switched `utc_time` from `DateTime` to `DateTime64(3,'UTC')` for
millisecond precision
- Fixed timezone handling: `toDate(session_start)` ->
`toDate(session_start, 'UTC')`
- Renamed `contextSiteId` dimension to `siteId` across all Cube.js
schemas for consistency
- Added sparkline documentation to `EngagementDaily.js` Cube schema
explaining why `conversionRate` should be used instead of
`engagementRate` for day-level trends

### i18n

- Added `analytics.engagement.sparkline.period-current` and
`analytics.engagement.sparkline.period-previous` translation keys to
`Language.properties`

### Event Generator

- Fixed session-mixing bug: events are now sent per-session with their
own context (was buffering across sessions, inflating engagement rates
to 100%)
- Added `User-Agent` HTTP header passthrough so device profiles
(Desktop/Mobile/Tablet) are correctly classified by the backend UA
parser

## Technical Details

The sparkline now shows two lines: current period (blue, 2px, gradient
fill) and previous period (gray, 1px, subtle gradient with `fillOpacity:
0.35`). The gradient fill plugin was generalized to iterate all datasets
with `fill: true`, reading each dataset's `borderColor` for the gradient
color and an optional `_fillOpacity` custom property as an opacity
multiplier.

Native Chart.js hover points are disabled (`hoverRadius: 0`) because
they get clipped at chart edges. Instead, the crosshair plugin draws
custom hover circles using `ctx.arc()` in the `afterDraw` hook, which
renders outside the chart area clipping boundary.

## Breaking Changes

- `PlatformsData` interface no longer includes `language` property
- `SparklineDataset[]` input replaces the previous single-series `data`
input on `DotAnalyticsSparklineComponent`
- `TABLE_CONFIG` no longer includes `VIRTUAL_SCROLL_ITEM_SIZE` or
`SCROLL_HEIGHT`

## Testing

- [x] Unit tests updated for sparkline component (multi-dataset,
crosshair plugin, tooltip)
- [x] Unit tests updated for platforms table (2 tabs instead of 3)
- [x] Unit tests updated for top pages table (pagination, no CardModule)
- [x] Unit tests updated for engagement report component (new sparkline
data structure)

## Related Issues

Closes #34353
@semgrep-code-dotcms-test
Copy link

Legal Risk

The following dependencies were released under a license that
has been flagged by your organization for consideration.

Recommendation

While merging is not directly blocked, it's best to pause and consider what it means to use this license before continuing. If you are unsure, reach out to your security team or Semgrep admin to address this issue.

MPL-2.0

@oidacra oidacra marked this pull request as ready for review February 26, 2026 23:46
@oidacra oidacra self-assigned this Feb 26, 2026
Base automatically changed from issue-33882-primeng-update to main February 27, 2026 23:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: No status

Development

Successfully merging this pull request may close these issues.

8 participants