summaryrefslogtreecommitdiff
path: root/Course/Detail/Classic/Content/Sidebar/Video.ui.qml
blob: 2518da2040b4011a77836ea8e46adfa6960fff87 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import QtGraphicalEffects 1.15
import QtMultimedia 5.15
import Bootstrap 5.3
import Eduport 1.4
import "../../../../../Button" as Btn
import "../../../../../Button/Outline" as BtnOutline

ColumnLayout {
	property alias image: image
	property alias play: play
	property alias mediaPlayer: mediaPlayer
	property alias initialPrice: initialPrice
	property string priceText: "$150"
	property alias discount: discount
	property alias time: time
	property alias share: share
	property alias shareMenu: shareMenu
	property alias shareList: shareList
	property alias trial: trial
	property alias buy: buy
	spacing: 16

	Image {
		id: image
		Layout.fillWidth: true
		Layout.maximumHeight: width * 400 / 533
		source: "https://eduport.webestica.com/assets/images/courses/4by3/01.jpg"
		fillMode: Image.PreserveAspectFit
		layer.enabled: true
		layer.effect: OpacityMask {
			maskSource: Rectangle {
				width: image.width
				height: image.height
				radius: 8
			}
		}

		MediaPlayer {
			id: mediaPlayer
		}

		VideoOutput {
			anchors.fill: parent
			source: mediaPlayer
		}

		Button {
			id: play
			anchors.centerIn: parent
			display: AbstractButton.IconOnly
			flat: true
			icon {
				width: 44
				height: 44
				color: "#ffffff"
				source: "../../../../../Font-Awesome/svgs/solid/circle-play.svg"
			}
		}
	}

	ColumnLayout {
		Layout.topMargin: 0
		Layout.margins: 16

		RowLayout {

			ColumnLayout {
				spacing: 0

				RowLayout {
					spacing: 8

					Label {
						text: priceText
						wrapMode: Label.Wrap
						Bootstrap.heading: 3
					}

					Label {
						id: initialPrice
						text: "$350"
						wrapMode: Label.Wrap
						font.strikeout: true
					}

					Label {
						id: discount
						text: qsTr("60% off")
						color: "white"
						font {
							family: Eduport
								.bodyFont
								.family
							weight: Eduport
								.bodyFont
								.weight
							pointSize: Eduport
							.bsBadgeFontSize
						}
						horizontalAlignment: Text
								.AlignHCenter
						verticalAlignment: Text
								.AlignVCenter
						topPadding: 4.46
						leftPadding: 8.29
						rightPadding: 8.29
						bottomPadding: 4.46
						background: Rectangle {
							radius: 6
							color: "#fd7e14"
						}
					}
				}

				RowLayout {
					id: time
					spacing: 8

					Image {
						source: "../../../../../Font-Awesome/svgs/solid/stopwatch.svg"
						sourceSize {
							width: 13
							height: 15
						}

						ColorOverlay {
							anchors.fill: parent
							source: parent
							color: Eduport
								.bsDanger
						}
					}

					Label {
						text: qsTr("5 days left at this price")
						color: Eduport.bsDanger
						wrapMode: Label.Wrap
					}
				}
			}

			Button {
				id: share
				Layout.fillWidth: true
				display: AbstractButton.IconOnly
				icon.source: "../../../../../Font-Awesome/svgs/solid/share-nodes.svg"

				Menu {
					id: shareMenu
					ListView {
						id: shareList
						interactive: false
						implicitHeight: count * 40
						model: ListModel {
							ListElement {
								label: "Twitter"
							}
							ListElement {
								label: "Facebook"
							}
							ListElement {
								label: "LinkedIn"
							}
							ListElement {
								label: qsTr("Copy link")
							}
						}
						delegate: Button {
							text: label
						}
					}
				}
			}
		}

		RowLayout {
			Layout.topMargin: 16

			BtnOutline.Primary {
				id: trial
				text: qsTr("Free trial")
			}

			Btn.Success {
				id: buy
				text: qsTr("Buy course")
			}
		}
	}
}