2020-10-29 20:07:52 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtWebEngine 1.9
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.status 1.0
|
|
|
|
import shared.popups 1.0
|
2021-09-30 09:43:29 +00:00
|
|
|
import "../stores"
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-01 15:58:36 +00:00
|
|
|
|
|
|
|
import "../../Chat/popups"
|
2020-10-29 20:07:52 +00:00
|
|
|
|
2021-10-14 11:48:03 +00:00
|
|
|
// TODO: replace with StatusPopupMenu
|
2020-10-29 20:07:52 +00:00
|
|
|
PopupMenu {
|
|
|
|
property var openInNewTab: function () {}
|
|
|
|
property string url
|
2021-09-30 09:43:29 +00:00
|
|
|
property var currentFavorite: BookmarksStore.getCurrentFavorite(url)
|
2020-10-29 20:07:52 +00:00
|
|
|
|
|
|
|
id: root
|
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
|
|
|
|
|
|
|
Action {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Open in new Tab"
|
|
|
|
text: qsTrId("open-in-new-tab")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon.source: Style.svg("generate_account")
|
2020-11-27 20:31:50 +00:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
2020-10-29 20:07:52 +00:00
|
|
|
onTriggered: {
|
|
|
|
openInNewTab(root.url)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Separator {}
|
|
|
|
|
|
|
|
Action {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Edit"
|
|
|
|
text: qsTrId("edit")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon.source: Style.svg("edit")
|
2020-10-29 20:07:52 +00:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
|
|
|
onTriggered: {
|
|
|
|
addFavoriteModal.modifiyModal = true
|
|
|
|
addFavoriteModal.ogUrl = root.currentFavorite ? root.currentFavorite.url : currentWebView.url
|
|
|
|
addFavoriteModal.ogName = root.currentFavorite ? root.currentFavorite.name : currentWebView.title
|
|
|
|
addFavoriteModal.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Action {
|
2021-02-18 16:36:05 +00:00
|
|
|
//% "Remove"
|
|
|
|
text: qsTrId("remove")
|
2021-09-28 15:04:06 +00:00
|
|
|
icon.source: Style.svg("remove")
|
2020-10-29 20:07:52 +00:00
|
|
|
icon.color: Style.current.danger
|
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
|
|
|
onTriggered: {
|
2021-10-14 14:29:33 +00:00
|
|
|
BookmarksStore.deleteBookmark(root.url)
|
2020-10-29 20:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|