2020-06-17 19:18:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2020-06-17 19:31:01 +00:00
|
|
|
import "../imports"
|
2020-08-14 19:19:08 +00:00
|
|
|
import "."
|
2020-05-29 17:42:25 +00:00
|
|
|
|
|
|
|
Item {
|
2020-05-29 19:54:06 +00:00
|
|
|
property alias textField: inputValue
|
2020-05-29 17:42:25 +00:00
|
|
|
property string placeholderText: "My placeholder"
|
2020-08-06 07:25:53 +00:00
|
|
|
property string placeholderTextColor: Style.current.secondaryText
|
2020-06-04 14:53:10 +00:00
|
|
|
property alias text: inputValue.text
|
2020-06-22 15:51:15 +00:00
|
|
|
property string validationError: ""
|
2020-08-06 07:25:53 +00:00
|
|
|
property alias validationErrorAlignment: validationErrorText.horizontalAlignment
|
|
|
|
property int validationErrorTopMargin: 1
|
2020-05-29 17:42:25 +00:00
|
|
|
property string label: ""
|
2020-06-10 14:11:06 +00:00
|
|
|
readonly property bool hasLabel: label !== ""
|
2020-07-22 20:16:06 +00:00
|
|
|
property color bgColor: Style.current.inputBackground
|
2020-05-29 17:42:25 +00:00
|
|
|
property url icon: ""
|
2020-06-15 16:24:21 +00:00
|
|
|
property int iconHeight: 24
|
|
|
|
property int iconWidth: 24
|
2020-08-14 19:19:08 +00:00
|
|
|
property bool copyToClipboard: false
|
2020-09-03 20:43:08 +00:00
|
|
|
property bool readOnly: false
|
2020-06-15 16:24:21 +00:00
|
|
|
|
2020-05-29 17:42:25 +00:00
|
|
|
readonly property bool hasIcon: icon.toString() !== ""
|
|
|
|
readonly property var forceActiveFocus: function () {
|
|
|
|
inputValue.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
}
|
|
|
|
readonly property int labelMargin: 7
|
2020-06-08 19:30:22 +00:00
|
|
|
property int customHeight: 44
|
2020-06-15 16:24:21 +00:00
|
|
|
property int fontPixelSize: 15
|
2020-07-24 11:27:26 +00:00
|
|
|
signal editingFinished(string inputValue)
|
2020-08-06 07:25:53 +00:00
|
|
|
signal textEdited(string inputValue)
|
2020-05-29 17:42:25 +00:00
|
|
|
|
|
|
|
id: inputBox
|
2020-08-06 07:25:53 +00:00
|
|
|
height: inputRectangle.height + (hasLabel ? inputLabel.height + labelMargin : 0) + (!!validationError ? (validationErrorText.height + validationErrorTopMargin) : 0)
|
2020-06-04 14:53:10 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
2020-05-29 17:42:25 +00:00
|
|
|
|
2020-08-20 04:45:29 +00:00
|
|
|
function resetInternal() {
|
|
|
|
inputValue.text = ""
|
|
|
|
validationError = ""
|
|
|
|
}
|
|
|
|
|
2020-06-19 18:06:58 +00:00
|
|
|
StyledText {
|
2020-05-29 17:42:25 +00:00
|
|
|
id: inputLabel
|
|
|
|
text: inputBox.label
|
|
|
|
font.weight: Font.Medium
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: 0
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 0
|
|
|
|
font.pixelSize: 13
|
2020-07-13 18:45:54 +00:00
|
|
|
color: Style.current.textColor
|
2020-05-29 17:42:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: inputRectangle
|
2020-06-08 19:30:22 +00:00
|
|
|
height: customHeight
|
2020-06-04 18:56:04 +00:00
|
|
|
color: bgColor
|
2020-07-22 20:16:06 +00:00
|
|
|
radius: Style.current.radius
|
2020-05-29 17:42:25 +00:00
|
|
|
anchors.top: inputBox.hasLabel ? inputLabel.bottom : parent.top
|
|
|
|
anchors.topMargin: inputBox.hasLabel ? inputBox.labelMargin : 0
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.left: parent.left
|
2020-08-20 04:45:29 +00:00
|
|
|
border.width: (!!validationError || inputValue.focus) ? 1 : 0
|
|
|
|
border.color: {
|
|
|
|
if (!!validationError) {
|
|
|
|
return Style.current.danger
|
|
|
|
}
|
2020-09-03 20:43:08 +00:00
|
|
|
if (!inputBox.readOnly && inputValue.focus) {
|
2020-08-20 04:45:29 +00:00
|
|
|
return Style.current.inputBorderFocus
|
|
|
|
}
|
|
|
|
return Style.current.transparent
|
|
|
|
}
|
2020-06-22 15:51:15 +00:00
|
|
|
|
2020-06-19 18:21:02 +00:00
|
|
|
StyledTextField {
|
2020-05-29 17:42:25 +00:00
|
|
|
id: inputValue
|
2020-06-08 19:30:22 +00:00
|
|
|
visible: !inputBox.isTextArea && !inputBox.isSelect
|
2020-05-29 17:42:25 +00:00
|
|
|
placeholderText: inputBox.placeholderText
|
2020-08-06 07:25:53 +00:00
|
|
|
placeholderTextColor: inputBox.placeholderTextColor
|
2020-06-15 16:24:21 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 0
|
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
anchors.bottomMargin: 0
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: parent.rightMargin
|
2020-05-29 17:42:25 +00:00
|
|
|
anchors.left: parent.left
|
2020-06-15 16:24:21 +00:00
|
|
|
anchors.leftMargin: 0
|
2020-07-02 15:14:31 +00:00
|
|
|
leftPadding: inputBox.hasIcon ? iconWidth + 20 : Style.current.padding
|
2020-06-15 16:24:21 +00:00
|
|
|
selectByMouse: true
|
|
|
|
font.pixelSize: fontPixelSize
|
2020-09-03 20:43:08 +00:00
|
|
|
readOnly: inputBox.readOnly
|
2020-05-29 17:42:25 +00:00
|
|
|
background: Rectangle {
|
2020-07-22 20:16:06 +00:00
|
|
|
color: Style.current.transparent
|
2020-05-29 17:42:25 +00:00
|
|
|
}
|
2020-07-24 11:27:26 +00:00
|
|
|
onEditingFinished: inputBox.editingFinished(inputBox.text)
|
2020-08-06 07:25:53 +00:00
|
|
|
onTextEdited: inputBox.textEdited(inputBox.text)
|
2020-05-29 17:42:25 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 13:23:17 +00:00
|
|
|
SVGImage {
|
2020-05-29 17:42:25 +00:00
|
|
|
id: iconImg
|
2020-06-15 16:24:21 +00:00
|
|
|
sourceSize.height: iconHeight
|
|
|
|
sourceSize.width: iconWidth
|
2020-05-29 17:42:25 +00:00
|
|
|
anchors.left: parent.left
|
2020-07-02 15:14:31 +00:00
|
|
|
anchors.leftMargin: Style.current.smallPadding
|
2020-05-29 17:42:25 +00:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
source: inputBox.icon
|
|
|
|
}
|
2020-08-14 19:19:08 +00:00
|
|
|
|
|
|
|
Loader {
|
|
|
|
active: inputBox.copyToClipboard
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 8
|
|
|
|
sourceComponent: copyToClipboardComponent
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: copyToClipboardComponent
|
|
|
|
|
|
|
|
Item {
|
|
|
|
width: copyBtn.width
|
|
|
|
height: copyBtn.height
|
|
|
|
|
|
|
|
Timer {
|
|
|
|
id: timer
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledButton {
|
|
|
|
id: copyBtn
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Copy"
|
|
|
|
label: qsTrId("copy-to-clipboard")
|
2020-08-14 19:19:08 +00:00
|
|
|
height: 28
|
|
|
|
textSize: 12
|
|
|
|
btnBorderColor: Style.current.blue
|
|
|
|
btnBorderWidth: 1
|
|
|
|
onClicked: {
|
|
|
|
chatsModel.copyToClipboard(inputValue.text)
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Copied"
|
|
|
|
copyBtn.label = qsTrId("sharing-copied-to-clipboard")
|
2020-08-14 19:19:08 +00:00
|
|
|
timer.setTimeout(function(){
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Copy"
|
|
|
|
copyBtn.label = qsTrId("copy-to-clipboard")
|
2020-08-14 19:19:08 +00:00
|
|
|
}, 2000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-29 17:42:25 +00:00
|
|
|
}
|
2020-06-22 15:51:15 +00:00
|
|
|
|
|
|
|
TextEdit {
|
|
|
|
visible: !!validationError
|
|
|
|
id: validationErrorText
|
|
|
|
text: validationError
|
|
|
|
anchors.top: inputRectangle.bottom
|
2020-08-06 07:25:53 +00:00
|
|
|
anchors.topMargin: validationErrorTopMargin
|
2020-06-22 15:51:15 +00:00
|
|
|
selectByMouse: true
|
|
|
|
readOnly: true
|
|
|
|
font.pixelSize: 12
|
2020-08-06 07:25:53 +00:00
|
|
|
height: 16
|
|
|
|
color: Style.current.danger
|
|
|
|
width: parent.width
|
2020-06-22 15:51:15 +00:00
|
|
|
}
|
2020-05-29 17:42:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-06-22 15:51:15 +00:00
|
|
|
D{i:0;formeditorColor:"#c0c0c0";formeditorZoom:1.25}
|
2020-05-29 17:42:25 +00:00
|
|
|
}
|
|
|
|
##^##*/
|