nheko/resources/qml/delegates/PlayableMediaMessage.qml

153 lines
3.2 KiB
QML
Raw Normal View History

2019-10-05 23:11:20 +02:00
import QtQuick 2.6
import QtQuick.Layouts 1.6
2019-10-06 00:27:18 +02:00
import QtQuick.Controls 2.5
import QtMultimedia 5.6
2019-10-05 23:11:20 +02:00
import com.github.nheko 1.0
2019-10-05 23:11:20 +02:00
Rectangle {
radius: 10
color: colors.dark
2019-10-06 00:27:18 +02:00
height: content.height + 24
2019-10-05 23:11:20 +02:00
width: parent.width
2019-10-06 00:27:18 +02:00
ColumnLayout {
id: content
2019-10-05 23:11:20 +02:00
width: parent.width - 24
2019-10-06 00:27:18 +02:00
anchors.centerIn: parent
VideoOutput {
visible: eventData.type == MtxEvent.VideoMessage
Layout.maximumHeight: 300
Layout.minimumHeight: 300
Layout.maximumWidth: 500
fillMode: VideoOutput.PreserveAspectFit
source: media
}
2019-10-06 00:27:18 +02:00
RowLayout {
Text {
id: positionText
text: "--:--:--"
color: colors.text
}
Slider {
Layout.fillWidth: true
id: progress
value: media.position
from: 0
to: media.duration
onMoved: media.seek(value)
//indeterminate: true
function updatePositionTexts() {
function formatTime(date) {
var hh = date.getUTCHours();
var mm = date.getUTCMinutes();
var ss = date.getSeconds();
if (hh < 10) {hh = "0"+hh;}
if (mm < 10) {mm = "0"+mm;}
if (ss < 10) {ss = "0"+ss;}
return hh+":"+mm+":"+ss;
}
positionText.text = formatTime(new Date(media.position))
durationText.text = formatTime(new Date(media.duration))
}
onValueChanged: updatePositionTexts()
}
Text {
id: durationText
text: "--:--:--"
color: colors.text
}
}
2019-10-05 23:11:20 +02:00
2019-10-06 00:27:18 +02:00
RowLayout {
width: parent.width
2019-10-05 23:11:20 +02:00
2019-10-06 00:27:18 +02:00
spacing: 15
2019-10-05 23:11:20 +02:00
2019-10-06 00:27:18 +02:00
Rectangle {
id: button
color: colors.light
radius: 22
height: 44
width: 44
Image {
id: img
anchors.centerIn: parent
2019-10-05 23:11:20 +02:00
2019-10-06 00:27:18 +02:00
source: "qrc:/icons/icons/ui/arrow-pointing-down.png"
fillMode: Image.Pad
}
MouseArea {
anchors.fill: parent
onClicked: {
switch (button.state) {
case "": timelineManager.cacheMedia(eventData.url, eventData.mimetype); break;
case "stopped":
media.play(); console.log("play");
2019-10-05 23:11:20 +02:00
button.state = "playing"
break
2019-10-06 00:27:18 +02:00
case "playing":
media.pause(); console.log("pause");
2019-10-05 23:11:20 +02:00
button.state = "stopped"
break
2019-10-06 00:27:18 +02:00
}
2019-10-05 23:11:20 +02:00
}
2019-10-06 00:27:18 +02:00
cursorShape: Qt.PointingHandCursor
}
MediaPlayer {
id: media
onError: console.log(errorString)
onStatusChanged: if(status == MediaPlayer.Loaded) progress.updatePositionTexts()
autoPlay: true
2019-10-05 23:11:20 +02:00
}
2019-10-06 00:27:18 +02:00
Connections {
target: timelineManager
onMediaCached: {
if (mxcUrl == eventData.url) {
media.source = "file://" + cacheUrl
button.state = "stopped"
console.log("media loaded: " + mxcUrl + " at " + cacheUrl)
}
console.log("media cached: " + mxcUrl + " at " + cacheUrl)
2019-10-05 23:11:20 +02:00
}
}
2019-10-06 00:27:18 +02:00
states: [
State {
name: "stopped"
PropertyChanges { target: img; source: "qrc:/icons/icons/ui/play-sign.png" }
},
State {
name: "playing"
PropertyChanges { target: img; source: "qrc:/icons/icons/ui/pause-symbol.png" }
}
]
2019-10-05 23:11:20 +02:00
}
2019-10-06 00:27:18 +02:00
ColumnLayout {
id: col
2019-10-05 23:11:20 +02:00
2019-10-06 00:27:18 +02:00
Text {
Layout.fillWidth: true
text: eventData.body
textFormat: Text.PlainText
elide: Text.ElideRight
color: colors.text
}
Text {
Layout.fillWidth: true
text: eventData.filesize
textFormat: Text.PlainText
elide: Text.ElideRight
color: colors.text
2019-10-05 23:11:20 +02:00
}
}
}
}
}