diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-04-06 22:46:46 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-04-06 22:46:46 +0800 |
commit | c634f964ebc19e98a0a521ad13e244e712c25b7f (patch) | |
tree | 5770806581cb9af91e6b25c59bb8d771529e0f86 /contents | |
parent | 3441620a2ef7f1de8ad3f1339b5063bf8789a9a0 (diff) |
Add button to open announcement in browser
Diffstat (limited to 'contents')
-rw-r--r-- | contents/ui/AnnouncementView.qml | 4 | ||||
-rw-r--r-- | contents/ui/main.qml | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/contents/ui/AnnouncementView.qml b/contents/ui/AnnouncementView.qml index 8453b90..5ce4d64 100644 --- a/contents/ui/AnnouncementView.qml +++ b/contents/ui/AnnouncementView.qml @@ -30,8 +30,12 @@ RowLayout { RowLayout { Layout.alignment: Qt.AlignRight + PlasmaComponents3.ToolButton { icon.name: "view-visible" + onClicked: () => { + Qt.openUrlExternally(url) + } } PlasmaComponents3.ToolButton { diff --git a/contents/ui/main.qml b/contents/ui/main.qml index 1d73bd4..7241373 100644 --- a/contents/ui/main.qml +++ b/contents/ui/main.qml @@ -51,7 +51,11 @@ Item { // Get activity stream for each course for (let activity of activityStream) { if (activity.type == "Announcement") { - announcementsModel.append({course: course[1], title: activity.title}) + announcementsModel.append({ + course: course[1], + title: activity.title, + url: activity.html_url + }) } } }) @@ -84,6 +88,7 @@ Item { ListElement { course: "CS101" title: "Title of the announcement" + url: "https://xkcd.com" } } |