Skip to content

Commit f28e4e2

Browse files
committed
view loading when model isn't set
1 parent 02fbbfb commit f28e4e2

File tree

2 files changed

+15
-31
lines changed

2 files changed

+15
-31
lines changed

component-catalog/src/Examples/SortableTable.elm

+3-8
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ example =
135135
( columnsCode, columns ) =
136136
List.unzip (columnsWithCode settings)
137137

138-
toExampleCode viewName finalArgs =
138+
toExampleCode viewName =
139139
{ sectionName = viewName
140140
, code =
141141
[ moduleName ++ "." ++ viewName
@@ -185,7 +185,6 @@ example =
185185
)
186186
1
187187
, Code.listMultiline columnsCode 1
188-
, finalArgs
189188
]
190189
|> String.join ""
191190
}
@@ -202,17 +201,13 @@ example =
202201
, "type Msg = SortableTableWrapper (SortableTable.Msg ColumnId)"
203202
]
204203
, renderExample = Code.unstyledView
205-
, toExampleCode = \_ -> [ toExampleCode "view" (Code.list dataCode), toExampleCode "viewLoading" "" ]
204+
, toExampleCode = \_ -> [ toExampleCode "view" ]
206205
}
207206
, Heading.h2
208207
[ Heading.plaintext "Customizable Example"
209208
, Heading.css [ Css.marginTop Spacing.verticalSpacerPx ]
210209
]
211-
, if settings.loading then
212-
SortableTable.viewLoading attrs columns
213-
214-
else
215-
SortableTable.view attrs columns
210+
, SortableTable.view attrs columns
216211
]
217212
}
218213

src/Nri/Ui/SortableTable/V6.elm

+12-23
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module Nri.Ui.SortableTable.V6 exposing
55
, encode, decoder
66
, Column, custom, string, placeholderColumn
77
, Sorter, invariantSort, simpleSort, combineSorters
8-
, view, viewLoading
8+
, view
99
, Attribute, model, msgWrapper, stickyHeader, stickyHeaderCustom, StickyConfig, tableAttribute
1010
)
1111

@@ -37,7 +37,7 @@ module Nri.Ui.SortableTable.V6 exposing
3737
3838
## Rendering
3939
40-
@docs view, viewLoading
40+
@docs view
4141
4242
4343
### Attributes
@@ -437,28 +437,17 @@ view attributes columns =
437437
tableColumns =
438438
List.map (buildTableColumn config.msgWrapper config.model) columns
439439
in
440-
Table.view
441-
(buildTableAttributes config)
442-
tableColumns
443-
(config.model
444-
|> Maybe.map (\model_ -> currentEntries model_)
445-
|> Maybe.withDefault []
446-
)
447-
440+
case config.model of
441+
Just model_ ->
442+
Table.view
443+
(buildTableAttributes config)
444+
tableColumns
445+
(currentEntries model_)
448446

449-
{-| -}
450-
viewLoading : List (Attribute id entry msg) -> List (Column id entry msg) -> Html msg
451-
viewLoading attributes columns =
452-
let
453-
config =
454-
List.foldl (\(Attribute fn) soFar -> fn soFar) defaultConfig attributes
455-
456-
tableColumns =
457-
List.map (buildTableColumn config.msgWrapper config.model) columns
458-
in
459-
Table.viewLoading
460-
(buildTableAttributes config)
461-
tableColumns
447+
Nothing ->
448+
Table.viewLoading
449+
(buildTableAttributes config)
450+
tableColumns
462451

463452

464453
buildTableAttributes : Config id entry msg -> List Table.Attribute

0 commit comments

Comments
 (0)