Merge pull request #444 from eikek/fix-eye-link

Use js pdf renderer for file view when settings tell so
This commit is contained in:
mergify[bot] 2020-11-15 00:23:16 +00:00 committed by GitHub
commit 41db574e26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -187,7 +187,7 @@ view cfg settings model item =
else
[ selectedDimmer
, previewMenu model item (currentAttachment model item)
, previewMenu settings model item (currentAttachment model item)
, previewImage settings cardAction model item
]
)
@ -407,16 +407,23 @@ previewImage settings cardAction model item =
]
previewMenu : Model -> ItemLight -> Maybe AttachmentLight -> Html Msg
previewMenu model item mainAttach =
previewMenu : UiSettings -> Model -> ItemLight -> Maybe AttachmentLight -> Html Msg
previewMenu settings model item mainAttach =
let
pageCount =
Maybe.andThen .pageCount mainAttach
|> Maybe.withDefault 0
mkAttachUrl id =
if settings.nativePdfPreview then
Api.fileURL id
else
Api.fileURL id ++ "/view"
attachUrl =
Maybe.map .id mainAttach
|> Maybe.map ((++) "/api/v1/sec/attachment/")
|> Maybe.map mkAttachUrl
|> Maybe.withDefault "/api/v1/sec/attachment/none"
gotoFileBtn =