harbour-nextcloudnotes/qml/pages/NotePage.qml

240 lines
11 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 account
property var note
property var showdown: ShowDown.showdown
2018-11-30 17:12:16 +03:00
property var converter: new showdown.Converter(
2018-12-04 17:22:57 +03:00
{ simplifiedAutoLink: true,
excludeTrailingPunctuationFromURLs: true,
strikethrough: true,
2018-11-30 17:12:16 +03:00
tables: true,
tasklists: false, // this is handled by the function parseContent() because LinkedLabel HTML support is to basic
2018-12-04 17:22:57 +03:00
parseImgDimensions: true,
2018-11-30 17:12:16 +03:00
simpleLineBreaks: true,
emoji: true } )
2018-11-18 13:25:28 +03:00
2018-12-04 01:08:41 +03:00
acceptDestination: Qt.resolvedUrl("EditPage.qml")
acceptDestinationProperties: { account: account; note: note }
Component.onCompleted: {
acceptDestinationProperties = { account: account, note: note }
2018-12-04 17:22:57 +03:00
//showdown.setFlavor('original')
parseContent()
2018-12-04 01:08:41 +03:00
}
Connections {
target: account
onBusyChanged: {
if (account.busy === false) {
note = account.getNote(note.id, false)
categoryRepeater.model = account.categories
2018-12-04 17:22:57 +03:00
acceptDestinationProperties = { account: account, note: note }
2018-12-04 01:08:41 +03:00
parseContent()
}
}
}
function parseContent() {
note = account.getNote(note.id, false)
var convertedText = converter.makeHtml(note.content)
2018-11-28 16:05:36 +03:00
var occurence = -1
convertedText = convertedText.replace(/^<li>(<p>)?\[ \] (.*)(<.*)$/gmi,
function(match, p1, p2, p3, offset) {
2018-11-28 16:05:36 +03:00
occurence++
return '<li class="tasklist"><a href="tasklist:checkbox_' + occurence + '">' + (p1 ? p1 : "") + '☐ ' + p2 + '</a>' + p3
2018-11-28 16:05:36 +03:00
} )
occurence = -1
convertedText = convertedText.replace(/^<li>(<p>)?\[[xX]\] (.*)(<.*)$/gmi,
function(match, p1, p2, p3, offset) {
2018-11-28 16:05:36 +03:00
occurence++
return '<li class="tasklist"><a href="tasklist:uncheckbox_' + occurence + '">' + (p1 ? p1 : "") + '☑ ' + p2 + '</a>' + p3
2018-11-28 16:05:36 +03:00
} )
2018-12-04 17:22:57 +03:00
convertedText = convertedText.replace("<table>", "<table border='1' cellpadding='" + Theme.paddingMedium + "'>")
contentLabel.text = "<style>ul,ol,table,img { margin-bottom: " + Theme.paddingLarge + "px; margin-top: " + Theme.paddingLarge + "px; }\n" +
"a:link { color: " + Theme.primaryColor + "; }\n" +
"li.tasklist { font-size:large; margin-bottom: " + Theme.paddingMedium + "px; margin-top: " + Theme.paddingMedium + "px; }\n" +
2018-12-06 14:34:10 +03:00
"del { text-decoration: line-through; }\n" +
2018-12-04 17:22:57 +03:00
"table { border-color: " + Theme.secondaryColor + "; }</style>" + convertedText
2018-12-05 19:09:02 +03:00
//console.log(contentLabel.text)
}
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
onClicked: remorse.execute("Deleting", function() { account.deleteNote(notey.id) } )
}
MenuItem {
text: enabled ? qsTr("Reload") : qsTr("Updating...")
enabled: account ? !account.busy : false
onClicked: account.getNote(note.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
2018-12-04 17:22:57 +03:00
textFormat: Text.RichText
linkColor: Theme.primaryColor
2018-11-28 16:05:36 +03:00
defaultLinkActions: false
onLinkActivated: {
2018-12-05 19:09:02 +03:00
//console.log(link)
2018-11-28 16:05:36 +03:00
var occurence = -1
var newContent = note.content
2018-11-28 16:05:36 +03:00
if (/^tasklist:checkbox_(\d+)$/m.test(link)) {
newContent = newContent.replace(/- \[ \] (.*)$/gm,
2018-11-28 16:05:36 +03:00
function(match, p1, offset, string) {
occurence++
if (occurence === parseInt(link.split('_')[1])) {
return (appSettings.useCapitalX ? '- [X] ' : '- [x] ') + p1 }
else { return match }
2018-11-28 16:05:36 +03:00
} )
note.content = newContent
parseContent()
account.updateNote(note.id, { 'content': note.content } )
2018-11-28 16:05:36 +03:00
}
else if (/^tasklist:uncheckbox_(\d+)$/m.test(link)) {
newContent = newContent.replace(/- \[[xX]\] (.*)$/gm,
2018-11-28 16:05:36 +03:00
function(match, p1, offset, string) {
occurence++
if (occurence === parseInt(link.split('_')[1])) {
return '- [ ] ' + p1 }
else { return match }
2018-11-28 16:05:36 +03:00
} )
note.content = newContent
parseContent()
account.updateNote(note.id, { 'content': note.content } )
2018-11-28 16:05:36 +03:00
}
else {
Qt.openUrlExternally(link)
}
}
2018-11-26 19:21:33 +03:00
}
Separator {
id: separator
width: parent.width
color: Theme.primaryColor
horizontalAlignment: Qt.AlignHCenter
}
2018-12-04 17:22:57 +03:00
Column {
width: parent.width
Flow {
x: Theme.horizontalPageMargin
width: parent.width - 2*x
spacing: Theme.paddingMedium
2018-12-06 18:01:43 +03:00
visible: opacity > 0.0
opacity: categoryField.focus ? 1.0 : 0.0
Behavior on opacity { FadeAnimator { } }
Repeater {
id: categoryRepeater
model: account.categories
BackgroundItem {
id: categoryBackground
width: categoryRectangle.width
height: categoryRectangle.height
Rectangle {
id: categoryRectangle
width: categoryLabel.width + Theme.paddingLarge
height: categoryLabel.height + Theme.paddingSmall
color: "transparent"
border.color: Theme.highlightColor
radius: height / 4
Label {
id: categoryLabel
anchors.centerIn: parent
text: modelData
color: categoryBackground.highlighted ? Theme.highlightColor : Theme.primaryColor
font.pixelSize: Theme.fontSizeSmall
}
}
onClicked: categoryField.text = modelData
}
}
}
2018-12-04 17:22:57 +03:00
Row {
x: Theme.horizontalPageMargin
width: parent.width - x
IconButton {
id: favoriteButton
property bool selected: note.favorite
width: Theme.iconSizeMedium
icon.source: (selected ? "image://theme/icon-m-favorite-selected?" : "image://theme/icon-m-favorite?") +
(favoriteButton.highlighted ? Theme.secondaryHighlightColor : Theme.secondaryColor)
onClicked: {
account.updateNote(note.id, {'favorite': !note.favorite})
}
}
2018-12-04 17:22:57 +03:00
TextField {
id: categoryField
width: parent.width - favoriteButton.width
text: note.category
placeholderText: qsTr("No category")
label: qsTr("Category")
EnterKey.iconSource: "image://theme/icon-m-enter-accept"
EnterKey.onClicked: {
categoryField.focus = false
}
onFocusChanged: {
if (focus === false) {
account.updateNote(note.id, {'content': note.content, 'category': text}) // This does not seem to work without adding the content
}
}
}
}
2018-11-26 19:21:33 +03:00
DetailItem {
2018-12-04 17:22:57 +03:00
id: modifiedDetail
label: qsTr("Modified")
value: new Date(note.modified * 1000).toLocaleString(Qt.locale(), Locale.ShortFormat)
}
}
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 {}
}
2018-12-04 19:24:45 +03:00
allowedOrientations: defaultAllowedOrientations
2018-10-16 18:50:58 +03:00
}