Skip to content

33779 daisyui custom fields#34822

Draft
nicobytes wants to merge 280 commits intomainfrom
33779-daisyui-custom-fields
Draft

33779 daisyui custom fields#34822
nicobytes wants to merge 280 commits intomainfrom
33779-daisyui-custom-fields

Conversation

@nicobytes
Copy link
Contributor

Proposed Changes

  • change 1
  • change 2

Checklist

  • Tests
  • Translations
  • Security Implications Contemplated (add notes if applicable)

Additional Info

** any additional useful context or info **

Screenshots

Original Updated
** original screenshot ** ** updated screenshot **

fmontes and others added 30 commits December 11, 2025 16:39
…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
…nput bindings and adding output emission tests for improved coverage
hmoreras and others added 26 commits February 24, 2026 12:21
…lización del GlobalStore

- Tags: el store de dot-tags reacciona a globalStore.currentSiteId() en un
  effect; al cambiar el site en el toolbar se vuelve a ejecutar loadTags() y
  se actualiza la lista.
- Toolbar: tras switchSite(identifier) se encadena getCurrentSite() y con ese
  resultado se llama a setCurrentSite(site). El API /api/v1/site/switch/{id}
  solo devuelve { hostSwitched: true }, no el site; así el GlobalStore recibe
  siempre un DotSite válido con identifier.
- Tests toolbar: mock de GlobalStore, switchSite devuelve { hostSwitched: true },
  aserciones de getCurrentSite y setCurrentSite, nuevo test del flujo completo.
- Tests tags store: mockProvider(GlobalStore) para que los tests pasen.
- UI: en el barrel de @dotcms/ui se exporta DotSiteComponent con export nombrado
  (export { DotSiteComponent }) para que el compilador AOT resuelva estáticamente
  el import en el decorator del toolbar.

Co-authored-by: Cursor <cursoragent@cursor.com>
- Remove emitDecoratorMetadata from tsconfig.base.json to fix ts-jest
  isolatedModules warning (Angular does not require it)
- Suppress JSDOM 'Not implemented: navigation' in edit-ema and dotcms-ui
  test-setup to avoid console errors when tests trigger location.reload
- Patch Location.prototype reload/assign/replace in edit-ema test-setup
  so iframe contentWindow.location uses no-ops in tests

Co-authored-by: Cursor <cursoragent@cursor.com>
…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
…es (#34784)

## Summary
- Replace Angular `@slideAnimation` trigger with CSS-based
`animate.enter`/`animate.leave` attributes to remove the deprecated
`@angular/animations` dependency from the toolbar component
- Change toolbar tree-toggler visibility from conditional rendering
(`@if`) to CSS-based show/hide (opacity/visibility/width) so the toggle
button animates smoothly instead of popping in/out
- Fix folder list view loading skeleton: extract `loadingRow` into a
reusable `<ng-template>` and show it inside `emptymessage` during
loading so rows appear correctly on initial load and page changes
- Update `$loadingRows` signal to track the current page size and emit
correctly sized skeleton row arrays on pagination
- Fix optional chaining on `$dialog` signal calls in the shell component
to prevent null-access errors
- Fix `$folder` input type from `null` default to `undefined` (aligns
with Angular signal input best practices)
- Fix typing errors and update tests to match new DOM structure (toggler
now always rendered, assertions check styles rather than element
presence)


https://github.com/user-attachments/assets/411e025f-b070-47b4-a931-4de53f257141




## Test plan
- [ ] Navigate to Content Drive portlet and verify the folder list
renders skeleton loading rows on initial load
- [ ] Verify that changing pages shows the correct number of skeleton
rows matching the page size
- [ ] Expand/collapse the folder tree panel and verify the tree-toggler
button animates smoothly (fades rather than snapping in/out)
- [ ] Click "Add New" and verify the toolbar button animates in/out when
switching between normal and multi-selection mode
- [ ] Open a dialog (e.g., create folder), verify it opens and closes
correctly without null-reference errors
- [ ] Run unit tests: `yarn nx test dot-content-drive-portlet` and
confirm all pass
- [ ] Run unit tests for the UI lib: `yarn nx test dot-content-drive-ui`
and confirm all pass

🤖 Generated with [Claude Code](https://claude.com/claude-code)
@github-actions github-actions bot added Area : Backend PR changes Java/Maven backend code Area : Frontend PR changes Angular/TypeScript frontend code labels Mar 2, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Area : Backend PR changes Java/Maven backend code Area : Frontend PR changes Angular/TypeScript frontend code

Projects

Status: No status

Development

Successfully merging this pull request may close these issues.

9 participants