mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-03-28 17:55:06 +00:00
Use anchor links instead of javascript to go to detail view
This commit is contained in:
parent
791a61b24b
commit
fc5035ea8d
@ -21,8 +21,8 @@ import Data.Items
|
||||
import Data.UiSettings exposing (UiSettings)
|
||||
import Html exposing (..)
|
||||
import Html.Attributes exposing (..)
|
||||
import Html.Events exposing (onClick)
|
||||
import Markdown
|
||||
import Page exposing (Page(..))
|
||||
import Util.ItemDragDrop as DD
|
||||
import Util.List
|
||||
import Util.String
|
||||
@ -37,7 +37,6 @@ type alias Model =
|
||||
type Msg
|
||||
= SetResults ItemLightList
|
||||
| AddResults ItemLightList
|
||||
| SelectItem ItemLight
|
||||
| ItemDDMsg DD.Msg
|
||||
|
||||
|
||||
@ -63,19 +62,18 @@ prevItem model id =
|
||||
--- Update
|
||||
|
||||
|
||||
update : Flags -> Msg -> Model -> ( Model, Cmd Msg, Maybe ItemLight )
|
||||
update : Flags -> Msg -> Model -> ( Model, Cmd Msg )
|
||||
update flags msg model =
|
||||
let
|
||||
res =
|
||||
updateDrag DD.init flags msg model
|
||||
in
|
||||
( res.model, res.cmd, res.selected )
|
||||
( res.model, res.cmd )
|
||||
|
||||
|
||||
type alias UpdateResult =
|
||||
{ model : Model
|
||||
, cmd : Cmd Msg
|
||||
, selected : Maybe ItemLight
|
||||
, dragModel : DD.Model
|
||||
}
|
||||
|
||||
@ -93,28 +91,25 @@ updateDrag dm _ msg model =
|
||||
newModel =
|
||||
{ model | results = list }
|
||||
in
|
||||
UpdateResult newModel Cmd.none Nothing dm
|
||||
UpdateResult newModel Cmd.none dm
|
||||
|
||||
AddResults list ->
|
||||
if list.groups == [] then
|
||||
UpdateResult model Cmd.none Nothing dm
|
||||
UpdateResult model Cmd.none dm
|
||||
|
||||
else
|
||||
let
|
||||
newModel =
|
||||
{ model | results = Data.Items.concat model.results list }
|
||||
in
|
||||
UpdateResult newModel Cmd.none Nothing dm
|
||||
|
||||
SelectItem item ->
|
||||
UpdateResult model Cmd.none (Just item) dm
|
||||
UpdateResult newModel Cmd.none dm
|
||||
|
||||
ItemDDMsg lm ->
|
||||
let
|
||||
ddd =
|
||||
DD.update lm dm
|
||||
in
|
||||
UpdateResult model Cmd.none Nothing ddd.model
|
||||
UpdateResult model Cmd.none ddd.model
|
||||
|
||||
|
||||
|
||||
@ -181,8 +176,7 @@ viewItem current settings item =
|
||||
, ( "current", current == Just item.id )
|
||||
]
|
||||
, id item.id
|
||||
, href "#"
|
||||
, onClick (SelectItem item)
|
||||
, Page.href (ItemDetailPage item.id)
|
||||
]
|
||||
++ DD.draggable ItemDDMsg item.id
|
||||
)
|
||||
|
@ -82,21 +82,13 @@ update mId key flags settings msg model =
|
||||
flags
|
||||
m
|
||||
model.itemListModel
|
||||
|
||||
( cmd, id ) =
|
||||
case result.selected of
|
||||
Just item ->
|
||||
( Page.set key (ItemDetailPage item.id), Just item.id )
|
||||
|
||||
Nothing ->
|
||||
( Cmd.none, Nothing )
|
||||
in
|
||||
withSub
|
||||
( { model
|
||||
| itemListModel = result.model
|
||||
, dragDropData = DD.DragDropData result.dragModel Nothing
|
||||
}
|
||||
, Cmd.batch [ Cmd.map ItemCardListMsg result.cmd, cmd ]
|
||||
, Cmd.batch [ Cmd.map ItemCardListMsg result.cmd ]
|
||||
)
|
||||
|
||||
ItemSearchResp (Ok list) ->
|
||||
|
Loading…
x
Reference in New Issue
Block a user