webapp: Repository costs can be configured by dragging repositories around in the repository list.
This commit is contained in:
parent
6af91dadb8
commit
99dc302d06
3 changed files with 28 additions and 25 deletions
|
@ -27,6 +27,7 @@ import qualified Git
|
|||
#endif
|
||||
|
||||
import qualified Data.Map as M
|
||||
import qualified Data.Text as T
|
||||
|
||||
{- An intro message, list of repositories, and nudge to make more. -}
|
||||
introDisplay :: Text -> Widget
|
||||
|
@ -196,33 +197,33 @@ flipSync enable uuid = do
|
|||
|
||||
getRepositoriesReorderR :: Handler ()
|
||||
getRepositoriesReorderR = do
|
||||
moved <- runInputGet $ ireq textField "moved"
|
||||
list <- lookupGetParams "list[]"
|
||||
error $ show (moved, list)
|
||||
|
||||
reorderRepository :: UUID -> Handler ()
|
||||
reorderRepository uuid = do
|
||||
{- Get uuid of the moved item, and the list it was moved within. -}
|
||||
moved <- fromjs <$> runInputGet (ireq textField "moved")
|
||||
list <- map fromjs <$> lookupGetParams "list[]"
|
||||
void $ liftAnnex $ do
|
||||
{- The list may have an item for the current repository,
|
||||
- which needs to be filtered out, as it does not have a
|
||||
- cost. -}
|
||||
u <- getUUID
|
||||
let list' = filter (/= u) list
|
||||
remote <- fromMaybe (error "Unknown UUID") <$>
|
||||
Remote.remoteFromUUID uuid
|
||||
Remote.remoteFromUUID moved
|
||||
rs <- Remote.enabledRemoteList
|
||||
let us = map Remote.uuid rs
|
||||
case afteruuid us >>= (\u -> elemIndex u us) of
|
||||
Nothing -> noop -- already at end
|
||||
Just i -> do
|
||||
let rs' = filter other rs
|
||||
let costs = map Remote.cost rs'
|
||||
let rs'' = (\(x, y) -> x ++ [remote] ++ y) $
|
||||
splitAt (i + 1) rs'
|
||||
let l = zip rs'' (insertCostAfter costs i)
|
||||
forM_ l $ \(r, newcost) ->
|
||||
when (Remote.cost r /= newcost) $
|
||||
setRemoteCost r newcost
|
||||
forM_ (reorderCosts moved list' remote rs) $ \(r, newcost) ->
|
||||
when (Remote.cost r /= newcost) $
|
||||
setRemoteCost r newcost
|
||||
remoteListRefresh
|
||||
liftAssistant updateSyncRemotes
|
||||
where
|
||||
afteruuid [] = Nothing
|
||||
afteruuid (u:us)
|
||||
| u == uuid = headMaybe us
|
||||
| otherwise = afteruuid us
|
||||
other r = Remote.uuid r /= uuid
|
||||
fromjs = toUUID . snd . separate (== '_') . T.unpack
|
||||
|
||||
reorderCosts :: UUID -> [UUID] -> Remote -> [Remote] -> [(Remote, Cost)]
|
||||
reorderCosts moved list remote rs = zip rs'' (insertCostAfter costs i)
|
||||
where
|
||||
{- Find the index of the item in the list that the item
|
||||
- was moved to be after.
|
||||
- If it was moved to the start of the list, -1 -}
|
||||
i = fromMaybe 0 (elemIndex moved list) - 1
|
||||
rs' = filter (\r -> Remote.uuid r /= moved) rs
|
||||
costs = map Remote.cost rs'
|
||||
rs'' = (\(x, y) -> x ++ [remote] ++ y) $ splitAt (i + 1) rs'
|
||||
|
|
2
debian/changelog
vendored
2
debian/changelog
vendored
|
@ -56,6 +56,8 @@ git-annex (4.20130228) UNRELEASED; urgency=low
|
|||
(See https://github.com/yesodweb/wai/issues/146)
|
||||
* webapp: New preferences page allows enabling/disabling debug logging
|
||||
at runtime, as well as configuring numcopies and diskreserve.
|
||||
* webapp: Repository costs can be configured by dragging repositories around
|
||||
in the repository list.
|
||||
* webapp: Proceed automatically on from "Configure jabber account"
|
||||
to pairing.
|
||||
* webapp: Only show up to 10 queued transfers.
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
Repositories
|
||||
<table .table .table-condensed>
|
||||
<tbody #costsortable>
|
||||
$forall (num, name, (uuid, actions)) <- repolist
|
||||
$forall (_num, name, (uuid, actions)) <- repolist
|
||||
<tr .repoline ##{"costsortable_" ++ fromUUID uuid}>
|
||||
<td .handle>
|
||||
<i .icon-resize-vertical></i>
|
||||
|
|
Loading…
Add table
Reference in a new issue