Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ba33506

Browse files
committedJun 12, 2020
List channel as button group
also fixes problem showing result when query is empty string fixes #92
1 parent 9f3de34 commit ba33506

File tree

3 files changed

+55
-33
lines changed

3 files changed

+55
-33
lines changed
 

‎src/Main.elm

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ submitQuery :
114114
submitQuery old ( new, cmd ) =
115115
let
116116
triggerSearch _ newModel msg makeRequest =
117-
if newModel.query /= Nothing then
117+
if newModel.query /= Nothing && newModel.query /= Just "" then
118118
( new
119119
, Cmd.batch
120120
[ cmd

‎src/Search.elm

+47-29
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ import Html
3636
)
3737
import Html.Attributes
3838
exposing
39-
( class
39+
( attribute
40+
, class
4041
, classList
4142
, href
4243
, type_
@@ -163,16 +164,25 @@ update path navKey msg model =
163164
ChannelChange channel ->
164165
( { model
165166
| channel = channel
166-
, result = RemoteData.Loading
167+
, result =
168+
if model.query == Nothing || model.query == Just "" then
169+
RemoteData.NotAsked
170+
171+
else
172+
RemoteData.Loading
167173
}
168-
, createUrl
169-
path
170-
channel
171-
model.query
172-
model.show
173-
0
174-
model.size
175-
|> Browser.Navigation.pushUrl navKey
174+
, if model.query == Nothing || model.query == Just "" then
175+
Cmd.none
176+
177+
else
178+
createUrl
179+
path
180+
channel
181+
model.query
182+
model.show
183+
0
184+
model.size
185+
|> Browser.Navigation.pushUrl navKey
176186
)
177187

178188
QueryInput query ->
@@ -321,37 +331,45 @@ view path title model viewSuccess outMsg =
321331
[ h1 [ class "page-header" ] [ text title ]
322332
, div [ class "search-input" ]
323333
[ form [ onSubmit (outMsg QuerySubmit) ]
324-
[ div [ class "input-append" ]
325-
[ input
326-
[ type_ "text"
327-
, onInput (\x -> outMsg (QueryInput x))
328-
, value <| Maybe.withDefault "" model.query
329-
]
330-
[]
331-
, div [ class "btn-group" ]
332-
[ button [ class "btn" ] [ text "Search" ]
333-
]
334-
]
335-
, span []
334+
[ p
335+
[]
336336
[ strong []
337-
[ text " in " ]
338-
, select
339-
[ onInput (\x -> outMsg (ChannelChange x)) ]
337+
[ text "Channel: " ]
338+
, div
339+
[ class "btn-group"
340+
, attribute "data-toggle" "buttons-radio"
341+
]
340342
(List.filterMap
341343
(\channel_id ->
342344
channelDetailsFromId channel_id
343345
|> Maybe.map
344346
(\channel ->
345-
option
346-
[ value channel.id
347+
button
348+
[ type_ "button"
349+
, classList
350+
[ ( "btn", True )
351+
, ( "active", channel.id == model.channel )
352+
]
353+
, onClick <| outMsg (ChannelChange channel.id)
347354
]
348355
[ text channel.title ]
349356
)
350357
)
351358
channels
352359
)
353-
, strong []
354-
[ text " channel." ]
360+
]
361+
, p
362+
[ class "input-append"
363+
]
364+
[ input
365+
[ type_ "text"
366+
, onInput (\x -> outMsg (QueryInput x))
367+
, value <| Maybe.withDefault "" model.query
368+
]
369+
[]
370+
, div [ class "btn-group" ]
371+
[ button [ class "btn" ] [ text "Search" ]
372+
]
355373
]
356374
]
357375
]

‎src/index.scss

+7-3
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,18 @@ header .navbar.navbar-static-top {
3535
.input-append input {
3636
font-size: 24px;
3737
height: 40px;
38-
width: 10em;
38+
width: auto;
39+
max-width: 15em;
3940
}
4041
.input-append button {
4142
font-size: 24px;
4243
height: 50px;
44+
min-width: 4em;
4345
}
44-
select {
45-
width: 100px;
46+
form > p > strong {
47+
vertical-align: middle;
48+
font-size: 1.2em;
49+
margin-left: 0.2em;
4650
}
4751
}
4852
.search-result {

0 commit comments

Comments
 (0)
Please sign in to comment.