-
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
15 changed files
with
311 additions
and
42 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> |
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 |
---|---|---|
|
@@ -2,4 +2,9 @@ | |
display: block; | ||
height: fit-content; | ||
margin-bottom: 0; | ||
|
||
small { | ||
margin-top: 0.5rem; | ||
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
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
16 changes: 16 additions & 0 deletions
16
...-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,16 @@ | ||
<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 | ||
</button> | ||
<button class="p-button" data-testId="apply-btn">Apply</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; | ||
} |
47 changes: 47 additions & 0 deletions
47
...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,47 @@ | ||
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 { 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() | ||
}) | ||
] | ||
}); | ||
|
||
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(); | ||
}); | ||
}); |
17 changes: 17 additions & 0 deletions
17
...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,17 @@ | ||
import { ChangeDetectionStrategy, Component, inject } from '@angular/core'; | ||
|
||
import { ButtonModule } from 'primeng/button'; | ||
import { DialogModule } from 'primeng/dialog'; | ||
import { DynamicDialogRef } from 'primeng/dynamicdialog'; | ||
|
||
@Component({ | ||
selector: 'dot-edit-content-category-field-dialog', | ||
standalone: true, | ||
imports: [DialogModule, ButtonModule], | ||
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); | ||
} |
22 changes: 22 additions & 0 deletions
22
...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,22 @@ | ||
<div class="dot-category-field__wrapper" [ngClass]="{ 'has-categories': values.length }"> | ||
@if (values.length) { | ||
<div class="dot-category-field__categories"> | ||
@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 | ||
(onClick)="showCategories()" | ||
icon="pi pi-pencil" | ||
label="Select" | ||
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; | ||
} | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
.../fields/dot-edit-content-category-field/dot-edit-content-category-field.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,22 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { DotEditContentCategoryFieldComponent } from './dot-edit-content-category-field.component'; | ||
|
||
describe('DotEditContentCategoryFieldComponent', () => { | ||
let component: DotEditContentCategoryFieldComponent; | ||
let fixture: ComponentFixture<DotEditContentCategoryFieldComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
imports: [DotEditContentCategoryFieldComponent] | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(DotEditContentCategoryFieldComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
Oops, something went wrong.