-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(@desktop/general): copy button identified, will be mostly used a…
…s a built in component
- Loading branch information
1 parent
d8b1e47
commit 0ef3096
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import QtQuick 2.15 | ||
import QtQuick.Controls 2.15 | ||
|
||
import StatusQ.Core 0.1 | ||
import StatusQ.Core.Theme 0.1 | ||
|
||
import utils 1.0 | ||
import shared.stores 1.0 | ||
|
||
StatusIcon { | ||
id: root | ||
|
||
required property string textToCopy | ||
|
||
icon: "copy" | ||
color: mouseArea.containsMouse? Theme.palette.primaryColor1 : Theme.palette.baseColor1 | ||
|
||
function reset() { | ||
root.icon = "copy" | ||
root.color = Qt.binding(function(){ return mouseArea.containsMouse? Theme.palette.primaryColor1 : Theme.palette.baseColor1 }) | ||
} | ||
|
||
MouseArea { | ||
id: mouseArea | ||
anchors.fill: parent | ||
hoverEnabled: true | ||
cursorShape: containsMouse ? Qt.PointingHandCursor : Qt.ArrowCursor | ||
onClicked: { | ||
RootStore.copyToClipboard(root.textToCopy) | ||
root.icon = "tiny/checkmark" | ||
root.color = Theme.palette.successColor1 | ||
|
||
Backpressure.debounce(root, 1500, function () { | ||
root.reset() | ||
})() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters