mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 19:47:21 +01:00
add total count on mouseover, make syncshell windows non-blocking
This commit is contained in:
parent
d7bfa2147f
commit
984ee08a2b
12 changed files with 73 additions and 62 deletions
|
|
@ -35,17 +35,17 @@ public class DrawEntityFactory
|
|||
_serverConfigurationManager = serverConfigurationManager;
|
||||
}
|
||||
|
||||
public DrawFolderGroup CreateDrawGroupFolder(GroupFullInfoDto groupFullInfoDto, Dictionary<Pair, List<GroupFullInfoDto>> pairs)
|
||||
public DrawFolderGroup CreateDrawGroupFolder(GroupFullInfoDto groupFullInfoDto, Dictionary<Pair, List<GroupFullInfoDto>> pairs, int totalPairs = -1)
|
||||
{
|
||||
return new DrawFolderGroup(groupFullInfoDto.Group.GID, groupFullInfoDto, _apiController,
|
||||
pairs.Select(p => CreateDrawPair(groupFullInfoDto.Group.GID + p.Key.UserData.UID, p.Key, p.Value)).ToList(),
|
||||
_tagHandler, _uidDisplayHandler, _mediator);
|
||||
_tagHandler, _uidDisplayHandler, _mediator, totalPairs);
|
||||
}
|
||||
|
||||
public DrawFolderTag CreateDrawTagFolder(string tag, Dictionary<Pair, List<GroupFullInfoDto>> pairs)
|
||||
public DrawFolderTag CreateDrawTagFolder(string tag, Dictionary<Pair, List<GroupFullInfoDto>> pairs, int totalPairs = -1)
|
||||
{
|
||||
return new(tag, pairs.Select(u => CreateDrawPair(tag, u.Key, u.Value)).ToList(),
|
||||
_tagHandler, _apiController, _selectPairForTagUi);
|
||||
_tagHandler, _apiController, _selectPairForTagUi, totalPairs);
|
||||
}
|
||||
|
||||
public DrawUserPair CreateDrawPair(string id, Pair user, List<GroupFullInfoDto> groups)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue