aboutsummaryrefslogtreecommitdiffstats
path: root/desktop/modules/kdeconnect/KdeConnectTile.qml
blob: fa7fc3bfc7f14f84d3db938b0448be27f97a632a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (C) 2026 Danilo M. <danix@danix.xyz>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

import QtQuick
import "../.."

// The state line under the tile label, and the poll's lifetime: the tile
// exists exactly while the drawer panel is loaded, so it turns polling on and
// off. Without this the module would poll while the drawer is closed, which
// nothing needs.
Item {
    id: tile

    required property var kc

    width: parent ? parent.width : implicitWidth
    implicitHeight: state.implicitHeight

    Component.onCompleted: kc.polling = true
    Component.onDestruction: kc.polling = false

    Text {
        id: state
        width: parent.width
        elide: Text.ElideRight
        font { family: Theme.fontFamily; pixelSize: Theme.fontSize - 4 }
        color: tile.kc.anyReachable ? Theme.text : Theme.subtext
        text: {
            const r = tile.kc.reachable;
            if (r.length === 1)
                return r[0].charge !== "" ? r[0].name + "  " + r[0].charge + "%" : r[0].name;
            if (r.length > 1) return r.length + " connected";
            if (tile.kc.paired.length > 0) return "Offline";
            return "No devices";
        }
    }
}