-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(edit-content) add category field #28658
- Loading branch information
Showing
18 changed files
with
380 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 37 additions & 32 deletions
69
...t-content/src/lib/components/dot-edit-content-field/dot-edit-content-field.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,92 @@ | ||
<label | ||
[attr.data-testId]="'label-' + field.variable" | ||
[for]="field.variable" | ||
[checkIsRequiredControl]="field.variable" | ||
dotFieldRequired | ||
>{{ field.name }}</label | ||
> | ||
[for]="field.variable" | ||
dotFieldRequired> | ||
{{ field.name }} | ||
</label> | ||
|
||
<ng-container [ngSwitch]="field.fieldType"> | ||
<dot-edit-content-select-field | ||
*ngSwitchCase="fieldTypes.SELECT" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-radio-field | ||
*ngSwitchCase="fieldTypes.RADIO" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-text-field | ||
*ngSwitchCase="fieldTypes.TEXT" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-text-area | ||
*ngSwitchCase="fieldTypes.TEXTAREA" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-checkbox-field | ||
*ngSwitchCase="fieldTypes.CHECKBOX" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-multi-select-field | ||
*ngSwitchCase="fieldTypes.MULTI_SELECT" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-calendar-field | ||
*ngSwitchCase="calendarTypes.includes(field.fieldType) ? field.fieldType : ''" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable"> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field"> | ||
</dot-edit-content-calendar-field> | ||
|
||
<dot-edit-content-tag-field | ||
*ngSwitchCase="fieldTypes.TAG" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-json-field | ||
*ngSwitchCase="fieldTypes.JSON" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-binary-field | ||
*ngSwitchCase="fieldTypes.BINARY" | ||
[formControlName]="field.variable" | ||
[attr.data-testId]="'field-' + field.variable" | ||
[contentlet]="contentlet" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[formControlName]="field.variable" /> | ||
|
||
<dot-edit-content-custom-field | ||
*ngSwitchCase="fieldTypes.CUSTOM_FIELD" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" | ||
[contentType]="contentType" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[field]="field" /> | ||
|
||
<dot-block-editor | ||
*ngSwitchCase="fieldTypes.BLOCK_EDITOR" | ||
[formControlName]="field.variable" | ||
[attr.data-testId]="'field-' + field.variable" | ||
[contentlet]="contentlet" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[formControlName]="field.variable" /> | ||
|
||
<dot-edit-content-key-value | ||
*ngSwitchCase="fieldTypes.KEY_VALUE" | ||
[formControlName]="field.variable" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[formControlName]="field.variable" /> | ||
|
||
<dot-edit-content-wysiwyg-field | ||
*ngSwitchCase="fieldTypes.WYSIWYG" | ||
[field]="field" | ||
[attr.data-testId]="'field-' + field.variable" /> | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
|
||
<dot-edit-content-category-field | ||
*ngSwitchCase="fieldTypes.CATEGORY" | ||
[attr.data-testId]="'field-' + field.variable" | ||
[field]="field" /> | ||
</ng-container> | ||
|
||
<small *ngIf="field.hint" [attr.data-testId]="'hint-' + field.variable">{{ field.hint }}</small> |
7 changes: 7 additions & 0 deletions
7
...t-content/src/lib/components/dot-edit-content-field/dot-edit-content-field.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
@use "variables" as *; | ||
|
||
:host { | ||
display: block; | ||
height: fit-content; | ||
margin-bottom: 0; | ||
|
||
small { | ||
margin-top: $spacing-1; | ||
display: block; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...dit-content/src/lib/components/dot-edit-content-field/dot-edit-content-field.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...-edit-content-category-field-dialog/dot-edit-content-category-field-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<div class="category-field__dialog h-full w-full"> | ||
<div class="category-field__left-pane flex flex-column">Search & category tree</div> | ||
<div class="category-field__right-pane flex flex-column"> | ||
<div class="category-field__selected-categories flex-1">Selected Categories</div> | ||
<div class="category-field__actions flex justify-content-end"> | ||
<button | ||
class="p-button p-button-link" | ||
(click)="dialogRef.close()" | ||
data-testId="cancel-btn" | ||
pButton> | ||
Cancel | ||
{{ 'edit.content.category-field.cancel' | dm }} | ||
</button> | ||
<button class="p-button" data-testId="apply-btn"> | ||
{{ 'edit.content.category-field.apply' | dm }} | ||
</button> | ||
</div> | ||
</div> | ||
</div> |
37 changes: 37 additions & 0 deletions
37
...-edit-content-category-field-dialog/dot-edit-content-category-field-dialog.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
@use "variables" as *; | ||
|
||
:host { | ||
display: block; | ||
height: 100%; | ||
|
||
.category-field__dialog { | ||
display: grid; | ||
grid-template-columns: 2fr 1fr; | ||
max-width: 1200px; | ||
margin: auto; | ||
} | ||
|
||
.category-field__left-pane, | ||
.category-field__right-pane { | ||
padding: $spacing-3; | ||
gap: $spacing-3; | ||
} | ||
|
||
.category-field__left-pane { | ||
background-color: $color-palette-gray-300; | ||
} | ||
|
||
.category-field__selected-categories { | ||
border: $field-border-size solid $color-palette-gray-400; | ||
border-radius: $border-radius-sm; | ||
padding: $spacing-3; | ||
} | ||
|
||
.category-field__actions { | ||
gap: $spacing-1; | ||
} | ||
} | ||
|
||
::ng-deep .category-field__dialog .p-dialog-content { | ||
padding: 0; | ||
} |
50 changes: 50 additions & 0 deletions
50
...it-content-category-field-dialog/dot-edit-content-category-field-dialog.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { expect, it } from '@jest/globals'; | ||
import { byTestId, createComponentFactory, Spectator } from '@ngneat/spectator'; | ||
import { mockProvider } from '@ngneat/spectator/jest'; | ||
|
||
import { DynamicDialogRef } from 'primeng/dynamicdialog'; | ||
|
||
import { DotMessageService } from '@dotcms/data-access'; | ||
|
||
import { DotEditContentCategoryFieldDialogComponent } from './dot-edit-content-category-field-dialog.component'; | ||
|
||
describe('DotEditContentCategoryFieldDialogComponent', () => { | ||
let spectator: Spectator<DotEditContentCategoryFieldDialogComponent>; | ||
let dialogRef: DynamicDialogRef; | ||
|
||
const createComponent = createComponentFactory({ | ||
component: DotEditContentCategoryFieldDialogComponent, | ||
providers: [ | ||
mockProvider(DynamicDialogRef, { | ||
close: jest.fn() | ||
}), | ||
mockProvider(DotMessageService) | ||
] | ||
}); | ||
|
||
beforeEach(() => { | ||
spectator = createComponent(); | ||
dialogRef = spectator.inject(DynamicDialogRef); | ||
}); | ||
|
||
afterEach(() => { | ||
jest.resetAllMocks(); | ||
}); | ||
|
||
it('should have a cancel button', () => { | ||
expect(spectator.query(byTestId('cancel-btn'))).not.toBeNull(); | ||
}); | ||
it('should have a apply button', () => { | ||
expect(spectator.query(byTestId('apply-btn'))).not.toBeNull(); | ||
}); | ||
|
||
it('should close the dialog when you click cancel', () => { | ||
const cancelBtn = spectator.query(byTestId('cancel-btn')); | ||
expect(cancelBtn).not.toBeNull(); | ||
|
||
expect(dialogRef.close).not.toHaveBeenCalled(); | ||
|
||
spectator.click(cancelBtn); | ||
expect(dialogRef.close).toHaveBeenCalled(); | ||
}); | ||
}); |
19 changes: 19 additions & 0 deletions
19
...ot-edit-content-category-field-dialog/dot-edit-content-category-field-dialog.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; | ||
|
||
import { ButtonModule } from 'primeng/button'; | ||
import { DialogModule } from 'primeng/dialog'; | ||
import { DynamicDialogRef } from 'primeng/dynamicdialog'; | ||
|
||
import { DotMessagePipe } from '@dotcms/ui'; | ||
|
||
@Component({ | ||
selector: 'dot-edit-content-category-field-dialog', | ||
standalone: true, | ||
imports: [DialogModule, ButtonModule, DotMessagePipe], | ||
templateUrl: './dot-edit-content-category-field-dialog.component.html', | ||
styleUrl: './dot-edit-content-category-field-dialog.component.scss', | ||
changeDetection: ChangeDetectionStrategy.OnPush | ||
}) | ||
export class DotEditContentCategoryFieldDialogComponent { | ||
protected dialogRef: DynamicDialogRef = inject(DynamicDialogRef); | ||
} |
23 changes: 23 additions & 0 deletions
23
...lib/fields/dot-edit-content-category-field/dot-edit-content-category-field.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<div class="dot-category-field__wrapper" [ngClass]="{ 'has-categories': values.length }"> | ||
@if (values.length) { | ||
<div class="dot-category-field__categories" data-testId="category-chip-list"> | ||
@for (category of values; track category.id) { | ||
<p-chip | ||
[pTooltip]="category.value" | ||
[removable]="true" | ||
[label]="category.value" | ||
tooltipPosition="top" | ||
styleClass="p-chip-sm" /> | ||
} | ||
</div> | ||
} | ||
|
||
<div class="dot-category-field__select"> | ||
<p-button | ||
[label]="'edit.content.category-field.show-categories-dialog' | dm" | ||
(onClick)="showCategories()" | ||
data-testId="show-dialog-btn" | ||
icon="pi pi-pencil" | ||
styleClass="p-button-sm p-button-text p-button-secondary" /> | ||
</div> | ||
</div> |
34 changes: 34 additions & 0 deletions
34
...lib/fields/dot-edit-content-category-field/dot-edit-content-category-field.component.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
@use "variables" as *; | ||
|
||
.dot-category-field__wrapper { | ||
.dot-category-field__categories, | ||
.dot-category-field__select { | ||
border: $field-border-size solid $color-palette-gray-400; | ||
display: flex; | ||
flex-wrap: wrap; | ||
align-items: center; | ||
} | ||
|
||
.dot-category-field__categories { | ||
padding: $spacing-1; | ||
gap: $spacing-1; | ||
border-radius: $border-radius-md $border-radius-md 0 0; | ||
} | ||
|
||
.dot-category-field__select { | ||
height: $field-height-md; | ||
border-radius: $border-radius-md; | ||
padding: 0 $spacing-0; | ||
justify-content: flex-end; | ||
} | ||
|
||
&.has-categories { | ||
.dot-category-field__select { | ||
border-radius: 0 0 $border-radius-md $border-radius-md; | ||
} | ||
|
||
.dot-category-field__categories { | ||
border-bottom: none; | ||
} | ||
} | ||
} |
Oops, something went wrong.