Skip to content
Snippets Groups Projects
Completer.qml 8.11 KiB
Newer Older
Nicolas Werner's avatar
Nicolas Werner committed
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-License-Identifier: GPL-3.0-or-later

Joe Donofry's avatar
Joe Donofry committed
import "./ui"
Nicolas Werner's avatar
Nicolas Werner committed
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
Nicolas Werner's avatar
Nicolas Werner committed
import im.nheko 1.0

Popup {
    id: popup

    property int currentIndex: -1
    property string completerName
    property var completer
    property bool bottomToTop: true
    property bool fullWidth: false
Jedi18's avatar
Jedi18 committed
    property bool centerRowContent: true
Jedi18's avatar
Jedi18 committed
    property int avatarHeight: 24
    property int avatarWidth: 24
    property int rowMargin: 0
    property int rowSpacing: 5
    property alias count: listView.count
Nicolas Werner's avatar
Nicolas Werner committed

    signal completionClicked(string completion)
    signal completionSelected(string id)
Nicolas Werner's avatar
Nicolas Werner committed
    function up() {
        if (bottomToTop)
            down_();
        else
            up_();
    }

    function down() {
        if (bottomToTop)
            up_();
        else
            down_();
    }

    function up_() {
Nicolas Werner's avatar
Nicolas Werner committed
        currentIndex = currentIndex - 1;
        if (currentIndex == -2)
            currentIndex = listView.count - 1;
    function down_() {
Nicolas Werner's avatar
Nicolas Werner committed
        currentIndex = currentIndex + 1;
        if (currentIndex >= listView.count)
Nicolas Werner's avatar
Nicolas Werner committed
            currentIndex = -1;

    }

    function currentCompletion() {
        if (currentIndex > -1 && currentIndex < listView.count)
Nicolas Werner's avatar
Nicolas Werner committed
            return completer.completionAt(currentIndex);
        else
            return null;
    }

    function finishCompletion() {
        if (popup.completerName == "room")
            popup.completionSelected(listView.itemAtIndex(currentIndex).modelData.roomid);

Nicolas Werner's avatar
Nicolas Werner committed
    onCompleterNameChanged: {
        if (completerName) {
            if (completerName == "user")
                completer = TimelineManager.completerFor(completerName, TimelineManager.timeline.roomId());
                completer = TimelineManager.completerFor(completerName);
            completer.setSearchString("");
        } else {
Nicolas Werner's avatar
Nicolas Werner committed
            completer = undefined;
Nicolas Werner's avatar
Nicolas Werner committed
    }
Nicolas Werner's avatar
Nicolas Werner committed
    onAboutToShow: currentIndex = -1
    height: listView.contentHeight + 2 // + 2 for the padding on top and bottom
Nicolas Werner's avatar
Nicolas Werner committed

Nicolas Werner's avatar
Nicolas Werner committed
    Connections {
        onTimelineChanged: completer = null
        target: TimelineManager
    }

    ListView {
        id: listView
Nicolas Werner's avatar
Nicolas Werner committed

        anchors.fill: parent
        implicitWidth: fullWidth ? parent.width : contentItem.childrenRect.width
        model: completer
        verticalLayoutDirection: popup.bottomToTop ? ListView.BottomToTop : ListView.TopToBottom
Nicolas Werner's avatar
Nicolas Werner committed

        delegate: Rectangle {
            property variant modelData: model

            color: model.index == popup.currentIndex ? colors.highlight : colors.base
            height: chooser.childrenRect.height + 2 * popup.rowMargin
            implicitWidth: fullWidth ? popup.width : chooser.childrenRect.width + 4
Nicolas Werner's avatar
Nicolas Werner committed

            MouseArea {
Joe Donofry's avatar
Joe Donofry committed
                id: mouseArea

                anchors.fill: parent
                hoverEnabled: true
                onPositionChanged: popup.currentIndex = model.index
                    popup.completionClicked(completer.completionAt(model.index));
                    if (popup.completerName == "room")
                        popup.completionSelected(model.roomid);

Joe Donofry's avatar
Joe Donofry committed

                Ripple {
                    rippleTarget: mouseArea
                    color: Qt.rgba(colors.base.r, colors.base.g, colors.base.b, 0.5)
                }

            DelegateChooser {
                id: chooser
Nicolas Werner's avatar
Nicolas Werner committed

                roleValue: popup.completerName
                anchors.fill: parent
                anchors.margins: popup.rowMargin
                DelegateChoice {
                    roleValue: "user"
                    RowLayout {
                        id: del
                        anchors.centerIn: parent
                        Avatar {
Jedi18's avatar
Jedi18 committed
                            height: popup.avatarHeight
                            width: popup.avatarWidth
                            displayName: model.displayName
                            url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
                            onClicked: popup.completionClicked(completer.completionAt(model.index))
                        Label {
                            text: model.displayName
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.text
                        Label {
                            text: "(" + model.userid + ")"
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.buttonText
                        }

                DelegateChoice {
                    roleValue: "emoji"
                    RowLayout {
                        id: del
                        anchors.centerIn: parent
                        Label {
                            text: model.unicode
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.text
                            font: Settings.emojiFont
                        }
                        Label {
                            text: model.shortName
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.text
                DelegateChoice {
                    roleValue: "room"

                    RowLayout {
                        id: del

                        anchors.centerIn: centerRowContent ? parent : undefined
                        spacing: rowSpacing
Jedi18's avatar
Jedi18 committed
                            height: popup.avatarHeight
                            width: popup.avatarWidth
                            url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
                                popup.completionClicked(completer.completionAt(model.index));
                                popup.completionSelected(model.roomid);
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.text
                        }

                    }

                }

                DelegateChoice {
                    roleValue: "roomAliases"

                    RowLayout {
                        id: del

                        anchors.centerIn: parent
Jedi18's avatar
Jedi18 committed
                            height: popup.avatarHeight
                            width: popup.avatarWidth
                            url: model.avatarUrl.replace("mxc://", "image://MxcImage/")
                            onClicked: popup.completionClicked(completer.completionAt(model.index))
                        }

                        Label {
                            text: model.roomName
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.text
                        }

                        Label {
                            text: "(" + model.roomAlias + ")"
                            color: model.index == popup.currentIndex ? colors.highlightedText : colors.buttonText
                        }

                    }

                }

Nicolas Werner's avatar
Nicolas Werner committed
            }

        }

    }

    enter: Transition {
        NumberAnimation {
            property: "opacity"
            from: 0
            to: 1
            duration: 100
        }

    }

    exit: Transition {
        NumberAnimation {
            property: "opacity"
            from: 1
            to: 0
            duration: 100
        }

    }

    background: Rectangle {
        color: colors.base
Nicolas Werner's avatar
Nicolas Werner committed
        implicitHeight: popup.contentHeight
        implicitWidth: popup.contentWidth
        border.color: colors.mid