2021-07-21 08:26:31 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import "../../imports"
|
|
|
|
import "../../shared"
|
|
|
|
|
|
|
|
Popup {
|
|
|
|
id: popup
|
|
|
|
property var loading: true
|
|
|
|
property var gifSelected: function () {}
|
|
|
|
property var searchGif: Backpressure.debounce(searchBox, 500, function (query) {
|
|
|
|
loading = true
|
|
|
|
chatsModel.gif.search(query)
|
|
|
|
});
|
|
|
|
property alias searchString: searchBox.text
|
|
|
|
modal: false
|
|
|
|
width: 360
|
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutsideParent
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
radius: Style.current.radius
|
|
|
|
color: Style.current.background
|
|
|
|
border.color: Style.current.border
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow{
|
|
|
|
verticalOffset: 3
|
|
|
|
radius: 8
|
|
|
|
samples: 15
|
|
|
|
fast: true
|
|
|
|
cached: true
|
|
|
|
color: "#22000000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onOpened: {
|
|
|
|
searchBox.text = ""
|
|
|
|
searchBox.forceActiveFocus(Qt.MouseFocusReason)
|
2021-08-02 07:11:28 +00:00
|
|
|
if (appSettings.isTenorWarningAccepted) {
|
|
|
|
chatsModel.gif.load()
|
|
|
|
} else {
|
|
|
|
confirmationPopup.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onClosed: {
|
|
|
|
if (confirmationPopup.opened) {
|
|
|
|
confirmationPopup.close()
|
|
|
|
}
|
2021-07-21 08:26:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: chatsModel.gif
|
2021-07-29 13:33:22 +00:00
|
|
|
onDataLoaded: {
|
2021-07-21 08:26:31 +00:00
|
|
|
loading = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contentItem: ColumnLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
|
|
|
|
|
|
|
Item {
|
|
|
|
property int headerMargin: 8
|
|
|
|
|
|
|
|
id: gifHeader
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: searchBox.height + gifHeader.headerMargin
|
|
|
|
|
|
|
|
SearchBox {
|
|
|
|
id: searchBox
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: gifHeader.headerMargin
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: gifHeader.headerMargin
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.leftMargin: gifHeader.headerMargin
|
|
|
|
Keys.onReleased: {
|
|
|
|
Qt.callLater(searchGif, searchBox.text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-02 07:11:28 +00:00
|
|
|
StyledText {
|
|
|
|
text: qsTr("TRENDING")
|
|
|
|
visible: searchBox.text === ""
|
|
|
|
color: Style.current.secondaryText
|
|
|
|
font.pixelSize: 13
|
|
|
|
topPadding: gifHeader.headerMargin
|
|
|
|
leftPadding: gifHeader.headerMargin
|
|
|
|
}
|
|
|
|
|
2021-07-21 08:26:31 +00:00
|
|
|
Loader {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.rightMargin: Style.current.smallPadding / 2
|
|
|
|
Layout.alignment: Qt.AlignTop | Qt.AlignLeft
|
|
|
|
Layout.preferredHeight: 400 - gifHeader.height
|
2021-08-02 07:11:28 +00:00
|
|
|
sourceComponent: gifItems
|
2021-07-21 08:26:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-02 07:11:28 +00:00
|
|
|
Popup {
|
|
|
|
id: confirmationPopup
|
|
|
|
modal: false
|
|
|
|
anchors.centerIn: parent
|
|
|
|
height: 290
|
|
|
|
width: 280
|
|
|
|
closePolicy: Popup.NoAutoClose
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
radius: Style.current.radius
|
|
|
|
color: Style.current.background
|
|
|
|
border.color: Style.current.border
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow{
|
|
|
|
verticalOffset: 3
|
|
|
|
radius: 8
|
|
|
|
samples: 15
|
|
|
|
fast: true
|
|
|
|
cached: true
|
|
|
|
color: "#22000000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Column {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 12
|
|
|
|
|
|
|
|
SVGImage {
|
|
|
|
id: gifImage
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
source: "./assets/img/gif.svg"
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: title
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
text: qsTr("Enable Tenor GIFs?")
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
|
|
}
|
|
|
|
|
|
|
|
StyledText {
|
|
|
|
id: headline
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
text: qsTr("Once enabled, GIFs posted in the chat may share your metadata with Tenor.")
|
|
|
|
width: parent.width
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
font.pixelSize: 13
|
|
|
|
color: Style.current.secondaryText
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusButton {
|
|
|
|
id: removeBtn
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
//% "Remove"
|
|
|
|
text: qsTrId("Enable")
|
|
|
|
onClicked: {
|
|
|
|
appSettings.isTenorWarningAccepted = true
|
|
|
|
chatsModel.gif.load()
|
|
|
|
confirmationPopup.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-21 08:26:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: gifItems
|
2021-07-29 13:33:22 +00:00
|
|
|
|
2021-07-21 08:26:31 +00:00
|
|
|
ScrollView {
|
|
|
|
id: scrollView
|
|
|
|
property ScrollBar vScrollBar: ScrollBar.vertical
|
|
|
|
clip: true
|
|
|
|
topPadding: Style.current.smallPadding
|
|
|
|
leftPadding: Style.current.smallPadding
|
|
|
|
rightPadding: Style.current.smallPadding
|
|
|
|
ScrollBar.vertical.policy: ScrollBar.AlwaysOn
|
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
|
2021-07-29 13:33:22 +00:00
|
|
|
Row {
|
2021-07-21 08:26:31 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
2021-08-02 07:11:28 +00:00
|
|
|
spacing: Style.current.halfPadding
|
2021-07-21 08:26:31 +00:00
|
|
|
|
2021-07-29 13:33:22 +00:00
|
|
|
StatusGifColumn {
|
|
|
|
gifList.model: chatsModel.gif.columnA
|
2021-08-02 07:11:28 +00:00
|
|
|
gifWidth: (popup.width / 3) - Style.current.padding
|
2021-07-29 13:33:22 +00:00
|
|
|
gifSelected: popup.gifSelected
|
|
|
|
}
|
2021-07-21 08:26:31 +00:00
|
|
|
|
2021-07-29 13:33:22 +00:00
|
|
|
StatusGifColumn {
|
|
|
|
gifList.model: chatsModel.gif.columnB
|
2021-08-02 07:11:28 +00:00
|
|
|
gifWidth: (popup.width / 3) - Style.current.padding
|
2021-07-29 13:33:22 +00:00
|
|
|
gifSelected: popup.gifSelected
|
|
|
|
}
|
2021-07-21 08:26:31 +00:00
|
|
|
|
2021-07-29 13:33:22 +00:00
|
|
|
StatusGifColumn {
|
|
|
|
gifList.model: chatsModel.gif.columnC
|
2021-08-02 07:11:28 +00:00
|
|
|
gifWidth: (popup.width / 3) - Style.current.padding
|
2021-07-29 13:33:22 +00:00
|
|
|
gifSelected: popup.gifSelected
|
2021-07-21 08:26:31 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-29 13:33:22 +00:00
|
|
|
|
2021-07-21 08:26:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#ffffff";height:440;width:360}
|
|
|
|
}
|
|
|
|
##^##*/
|