2026-07-10 13:43:53 +04:00
|
|
|
@if (bootstrap(); as bootstrap) {
|
2026-07-16 02:06:26 +04:00
|
|
|
<app-section-card [title]="'builder.footer' | translate">
|
2026-07-10 13:43:53 +04:00
|
|
|
<div class="editor-grid two">
|
feat(project-editor): adopt Design System primitives across editor sections
Applied app-input/app-form-field/app-button to 9 of 11 Project Editor
sections: general, branding, theme, footer, homepage, widgets, languages,
navigation, preview. header and features sections were left unchanged -
they contain only checkboxes and selects, and no Checkbox/Select primitive
exists yet.
Theme section's 8 color pickers stay native <input type=color> (app-input's
type union doesn't include 'color') but are now wrapped in app-form-field
for consistent label/hint treatment. Added app-form-field.full grid-column
rule to section.shared.scss (shared by all 11 sections) alongside the
existing label.full rule, since the custom element doesn't match that
selector.
Production build green, arch:check passes.
2026-07-15 07:55:38 +04:00
|
|
|
<app-form-field [label]="'builder.companyName' | translate" [hint]="'builder.companyNameDesc' | translate"><app-input [ngModel]="bootstrap.company.companyName" (ngModelChange)="updateCompanyName($event)" /></app-form-field>
|
|
|
|
|
<app-form-field [label]="'builder.address' | translate" [hint]="'builder.addressDesc' | translate"><app-input [ngModel]="bootstrap.company.address.street || ''" (ngModelChange)="updateAddress($event)" /></app-form-field>
|
|
|
|
|
<app-form-field [label]="'builder.phone' | translate" [hint]="'builder.phoneDesc' | translate"><app-input [ngModel]="bootstrap.company.contacts.phone || ''" (ngModelChange)="updatePhone($event)" /></app-form-field>
|
2026-07-17 16:57:43 +04:00
|
|
|
<app-form-field [label]="'builder.email' | translate" [hint]="'builder.emailDesc' | translate" [error]="fieldError('company.contacts.email')"><app-input [ngModel]="bootstrap.company.contacts.email" (ngModelChange)="updateEmail($event)" /></app-form-field>
|
2026-07-19 13:58:57 +04:00
|
|
|
|
|
|
|
|
<div class="full">
|
|
|
|
|
<label><span>{{ 'builder.additionalPhones' | translate }}</span><small class="field-desc">{{ 'builder.additionalPhonesDesc' | translate }}</small></label>
|
|
|
|
|
@for (phone of additionalPhones(); track $index) {
|
|
|
|
|
<div class="contact-row">
|
|
|
|
|
<app-input [ngModel]="phone" (ngModelChange)="updatePhoneAt($index, $event)" [placeholder]="'builder.phone' | translate" />
|
|
|
|
|
<button type="button" class="contact-row__remove" (click)="removePhoneAt($index)" [attr.aria-label]="'builder.removePhone' | translate">×</button>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
<app-button variant="secondary" size="sm" (click)="addPhone()">{{ 'builder.addPhone' | translate }}</app-button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="full">
|
|
|
|
|
<label><span>{{ 'builder.additionalEmails' | translate }}</span><small class="field-desc">{{ 'builder.additionalEmailsDesc' | translate }}</small></label>
|
|
|
|
|
@for (email of additionalEmails(); track $index) {
|
|
|
|
|
<div class="contact-row">
|
|
|
|
|
<app-input type="email" [ngModel]="email" (ngModelChange)="updateEmailAt($index, $event)" [placeholder]="'builder.email' | translate" />
|
|
|
|
|
<button type="button" class="contact-row__remove" (click)="removeEmailAt($index)" [attr.aria-label]="'builder.removeEmail' | translate">×</button>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
<app-button variant="secondary" size="sm" (click)="addEmail()">{{ 'builder.addEmail' | translate }}</app-button>
|
|
|
|
|
</div>
|
feat(project-editor): adopt Design System primitives across editor sections
Applied app-input/app-form-field/app-button to 9 of 11 Project Editor
sections: general, branding, theme, footer, homepage, widgets, languages,
navigation, preview. header and features sections were left unchanged -
they contain only checkboxes and selects, and no Checkbox/Select primitive
exists yet.
Theme section's 8 color pickers stay native <input type=color> (app-input's
type union doesn't include 'color') but are now wrapped in app-form-field
for consistent label/hint treatment. Added app-form-field.full grid-column
rule to section.shared.scss (shared by all 11 sections) alongside the
existing label.full rule, since the custom element doesn't match that
selector.
Production build green, arch:check passes.
2026-07-15 07:55:38 +04:00
|
|
|
<app-form-field class="full" [label]="'builder.copyright' | translate" [hint]="'builder.copyrightDesc' | translate"><app-input [ngModel]="copyrightValue()" (ngModelChange)="updateCopyright($event)" /></app-form-field>
|
2026-07-16 02:06:26 +04:00
|
|
|
<app-form-field class="full" [label]="'builder.footerLogo' | translate" [hint]="'builder.footerLogoDesc' | translate">
|
2026-07-17 15:22:45 +04:00
|
|
|
<app-image-field [value]="bootstrap.footer?.logoUrl || ''" (valueChange)="updateLogo($event)" />
|
2026-07-16 02:06:26 +04:00
|
|
|
</app-form-field>
|
|
|
|
|
|
|
|
|
|
<div class="full">
|
|
|
|
|
<label><span>{{ 'builder.paymentIcons' | translate }}</span><small class="field-desc">{{ 'builder.paymentIconsDesc' | translate }}</small></label>
|
2026-07-17 16:57:43 +04:00
|
|
|
@if (fieldError('footer.paymentIcons'); as msg) {
|
|
|
|
|
<p class="editor-error">{{ msg }}</p>
|
|
|
|
|
}
|
2026-07-16 02:06:26 +04:00
|
|
|
<app-key-value-editor
|
|
|
|
|
[rows]="paymentIconRows()"
|
|
|
|
|
[addLabel]="'builder.addPaymentIcon' | translate"
|
|
|
|
|
[removeLabel]="'builder.removePaymentIcon' | translate"
|
|
|
|
|
[createRow]="createPaymentIconRow"
|
|
|
|
|
(rowsChange)="onPaymentIconsChange($event)"
|
|
|
|
|
>
|
|
|
|
|
<ng-template let-row let-index="index">
|
|
|
|
|
<div class="media-field-row">
|
2026-07-17 15:22:45 +04:00
|
|
|
<app-image-field [value]="row.src" (valueChange)="updatePaymentIconSrc(index, $event)" />
|
2026-07-16 02:06:26 +04:00
|
|
|
<app-input [ngModel]="row.alt" (ngModelChange)="updatePaymentIconAlt(index, $event)" [placeholder]="'builder.iconAltLabel' | translate" />
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</app-key-value-editor>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="full">
|
|
|
|
|
<label><span>{{ 'builder.socialLinks' | translate }}</span><small class="field-desc">{{ 'builder.socialLinksDesc' | translate }}</small></label>
|
2026-07-17 16:57:43 +04:00
|
|
|
@if (fieldError('footer.socialLinks'); as msg) {
|
|
|
|
|
<p class="editor-error">{{ msg }}</p>
|
|
|
|
|
}
|
2026-07-16 02:06:26 +04:00
|
|
|
<app-key-value-editor
|
|
|
|
|
[rows]="socialLinkRows()"
|
|
|
|
|
[addLabel]="'builder.addSocialLink' | translate"
|
|
|
|
|
[removeLabel]="'builder.removeSocialLink' | translate"
|
|
|
|
|
[createRow]="createSocialLinkRow"
|
|
|
|
|
(rowsChange)="onSocialLinksChange($event)"
|
|
|
|
|
>
|
|
|
|
|
<ng-template let-row let-index="index">
|
|
|
|
|
<div class="editor-grid two compact">
|
|
|
|
|
<app-form-field [label]="'builder.socialLinkLabel' | translate">
|
|
|
|
|
<app-input [ngModel]="row.label" (ngModelChange)="updateSocialLinkLabel(index, $event)" />
|
|
|
|
|
</app-form-field>
|
|
|
|
|
<app-form-field
|
|
|
|
|
[label]="'builder.socialLinkUrl' | translate"
|
|
|
|
|
[hint]="isValidUrl(row.url) ? ('builder.socialLinkUrlDesc' | translate) : null"
|
|
|
|
|
[error]="isValidUrl(row.url) ? null : ('builder.invalidUrl' | translate)"
|
|
|
|
|
>
|
|
|
|
|
<app-input type="url" [ngModel]="row.url" (ngModelChange)="updateSocialLinkUrl(index, $event)" />
|
|
|
|
|
</app-form-field>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</app-key-value-editor>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-07-19 13:58:57 +04:00
|
|
|
<div class="full">
|
|
|
|
|
<label><span>{{ 'builder.footerColumns' | translate }}</span><small class="field-desc">{{ 'builder.footerColumnsDesc' | translate }}</small></label>
|
|
|
|
|
|
|
|
|
|
<div class="footer-columns" cdkDropList cdkDropListOrientation="horizontal" (cdkDropListDropped)="dropColumn($event)">
|
|
|
|
|
@for (column of columns(); track column.id) {
|
|
|
|
|
<div class="footer-column" cdkDrag>
|
|
|
|
|
<div class="footer-column__head" cdkDragHandle>
|
fix(icons): migrate Marketplace Builder to Lucide
Replace every PrimeIcons pi-* usage across the builder: overview page
(back link, next-step arrow, section cards, readiness checklist,
quick links), sidebar nav (group/section status dots), main layout
(back/home/menu/help icons), brand + homepage overview panels
(checklist ok/pending dots, contrast warning), footer/homepage/widgets
section editors (drag handles, move up/down, duplicate, remove), and
the HTML editor toolbar (list/link/image/table/divider/code/embed).
Notable correctness fix: PrimeIcons reused pi-bars for both the
hamburger menu toggle AND every drag handle - two different meanings
sharing one icon (exactly the kind of icon collision the audit calls
out). Added a dedicated 'grip' icon (GripVertical) for drag handles so
menu and drag-to-reorder are visually distinct.
Added a global .spin utility (icon-registry has no built-in spinner
animation) for the one loading-spinner icon in the builder overview
checklist.
All icon-bearing fields (BuilderGroup.icon, BlockCatalogEntry.icon,
WIDGET_ICONS, STATUS_ICON, HtmlEditorToolbarCommand.icon, etc.) are
now typed AppIconName instead of string.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-20 02:31:06 +04:00
|
|
|
<app-icon name="grip" [size]="16" class="footer-column__grip" />
|
2026-07-19 13:58:57 +04:00
|
|
|
<app-input [ngModel]="column.title" (ngModelChange)="updateColumnTitle(column.id, $event)" [placeholder]="'builder.footerColumnTitlePlaceholder' | translate" />
|
|
|
|
|
<button type="button" class="footer-column__remove" (click)="removeColumn(column.id)" [attr.aria-label]="'builder.removeColumn' | translate">×</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="footer-column__links" cdkDropList [cdkDropListData]="column.links" (cdkDropListDropped)="dropLink(column.id, $event)">
|
|
|
|
|
@for (link of column.links; track link.id) {
|
|
|
|
|
<div class="footer-link" cdkDrag>
|
fix(icons): migrate Marketplace Builder to Lucide
Replace every PrimeIcons pi-* usage across the builder: overview page
(back link, next-step arrow, section cards, readiness checklist,
quick links), sidebar nav (group/section status dots), main layout
(back/home/menu/help icons), brand + homepage overview panels
(checklist ok/pending dots, contrast warning), footer/homepage/widgets
section editors (drag handles, move up/down, duplicate, remove), and
the HTML editor toolbar (list/link/image/table/divider/code/embed).
Notable correctness fix: PrimeIcons reused pi-bars for both the
hamburger menu toggle AND every drag handle - two different meanings
sharing one icon (exactly the kind of icon collision the audit calls
out). Added a dedicated 'grip' icon (GripVertical) for drag handles so
menu and drag-to-reorder are visually distinct.
Added a global .spin utility (icon-registry has no built-in spinner
animation) for the one loading-spinner icon in the builder overview
checklist.
All icon-bearing fields (BuilderGroup.icon, BlockCatalogEntry.icon,
WIDGET_ICONS, STATUS_ICON, HtmlEditorToolbarCommand.icon, etc.) are
now typed AppIconName instead of string.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-20 02:31:06 +04:00
|
|
|
<app-icon name="grip" [size]="14" cdkDragHandle class="footer-link__grip" />
|
2026-07-19 13:58:57 +04:00
|
|
|
<app-input [ngModel]="link.label" (ngModelChange)="updateLink(column.id, link.id, { label: $event })" [placeholder]="'builder.footerLinkLabelPlaceholder' | translate" />
|
|
|
|
|
|
|
|
|
|
<select class="footer-link__source" [ngModel]="linkSourceMode(link)" (ngModelChange)="setLinkSourceMode(column.id, link.id, $event)">
|
|
|
|
|
<option value="page">{{ 'builder.footerLinkExistingPage' | translate }}</option>
|
|
|
|
|
<option value="custom">{{ 'builder.footerLinkCustomUrl' | translate }}</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
@if (linkSourceMode(link) === 'page') {
|
|
|
|
|
<select [ngModel]="link.pageKey" (ngModelChange)="updateLink(column.id, link.id, { pageKey: $event })">
|
|
|
|
|
@for (page of availablePages(); track page.id) {
|
|
|
|
|
<option [value]="page.id">{{ page.title }}</option>
|
|
|
|
|
}
|
|
|
|
|
</select>
|
|
|
|
|
} @else {
|
|
|
|
|
<app-input type="url" [ngModel]="link.url" (ngModelChange)="updateLink(column.id, link.id, { url: $event })" placeholder="https://" />
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<button type="button" class="footer-link__remove" (click)="removeLink(column.id, link.id)" [attr.aria-label]="'builder.removeColumnLink' | translate">×</button>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<app-button variant="secondary" size="sm" (click)="addLink(column.id)">{{ 'builder.addColumnLink' | translate }}</app-button>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<app-button variant="secondary" size="sm" (click)="addColumn()">{{ 'builder.addColumn' | translate }}</app-button>
|
|
|
|
|
</div>
|
2026-07-10 13:43:53 +04:00
|
|
|
</div>
|
2026-07-16 02:06:26 +04:00
|
|
|
</app-section-card>
|
2026-07-10 13:43:53 +04:00
|
|
|
}
|