2020-10-29 16:07:52 -04:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.3
|
2021-12-08 00:15:17 +01:00
|
|
|
|
2021-10-28 00:27:49 +03:00
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
2021-09-28 18:04:06 +03:00
|
|
|
|
|
|
|
import utils 1.0
|
2021-10-01 18:58:36 +03:00
|
|
|
|
2021-12-08 00:15:17 +01:00
|
|
|
import "../stores"
|
2020-10-29 16:07:52 -04:00
|
|
|
|
2021-10-14 13:48:03 +02:00
|
|
|
// TODO: replace with StatusPopupMenu
|
2020-10-29 16:07:52 -04:00
|
|
|
PopupMenu {
|
2021-12-08 00:15:17 +01:00
|
|
|
id: favoritePopupMenu
|
|
|
|
|
2020-10-29 16:07:52 -04:00
|
|
|
property var openInNewTab: function () {}
|
|
|
|
property string url
|
2021-09-30 11:43:29 +02:00
|
|
|
property var currentFavorite: BookmarksStore.getCurrentFavorite(url)
|
2020-10-29 16:07:52 -04:00
|
|
|
|
2021-12-08 00:15:17 +01:00
|
|
|
signal editFavoriteTriggered()
|
|
|
|
|
2020-10-29 16:07:52 -04:00
|
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
|
|
|
|
|
|
|
Action {
|
2021-02-18 11:36:05 -05:00
|
|
|
//% "Open in new Tab"
|
|
|
|
text: qsTrId("open-in-new-tab")
|
2021-09-28 18:04:06 +03:00
|
|
|
icon.source: Style.svg("generate_account")
|
2020-11-27 15:31:50 -05:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
2020-10-29 16:07:52 -04:00
|
|
|
onTriggered: {
|
2021-12-08 00:15:17 +01:00
|
|
|
openInNewTab(favoritePopupMenu.url)
|
2020-10-29 16:07:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Separator {}
|
|
|
|
|
|
|
|
Action {
|
2021-02-18 11:36:05 -05:00
|
|
|
//% "Edit"
|
|
|
|
text: qsTrId("edit")
|
2021-09-28 18:04:06 +03:00
|
|
|
icon.source: Style.svg("edit")
|
2020-10-29 16:07:52 -04:00
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
2021-12-08 00:15:17 +01:00
|
|
|
onTriggered: editFavoriteTriggered()
|
2020-10-29 16:07:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Action {
|
2021-02-18 11:36:05 -05:00
|
|
|
//% "Remove"
|
|
|
|
text: qsTrId("remove")
|
2021-09-28 18:04:06 +03:00
|
|
|
icon.source: Style.svg("remove")
|
2020-10-29 16:07:52 -04:00
|
|
|
icon.color: Style.current.danger
|
|
|
|
icon.width: 16
|
|
|
|
icon.height: 16
|
|
|
|
onTriggered: {
|
2021-12-08 00:15:17 +01:00
|
|
|
BookmarksStore.deleteBookmark(favoritePopupMenu.url)
|
2020-10-29 16:07:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|