2020-10-29 15:19:27 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2020-10-29 19:02:32 +00:00
|
|
|
import QtGraphicalEffects 1.13
|
2021-10-20 09:45:38 +00:00
|
|
|
|
2021-09-28 15:04:06 +00:00
|
|
|
import utils 1.0
|
2021-10-20 09:45:38 +00:00
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
|
2021-09-30 09:43:29 +00:00
|
|
|
import "../../../../shared"
|
2021-10-14 11:07:19 +00:00
|
|
|
import "../../../../shared/controls"
|
2021-10-14 11:33:34 +00:00
|
|
|
import "../../../../shared/popups"
|
2021-09-30 09:43:29 +00:00
|
|
|
import "../stores"
|
2020-10-29 15:19:27 +00:00
|
|
|
|
2021-10-14 11:07:19 +00:00
|
|
|
// TODO: replace with StatusModal
|
2020-10-29 15:19:27 +00:00
|
|
|
ModalPopup {
|
|
|
|
property string urlError: ""
|
|
|
|
property string nameError: ""
|
2020-10-29 19:02:32 +00:00
|
|
|
property string ogUrl
|
|
|
|
property string ogName
|
|
|
|
property bool modifiyModal: false
|
2020-10-29 20:07:52 +00:00
|
|
|
property bool toolbarMode: false
|
2020-10-29 15:19:27 +00:00
|
|
|
|
|
|
|
id: popup
|
2020-10-29 20:07:52 +00:00
|
|
|
width: toolbarMode ? 345 : 480
|
|
|
|
height: toolbarMode ? 345 : 480
|
2020-10-29 19:02:32 +00:00
|
|
|
|
2020-10-29 20:07:52 +00:00
|
|
|
modal: !toolbarMode
|
2020-10-29 19:02:32 +00:00
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
id: bgPopup
|
|
|
|
color: Style.current.background
|
|
|
|
radius: Style.current.radius
|
|
|
|
layer.enabled: true
|
|
|
|
layer.effect: DropShadow{
|
|
|
|
width: bgPopup.width
|
|
|
|
height: bgPopup.height
|
|
|
|
x: bgPopup.x
|
|
|
|
y: bgPopup.y + 10
|
|
|
|
visible: bgPopup.visible
|
|
|
|
source: bgPopup
|
|
|
|
horizontalOffset: 0
|
|
|
|
verticalOffset: 5
|
|
|
|
radius: 10
|
|
|
|
samples: 15
|
2021-07-29 19:20:15 +00:00
|
|
|
color: Style.current.dropShadow
|
2020-10-29 19:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-29 15:19:27 +00:00
|
|
|
|
|
|
|
onOpened: {
|
|
|
|
urlInput.forceActiveFocus(Qt.MouseFocusReason)
|
|
|
|
}
|
|
|
|
|
2020-10-29 19:02:32 +00:00
|
|
|
onClosed: {
|
|
|
|
reset()
|
|
|
|
}
|
|
|
|
|
2020-10-29 15:19:27 +00:00
|
|
|
function validate() {
|
|
|
|
urlError = ""
|
|
|
|
if (!urlInput.text) {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Please enter a URL"
|
|
|
|
urlError = qsTrId("please-enter-a-url")
|
2020-10-29 15:19:27 +00:00
|
|
|
} else if (!Utils.isURL(urlInput.text)) {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "This fields needs to be a valid URL"
|
|
|
|
urlError = qsTrId("this-fields-needs-to-be-a-valid-url")
|
2020-10-29 15:19:27 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Please enter a Name"
|
|
|
|
nameError = !nameInput.text ? qsTrId("please-enter-a-name") : ""
|
2020-10-29 15:19:27 +00:00
|
|
|
|
|
|
|
return !urlError && !nameError
|
|
|
|
}
|
|
|
|
|
2020-10-29 19:02:32 +00:00
|
|
|
function reset() {
|
|
|
|
modifiyModal = false
|
2020-10-29 20:07:52 +00:00
|
|
|
toolbarMode = false
|
2020-10-29 19:02:32 +00:00
|
|
|
urlError = ""
|
|
|
|
nameError = ""
|
|
|
|
ogUrl = ""
|
|
|
|
ogName = ""
|
|
|
|
x = Math.round(((parent ? parent.width : 0) - width) / 2)
|
|
|
|
y = Math.round(((parent ? parent.height : 0) - height) / 2)
|
|
|
|
}
|
|
|
|
|
|
|
|
title: modifiyModal ?
|
2020-10-29 20:07:52 +00:00
|
|
|
toolbarMode ?
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Favorite added"
|
|
|
|
qsTrId("favorite-added") :
|
|
|
|
//% "Edit"
|
|
|
|
qsTrId("edit")
|
|
|
|
//% "Add favorite"
|
|
|
|
: qsTrId("add-favorite")
|
2020-10-29 15:19:27 +00:00
|
|
|
|
|
|
|
Column {
|
|
|
|
width: parent.width
|
|
|
|
spacing: Style.current.padding
|
|
|
|
|
|
|
|
Input {
|
|
|
|
id: urlInput
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "URL"
|
|
|
|
label: qsTrId("url")
|
|
|
|
//% "Paste URL"
|
|
|
|
placeholderText: qsTrId("paste-url")
|
2020-10-29 15:19:27 +00:00
|
|
|
pasteFromClipboard: true
|
|
|
|
validationError: popup.urlError
|
2020-10-29 19:02:32 +00:00
|
|
|
text: popup.ogUrl
|
2020-10-29 15:19:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Input {
|
|
|
|
id: nameInput
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Name"
|
|
|
|
label: qsTrId("name")
|
|
|
|
//% "Name the website"
|
|
|
|
placeholderText: qsTrId("name-the-website")
|
2020-10-29 15:19:27 +00:00
|
|
|
validationError: popup.nameError
|
2020-10-29 19:02:32 +00:00
|
|
|
text: popup.ogName
|
2020-10-29 15:19:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-29 19:02:32 +00:00
|
|
|
footer: Item {
|
|
|
|
width: parent.width
|
2021-01-13 19:15:52 +00:00
|
|
|
height: removeBtn.height
|
2020-10-29 19:02:32 +00:00
|
|
|
|
|
|
|
StatusButton {
|
|
|
|
id: removeBtn
|
|
|
|
anchors.right: addBtn.left
|
|
|
|
anchors.rightMargin: Style.current.padding
|
|
|
|
visible: popup.modifiyModal
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Remove"
|
|
|
|
text: qsTrId("remove")
|
2020-10-29 19:02:32 +00:00
|
|
|
anchors.bottom: parent.bottom
|
2021-10-20 09:45:38 +00:00
|
|
|
type: StatusBaseButton.Type.Danger
|
2020-10-29 19:02:32 +00:00
|
|
|
onClicked: {
|
2021-09-30 09:43:29 +00:00
|
|
|
BookmarksStore.removeBookmark(popup.ogUrl)
|
2020-10-29 19:02:32 +00:00
|
|
|
popup.close()
|
2020-10-29 15:19:27 +00:00
|
|
|
}
|
2020-10-29 19:02:32 +00:00
|
|
|
}
|
2020-10-29 15:19:27 +00:00
|
|
|
|
2020-10-29 19:02:32 +00:00
|
|
|
StatusButton {
|
|
|
|
id: addBtn
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
|
|
|
text: popup.modifiyModal ?
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Done"
|
|
|
|
qsTrId("done") :
|
|
|
|
//% "Add"
|
|
|
|
qsTrId("add")
|
2020-10-29 19:02:32 +00:00
|
|
|
anchors.bottom: parent.bottom
|
|
|
|
onClicked: {
|
|
|
|
if (!validate()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!popup.modifiyModal) {
|
2021-08-17 17:03:03 +00:00
|
|
|
// remove "add favorite" button at the end, add new bookmark, add "add favorite" button back
|
2021-09-30 09:43:29 +00:00
|
|
|
BookmarksStore.removeBookmark("")
|
|
|
|
BookmarksStore.addBookmark(urlInput.text, nameInput.text)
|
|
|
|
BookmarksStore.addBookmark("", qsTr("Add Favorite"))
|
2020-10-29 19:02:32 +00:00
|
|
|
} else if (popup.ogName !== nameInput.text || popup.ogUrl !== urlInput.text) {
|
2021-09-30 09:43:29 +00:00
|
|
|
BookmarksStore.modifyBookmark(popup.ogUrl, urlInput.text, nameInput.text)
|
2020-10-29 19:02:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
popup.close()
|
|
|
|
}
|
2020-10-29 15:19:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|