Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dialog): support sp-alert-dialog in sp-dialog-wrapper #4909

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions packages/dialog/src/DialogBase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ import '@spectrum-web-components/dialog/sp-dialog.js';
import modalWrapperStyles from '@spectrum-web-components/modal/src/modal-wrapper.css.js';
import modalStyles from '@spectrum-web-components/modal/src/modal.css.js';
import { Dialog } from './Dialog.js';
import { AlertDialog } from '@spectrum-web-components/alert-dialog';
import { FocusVisiblePolyfillMixin } from '@spectrum-web-components/shared';
import { firstFocusableIn } from '@spectrum-web-components/shared/src/first-focusable-in.js';

/**
* @element sp-dialog-base
*
* @slot - A Dialog element to display.
* @slot - A Dialog or AlertDialog element to display.
* @fires close - Announces that the dialog has been closed.
*/
export class DialogBase extends FocusVisiblePolyfillMixin(SpectrumElement) {
Expand Down Expand Up @@ -66,10 +67,10 @@ export class DialogBase extends FocusVisiblePolyfillMixin(SpectrumElement) {
@property({ type: Boolean })
public underlay = false;

protected get dialog(): Dialog {
protected get dialog(): Dialog | AlertDialog {
const dialog = (
this.shadowRoot.querySelector('slot') as HTMLSlotElement
).assignedElements()[0] as Dialog;
).assignedElements()[0] as Dialog | AlertDialog;
if (window.__swc.DEBUG) {
if (!dialog) {
window.__swc.warn(
Expand Down
107 changes: 66 additions & 41 deletions packages/dialog/src/DialogWrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ import '@spectrum-web-components/button/sp-button.js';

// Leveraged in build systems that use aliasing to prevent multiple registrations: https://github.com/adobe/spectrum-web-components/pull/3225
import '@spectrum-web-components/dialog/sp-dialog.js';
import '@spectrum-web-components/alert-dialog/sp-alert-dialog.js';
import { DialogBase } from './DialogBase.js';
import { Dialog } from './Dialog.js';
import { AlertDialog } from '@spectrum-web-components/alert-dialog';

/**
* @element sp-dialog-wrapper
Expand All @@ -41,9 +43,6 @@ export class DialogWrapper extends DialogBase {
return [...super.styles];
}

/**
* @deprecated Use the Alert Dialog component with `variant="error"` instead.
*/
@property({ type: Boolean, reflect: true })
public error = false;

Expand Down Expand Up @@ -80,8 +79,10 @@ export class DialogWrapper extends DialogBase {
@property({ type: String, attribute: 'headline-visibility' })
public headlineVisibility: 'none' | undefined;

protected override get dialog(): Dialog {
return this.shadowRoot.querySelector('sp-dialog') as Dialog;
protected override get dialog(): Dialog | AlertDialog {
return this.error
? (this.shadowRoot.querySelector('sp-alert-dialog') as AlertDialog)
: (this.shadowRoot.querySelector('sp-dialog') as Dialog);
}

private clickSecondary(): void {
Expand All @@ -108,6 +109,46 @@ export class DialogWrapper extends DialogBase {
);
}

protected renderButtons(): TemplateResult {
return html`
${this.cancelLabel
? html`
<sp-button
variant="secondary"
treatment="outline"
slot="button"
@click=${this.clickCancel}
>
${this.cancelLabel}
</sp-button>
`
: nothing}
${this.secondaryLabel
? html`
<sp-button
variant="primary"
treatment="outline"
slot="button"
@click=${this.clickSecondary}
>
${this.secondaryLabel}
</sp-button>
`
: nothing}
${this.confirmLabel
? html`
<sp-button
variant="accent"
slot="button"
@click=${this.clickConfirm}
>
${this.confirmLabel}
</sp-button>
`
: nothing}
`;
}

protected override renderDialog(): TemplateResult {
const hideDivider =
this.noDivider ||
Expand All @@ -127,12 +168,30 @@ export class DialogWrapper extends DialogBase {
}
}

if (this.error) {
return html`
<sp-alert-dialog variant="error">
${this.headline
? html`
<h2
slot="heading"
?hidden=${this.headlineVisibility === 'none'}
>
${this.headline}
</h2>
`
: nothing}
<slot></slot>
${this.renderButtons()}
</sp-alert-dialog>
`;
}

return html`
<sp-dialog
?dismissable=${this.dismissable}
dismiss-label=${this.dismissLabel}
?no-divider=${hideDivider}
?error=${this.error}
mode=${ifDefined(this.mode)}
size=${ifDefined(this.size)}
>
Expand Down Expand Up @@ -166,41 +225,7 @@ export class DialogWrapper extends DialogBase {
<div slot="footer">${this.footer}</div>
`
: nothing}
${this.cancelLabel
? html`
<sp-button
variant="secondary"
treatment="outline"
slot="button"
@click=${this.clickCancel}
>
${this.cancelLabel}
</sp-button>
`
: nothing}
${this.secondaryLabel
? html`
<sp-button
variant="primary"
treatment="outline"
slot="button"
@click=${this.clickSecondary}
>
${this.secondaryLabel}
</sp-button>
`
: nothing}
${this.confirmLabel
? html`
<sp-button
variant="accent"
slot="button"
@click=${this.clickConfirm}
>
${this.confirmLabel}
</sp-button>
`
: nothing}
${this.renderButtons()}
</sp-dialog>
`;
}
Expand Down
9 changes: 4 additions & 5 deletions packages/dialog/stories/dialog-wrapper.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,23 +406,22 @@ export const longHeading = (
longHeading.decorators = [isOverlayOpen];

export const wrapperDismissableUnderlayError = (
args: StoryArgs = {},
context: { viewMode?: string } = {}
): TemplateResult => {
const open = context.viewMode === 'docs' ? false : true;
return html`
<div>
<sp-dialog-wrapper
?open=${open}
hero=${landscape}
dismissable
error
headline="Wrapped Dialog w/ Hero Image"
headline="Wrapped Error Alert Dialog"
underlay
@close=${handleClose(args)}
secondary-label="Continue"
size="s"
>
Content of the dialog
An error occured while sharing your project. Please verify the
email address and try again.
</sp-dialog-wrapper>
<sp-button
onClick="
Expand Down
4 changes: 3 additions & 1 deletion packages/popover/stories/popover.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ export const Default = ({ content }: { content: string }): TemplateResult => {
return html`
<div style="color: var(--spectrum-gray-800)">
<sp-popover variant="default" open style="max-width: 320px">
<div style="font-size: 14px; padding: 10px">${content}</div>
<sp-dialog no-divider>
Rajdeepc marked this conversation as resolved.
Show resolved Hide resolved
<div style="font-size: 14px; padding: 10px">${content}</div>
</sp-dialog>
</sp-popover>
</div>
`;
Expand Down
Loading