diff --git a/addon/components/au-button.gts b/addon/components/au-button.gts index 66ef1af49..fa39a331a 100644 --- a/addon/components/au-button.gts +++ b/addon/components/au-button.gts @@ -1,6 +1,6 @@ import Component from '@glimmer/component'; import AuIcon from './au-icon'; -import AuLoader from './au-loader'; +import { LoadingAnimation } from '../private/components/loading-animation'; const SKINS = [ 'primary', @@ -118,14 +118,14 @@ export default class AuButton extends Component { {{#if @hideText}} {{#if @loading}} {{this.loadingMessage}} - + {{else}} {{yield}} {{/if}} {{else}} {{#if @loading}} {{this.loadingMessage}} - + {{else}} {{yield}} {{/if}} diff --git a/addon/components/au-loader.gts b/addon/components/au-loader.gts index 4ee296f96..958bfa64f 100644 --- a/addon/components/au-loader.gts +++ b/addon/components/au-loader.gts @@ -1,11 +1,40 @@ import Component from '@glimmer/component'; +import { deprecate } from '@ember/debug'; +import { LoadingAnimation } from '../private/components/loading-animation'; +import { modifier } from 'ember-modifier'; + +const deprecateOldVersion = modifier(function deprecateOldVersion() { + deprecate( + `[AuLoader] This version of the \`AuLoader\` component is deprecated. + +Follow the migration guide to switch to the new version: https://github.com/appuniversum/ember-appuniversum/pull/464 + +`, + false, + { + id: '@appuniversum/ember-appuniversum.au-loader-visible-by-default', + until: '4.0.0', + for: '@appuniversum/ember-appuniversum', + since: { + available: '3.1.0', + enabled: '3.1.0', + }, + }, + ); +}); export interface AuLoaderSignature { Args: { + inline?: boolean; + hideMessage?: boolean; + // Deprecated arguments disableMessage?: boolean; message?: string; padding?: 'small' | 'large'; }; + Blocks: { + default: []; + }; Element: HTMLDivElement; } @@ -21,11 +50,30 @@ export default class AuLoader extends Component { } } diff --git a/addon/private/components/loading-animation.gts b/addon/private/components/loading-animation.gts new file mode 100644 index 000000000..17ec67aa8 --- /dev/null +++ b/addon/private/components/loading-animation.gts @@ -0,0 +1,9 @@ +import type { TOC } from '@ember/component/template-only'; + +interface Signature { + Element: HTMLDivElement; +} + +export const LoadingAnimation: TOC = ; diff --git a/stories/5-components/Notifications/AuLoader.stories.js b/stories/5-components/Notifications/AuLoader.stories.js index 38e478008..88625bb2b 100644 --- a/stories/5-components/Notifications/AuLoader.stories.js +++ b/stories/5-components/Notifications/AuLoader.stories.js @@ -3,18 +3,17 @@ import { hbs } from 'ember-cli-htmlbars'; export default { title: 'Components/Notifications/AuLoader', argTypes: { - padding: { - control: 'select', - options: ['default', 'small', 'large'], - description: 'Set the padding of the loader', - }, message: { control: 'text', - description: 'Set the hidden loading text', + description: 'Set the loading text', + }, + inline: { + control: 'boolean', + description: 'Use the inline version of the loader', }, - disableMessage: { + hideMessage: { control: 'boolean', - description: 'Remove the loading text', + description: 'Hide the loading text', }, }, parameters: { @@ -24,13 +23,16 @@ export default { const Template = (args) => ({ template: hbs` - `, + {{this.message}}`, context: args, }); export const Component = Template.bind({}); Component.args = { - padding: 'default', message: 'Aan het laden', - disableMessage: false, + inline: false, + hideMessage: false, }; diff --git a/styles/components/_c-loader.scss b/styles/components/_c-loader.scss index 1c24850c3..263ae7ff2 100644 --- a/styles/components/_c-loader.scss +++ b/styles/components/_c-loader.scss @@ -9,6 +9,15 @@ display: block; } +// .au-p- = private class +.au-p-c-loading-animation { + display: inline-block; + position: relative; + width: 3rem; + height: 1.8rem; +} + +// TODO: Remove this once we drop support for the "old" AuLoader setup .au-c-loader__animation { display: block; position: relative; @@ -24,7 +33,11 @@ width: 3rem + $au-unit-large; height: 3rem + $au-unit-large; } +} +.au-p-c-loading-animation, +// TODO: Remove this once we drop support for the "old" AuLoader setup +.au-c-loader__animation { &::before { content: ""; display: block; diff --git a/tests/helpers/deprecations.js b/tests/helpers/deprecations.ts similarity index 63% rename from tests/helpers/deprecations.js rename to tests/helpers/deprecations.ts index e35dcbef7..eff2b9291 100644 --- a/tests/helpers/deprecations.js +++ b/tests/helpers/deprecations.ts @@ -1,12 +1,14 @@ import { getDeprecations } from '@ember/test-helpers'; -export function hasDeprecation(deprecationMessage) { +export function hasDeprecation(deprecationMessage: string): boolean { return getDeprecations().some( (deprecation) => deprecation.message === deprecationMessage, ); } -export function hasDeprecationStartingWith(deprecationMessage) { +export function hasDeprecationStartingWith( + deprecationMessage: string, +): boolean { return getDeprecations().some((deprecation) => deprecation.message.startsWith(deprecationMessage), ); diff --git a/tests/integration/components/au-loader-test.gts b/tests/integration/components/au-loader-test.gts index f305fabca..624c35fa7 100644 --- a/tests/integration/components/au-loader-test.gts +++ b/tests/integration/components/au-loader-test.gts @@ -1,26 +1,75 @@ -import { module, test } from 'qunit'; -import { setupRenderingTest } from 'ember-qunit'; -import { render } from '@ember/test-helpers'; import AuLoader from '@appuniversum/ember-appuniversum/components/au-loader'; +import { getRootElement, render } from '@ember/test-helpers'; +import { queryByText } from '@testing-library/dom'; +import { hasDeprecationStartingWith } from 'dummy/tests/helpers/deprecations'; +import { setupRenderingTest } from 'ember-qunit'; +import { module, test } from 'qunit'; module('Integration | Component | au-loader', function (hooks) { setupRenderingTest(hooks); + test('it uses the block contents as the loading message', async function (assert) { + await render( + , + ); + + assert.dom().hasText('Pagina is aan het laden'); + assert.false(hasDeprecationStartingWith('[AuLoader]')); + }); + + test('it supports visually hiding the loading text', async function (assert) { + await render( + , + ); + + const root = getRootElement() as HTMLElement; + const text = queryByText(root, 'Pagina is aan het laden') as HTMLElement; + + // Hacky way to test if the text is visible. + // `assert.dom(text).isNotVisible()` doesn't work here because of the styles we use for the au-u-hidden-visually class. + assert.true(text.offsetHeight <= 1); + assert.true(text.offsetWidth <= 1); + assert.false(hasDeprecationStartingWith('[AuLoader]')); + }); + test('it renders a hidden loading text for screen readers', async function (assert) { await render(); assert.dom().hasText('Aan het laden'); + assert.true(showsDeprecationMessage()); }); test('it supports rendering a custom hidden loading text', async function (assert) { await render(); assert.dom().hasText('Loading'); + assert.true(showsDeprecationMessage()); }); test('it supports disabling the hidden message', async function (assert) { await render(); assert.dom().hasNoText(); + assert.true(showsDeprecationMessage()); + }); + + test('@padding shows a deprecation', async function (assert) { + await render(); + + assert.true(showsDeprecationMessage()); }); }); + +function showsDeprecationMessage() { + return hasDeprecationStartingWith( + '[AuLoader] This version of the `AuLoader` component is deprecated', + ); +} diff --git a/tests/integration/components/loose-mode-test.ts b/tests/integration/components/loose-mode-test.ts index b4c0365db..550b8293e 100644 --- a/tests/integration/components/loose-mode-test.ts +++ b/tests/integration/components/loose-mode-test.ts @@ -135,7 +135,7 @@ module('Integration | Component | Loose mode', function (hooks) { test('`` resolves in loose mode', async function (assert) { await render(hbs` - + `); assert.dom('[data-test-loader]').exists(); });