Skip to content

Commit 5117802

Browse files
authored
Merge pull request #61 from lblod/au-loader-deprecations
[DL-6517] Resolve AuLoader deprecations
2 parents a0a9f3b + 03d67cb commit 5117802

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

app/components/search-queries/config-form.hbs

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
<div class="au-c-main-container__content au-c-main-container__content--scroll">
2828
<div class="au-o-box">
2929
{{#if this.init.isRunning}}
30-
<AuLoader @padding="large"/>
31-
<span class="au-u-hidden-visually">Aan het laden</span>
30+
<AuLoader>Aan het laden</AuLoader>
3231
{{else}}
3332
{{#if this.error}}
3433
<AuAlert @icon="cross"

app/components/search-queries/filter-form.hbs

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
<div class="au-c-sidebar__content">
33
<div class="au-c-sidebar__header">
44
{{#if (or this.init.isRunning this.resetFilters.isRunning)}}
5-
<AuLoader @padding="small" />
5+
<AuLoader @hideMessage={{true}} class="au-o-box">
6+
Aan het laden
7+
</AuLoader>
68
{{else}}
79
<RdfForm
810
@groupClass="au-o-grid__item au-u-1-2 au-u-1-1@small"

app/components/submissions/form.hbs

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
1-
<div {{did-update (perform this.loadData) @submission }} {{!template-lint-disable no-at-ember-render-modifiers}}>
1+
<div
2+
{{did-update (perform this.loadData) @submission}}
3+
{{!template-lint-disable no-at-ember-render-modifiers}}
4+
>
25
{{#if this.loadData.isRunning}}
3-
<span>Aan het laden...</span>
6+
<AuLoader class="au-o-box au-o-box--large">
7+
Aan het laden
8+
</AuLoader>
49
{{else}}
510
<SubmissionForm
611
@form={{this.form}}
712
@graphs={{this.graphs}}
813
@sourceNode={{this.sourceNode}}
914
@formStore={{this.formStore}}
1015
@show={{true}}
11-
@forceShowErrors={{false}} />
16+
@forceShowErrors={{false}}
17+
/>
1218
{{/if}}
1319
</div>

app/templates/authorization-callback-loading.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{{page-title "Aan het aanmelden"}}
22

3-
<div class="au-o-box au-u-1-1" ...attributes>
3+
<div class="au-o-box au-o-box--large au-u-1-1" ...attributes>
44
<AuLoader>
55
Aan het aanmelden
66
</AuLoader>

app/templates/loading.hbs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
<AuLoader/>
1+
<div class="au-o-box au-o-box--large au-u-1-1">
2+
<AuLoader>Aan het laden</AuLoader>
3+
</div>

0 commit comments

Comments
 (0)