status-desktop/ui
Pascal Precht 209a208455 feat(Components): introduce `StatusChatListAndCategories` component
This is a wrapping component that can be used to render community chat
lists and categories. It takes care of rendering categories, the top
chat list, as well as becominng scrollable in case the content outgrows
the available space.

Usage:

```qml
import StatusQ.Components 0.1

StatusChatListAndCategories {

    chatList.model: ... // non-categorized chat items, pass all chat items here, the component will take care of filtering categorized items out
    categoryListModel: ... // available categories (need to have `id` and `name`)

    selectedChatId: ...

    showCategoryActionButtons: true // default `false` - useful when only admin users can create and mutate categories/channels

    onChatItemSelected: ... // `id` is available for selected chat id

    categoryPopupMenu: StatusPopupMenu { // optional popup menu for category items

        property string categoryId // define this property to have it hydrated with correct id and make it available inside menu items
        ...
    }

    popupMenu: StatusPopupMenu { ... } // optional popup menu for whole list, will be triggered with right-click
}
```

Closes #133
2022-09-21 18:20:02 +02:00
..
StatusQ feat(Components): introduce `StatusChatListAndCategories` component 2022-09-21 18:20:02 +02:00
app fix(Createchat/EditGroupChat view): fixed spacing all over 2022-09-21 17:39:51 +03:00
fonts fix(cpp): make libraries which are not dynamically loaded static 2022-08-02 15:30:08 +02:00
i18n chore(translations): update translations 2022-09-13 12:51:33 +02:00
imports feat(PinnedMessagesPopup): enable Unpin context menu entry 2022-09-21 10:48:20 +02:00
shared/status refactor(@desktop/general): qml code referring to the old code base commented out 2022-02-01 11:42:42 +01:00
generate-rcc.go chore(CPP): foundation for user onboarding 2022-07-07 23:23:09 +02:00
main.qml fix(@desktop/onboarding): use system theme while onboarding 2022-09-02 16:17:43 +03:00
nim-status-client.pro feat(CreateCommunityPopup): Add Community Banner to Create Community Modal 2022-08-18 10:15:04 +02:00