harbour-nextcloudnotes/qml/pages/NotePage.qml

177 lines
7.7 KiB
QML
Raw Normal View History

import "../js/showdown-1.9.0/dist/showdown.js" as ShowDown
2018-10-16 18:50:58 +03:00
import QtQuick 2.0
import Sailfish.Silica 1.0
2018-11-18 13:25:28 +03:00
Dialog {
id: noteDialog
property var showdown: ShowDown.showdown
property var converter: new showdown.Converter( { noHeaderId: true, simplifiedAutoLink: true, tables: true, tasklists: false, simpleLineBreaks: true, emoji: true } )
2018-11-18 13:25:28 +03:00
function reloadContent() {
2018-11-28 16:05:36 +03:00
var convertedText = converter.makeHtml(account.model.get(noteIndex).content)
var occurence = -1
convertedText = convertedText.replace(/^<li>\[ \]\s(.*)<\/li>$/gm,
function(match, p1, offset) {
occurence++
return '<li><a href="tasklist:checkbox_' + occurence + '">☐ ' + p1 + '</a></li>'
} )
occurence = -1
convertedText = convertedText.replace(/^<li>\[x\]\s(.*)<\/li>$/gm,
function(match, p1, offset) {
occurence++
return '<li><a href="tasklist:uncheckbox_' + occurence + '">☑ ' + p1 + '</a></li>'
} )
contentLabel.text = convertedText
//console.log(contentLabel.text)
}
2018-11-18 13:25:28 +03:00
acceptDestination: Qt.resolvedUrl("EditPage.qml")
acceptDestinationProperties: { account: account; noteIndex: noteIndex }
2018-11-18 17:01:32 +03:00
Component.onCompleted: acceptDestinationProperties = { account: account, noteIndex: noteIndex }
onStatusChanged: {
if (status === PageStatus.Active) {
account.getNote(account.model.get(noteIndex).id)
reloadContent()
2018-11-18 17:01:32 +03:00
}
}
Connections {
target: account/*.model.get(noteIndex)
onTitleChanged: {
console.log("Title changed")
dialogHeader.title = account.model.get(noteIndex).title
}
2018-11-18 17:01:32 +03:00
onContentChanged: {
console.log("Content changed")
2018-11-18 17:01:32 +03:00
contentLabel.plainText = account.model.get(noteIndex).content
contentLabel.parse()
}*/
onBusyChanged: {
if (account.busy === false) {
reloadContent()
}
2018-11-18 17:01:32 +03:00
}
}
2018-11-18 13:25:28 +03:00
property var account
property int noteIndex
2018-10-16 18:50:58 +03:00
SilicaFlickable {
anchors.fill: parent
2018-11-26 19:21:33 +03:00
contentHeight: mainColumn.height
2018-10-16 18:50:58 +03:00
Column {
2018-11-26 19:21:33 +03:00
id: mainColumn
2018-10-21 02:44:23 +03:00
width: parent.width
2018-11-26 19:21:33 +03:00
RemorsePopup {
id: remorse
onTriggered: pageStack.pop()
}
PullDownMenu {
busy: account ? account.busy : false
MenuItem {
text: qsTr("Delete")
enabled: account ? true : false
//visible: appSettings.currentAccount >= 0
onClicked: remorse.execute("Deleting", function() { account.deleteNote(account.model.get(noteIndex).id) } )
}
MenuItem {
text: enabled ? qsTr("Reload") : qsTr("Updating...")
enabled: account ? !account.busy : false
//visible: appSettings.currentAccount >= 0
onClicked: account.getNote(account.model.get(noteIndex).id)
}
MenuLabel {
visible: appSettings.currentAccount >= 0
text: account ? (
qsTr("Last update") + ": " + (
new Date(account.update).valueOf() !== 0 ?
new Date(account.update).toLocaleString(Qt.locale(), Locale.ShortFormat) :
qsTr("never"))) : ""
}
}
2018-10-16 18:50:58 +03:00
2018-11-18 13:25:28 +03:00
DialogHeader {
2018-11-18 17:01:32 +03:00
id: dialogHeader
2018-11-28 16:05:36 +03:00
dialog: noteDialog
2018-11-18 13:25:28 +03:00
acceptText: qsTr("Edit")
cancelText: qsTr("Notes")
2018-10-16 18:50:58 +03:00
}
2018-11-26 19:21:33 +03:00
Column {
width: parent.width
spacing: Theme.paddingLarge
LinkedLabel {
id: contentLabel
x: Theme.horizontalPageMargin
width: parent.width - 2*x
textFormat: Text.StyledText
2018-11-28 16:05:36 +03:00
defaultLinkActions: false
onLinkActivated: {
var occurence = -1
var newContent = account.model.get(noteIndex).content
if (/^tasklist:checkbox_(\d+)$/m.test(link)) {
newContent = newContent.replace(/^- \[ \]\s(.*)$/gm,
function(match, p1, offset, string) {
occurence++
if (occurence === parseInt(link.split('_')[1])) {
return '- [x] ' + p1
}
else {
return match
}
} )
account.updateNote(account.model.get(noteIndex).id, { 'content': newContent } )
}
else if (/^tasklist:uncheckbox_(\d+)$/m.test(link)) {
newContent = newContent.replace(/^- \[x\]\s(.*)$/gm,
function(match, p1, offset, string) {
occurence++
if (occurence === parseInt(link.split('_')[1])) {
return '- [ ] ' + p1
}
else {
return match
}
} )
account.updateNote(account.model.get(noteIndex).id, { 'content': newContent } )
}
else {
Qt.openUrlExternally(link)
}
}
2018-11-26 19:21:33 +03:00
}
Separator {
id: separator
width: parent.width
color: Theme.primaryColor
horizontalAlignment: Qt.AlignHCenter
}
Column {
width: parent.width
DetailItem {
label: qsTr("Modified")
value: new Date(account.model.get(noteIndex).modified * 1000).toLocaleString(Qt.locale(), Locale.ShortFormat)
}
DetailItem {
label: qsTr("Favorite")
value: account.model.get(noteIndex).favorite ? qsTr("yes") : qsTr("no")
}
DetailItem {
label: qsTr("Category")
value: account.model.get(noteIndex).category
visible: value.length > 0
2018-10-21 02:44:23 +03:00
}
}
2018-10-16 18:50:58 +03:00
}
}
2018-10-21 02:44:23 +03:00
2018-10-16 18:50:58 +03:00
VerticalScrollDecorator {}
}
}