Re-add the button to create new tags in detail view

This commit is contained in:
Eike Kettner
2021-02-19 11:07:42 +01:00
parent 9156e56d65
commit d819878974
6 changed files with 79 additions and 19 deletions

View File

@ -108,6 +108,7 @@ formTabs settings model =
span [ class "invisible hidden" ] []
in
[ { title = "Name"
, titleRight = []
, info = Nothing
, body =
[ div [ class "relative mb-4" ]
@ -133,6 +134,7 @@ formTabs settings model =
]
}
, { title = "Date"
, titleRight = []
, info = Nothing
, body =
[ div [ class "mb-4" ]
@ -157,14 +159,26 @@ formTabs settings model =
]
}
, { title = "Tags"
, titleRight = []
, info = Nothing
, body =
[ div [ class "mb-4" ]
[ div [ class "mb-4 flex flex-col" ]
[ Html.map TagDropdownMsg (Comp.Dropdown.view2 dds settings model.tagModel)
, div [ class "flex flex-row items-center justify-end" ]
[ a
[ class S.secondaryButton
, class "text-xs mt-2"
, href "#"
, onClick StartTagModal
]
[ i [ class "fa fa-plus" ] []
]
]
]
]
}
, { title = "Folder"
, titleRight = []
, info = Nothing
, body =
[ div [ class "mb-4" ]
@ -190,6 +204,7 @@ item visible. This message will disappear then.
]
}
, { title = "Custom Fields"
, titleRight = []
, info = Nothing
, body =
[ div [ class "mb-4" ]
@ -203,6 +218,7 @@ item visible. This message will disappear then.
]
}
, { title = "Due Date"
, titleRight = []
, info = Nothing
, body =
[ div [ class "mb-4" ]
@ -227,6 +243,7 @@ item visible. This message will disappear then.
]
}
, { title = "Correspondent"
, titleRight = []
, info = Nothing
, body =
[ optional [ Data.Fields.CorrOrg ] <|
@ -266,6 +283,7 @@ item visible. This message will disappear then.
]
}
, { title = "Concerning"
, titleRight = []
, info = Nothing
, body =
[ optional [ Data.Fields.ConcPerson ] <|
@ -307,6 +325,7 @@ item visible. This message will disappear then.
]
}
, { title = "Direction"
, titleRight = []
, info = Nothing
, body =
[ div [ class "mb-4" ]

View File

@ -952,6 +952,7 @@ renderEditForm2 cfg settings model =
tabStyle
(tabState settings model)
[ { title = "Confirm/Unconfirm item metadata"
, titleRight = []
, info = Nothing
, body =
[ div
@ -975,6 +976,7 @@ renderEditForm2 cfg settings model =
]
}
, { title = "Tags"
, titleRight = []
, info = Nothing
, body =
[ div [ class "field" ]
@ -997,6 +999,7 @@ renderEditForm2 cfg settings model =
]
}
, { title = "Folder"
, titleRight = []
, info = Nothing
, body =
[ Html.map FolderDropdownMsg (Comp.Dropdown.view2 dds settings model.folderModel)
@ -1015,6 +1018,7 @@ item visible. This message will disappear then.
]
}
, { title = "Custom Fields"
, titleRight = []
, info = Nothing
, body =
[ Html.map CustomFieldMsg
@ -1022,6 +1026,7 @@ item visible. This message will disappear then.
]
}
, { title = "Date"
, titleRight = []
, info = Nothing
, body =
[ div [ class "relative" ]
@ -1043,6 +1048,7 @@ item visible. This message will disappear then.
]
}
, { title = "Due Date"
, titleRight = []
, info = Nothing
, body =
[ div [ class "relative" ]
@ -1064,6 +1070,7 @@ item visible. This message will disappear then.
]
}
, { title = "Correspondent"
, titleRight = []
, info = Nothing
, body =
[ optional [ Data.Fields.CorrOrg ] <|
@ -1088,8 +1095,8 @@ item visible. This message will disappear then.
]
]
}
, { title =
"Concerning"
, { title = "Concerning"
, titleRight = []
, info = Nothing
, body =
[ optional [ Data.Fields.ConcPerson ] <|
@ -1113,12 +1120,14 @@ item visible. This message will disappear then.
]
}
, { title = "Direction"
, titleRight = []
, info = Nothing
, body =
[ Html.map DirDropdownMsg (Comp.Dropdown.view2 dds settings model.directionModel)
]
}
, { title = "Name"
, titleRight = []
, info = Nothing
, body =
[ div [ class "relative" ]