AicsKnowledgeBase_client/AicsKnowledgeBase/qml/page/CreateNotePage.qml

139 lines
3.6 KiB
QML
Raw Normal View History

2023-07-06 19:43:57 +08:00
import QtQuick
import QtQuick.Layouts
import QtQuick.Window
import QtQuick.Controls
import QtQuick.Controls.Basic
import QtWebEngine 1.2
import FluentUI
import AicsKB.FileTransferManager
import SignalFileOperation 1.0
2023-07-06 20:26:47 +08:00
import "qrc:///AicsKnowledgeBase/qml/page"
import "qrc:///AicsKnowledgeBase/qml/component"
import "qrc:///AicsKnowledgeBase/qml/global"
2023-07-06 19:43:57 +08:00
2023-07-06 20:26:47 +08:00
FluArea {
id: edit_area
paddings: 0
backgroundColor: "#f9f9f9"
2023-07-07 01:45:03 +08:00
property string uuid
property string fileType: "OTHER"
property string fileTitle: "dgfgf"
property string noteId
2023-07-06 20:26:47 +08:00
property string noteTitle
property string noteContent
2023-07-07 01:45:03 +08:00
property bool isModifying: false
2023-07-06 20:26:47 +08:00
2023-07-06 21:21:15 +08:00
Component.onCompleted: {
2023-07-07 01:45:03 +08:00
if (isModifying) {
}
2023-07-06 22:13:13 +08:00
noteTitle = Qt.binding(function () {
2023-07-06 21:21:15 +08:00
return input_title.text
})
2023-07-06 22:13:13 +08:00
noteContent = Qt.binding(function () {
2023-07-06 21:36:58 +08:00
return input_md.contentMd
})
2023-07-06 21:21:15 +08:00
}
2023-07-06 20:26:47 +08:00
FluScrollablePage {
id: edit_page
anchors.fill: parent
leftPadding: 5
topPadding: 5
rightPadding: 5
bottomPadding: 0
2023-07-07 01:45:03 +08:00
Item {
Layout.fillWidth: true
implicitHeight: 30
Layout.leftMargin: 5
Layout.bottomMargin: 10
MouseArea {
anchors.fill: parent
onDoubleClicked: {
emit: SignalFileOperation.open(note_page.uuid)
}
}
RowLayout {
id: titleRow
RowLayout {
FluIconButton {
iconSize: 12
iconSource: FluentIcons.Back
onClicked: {
emit: SignalFileOperation.back()
}
}
}
Image {
id: icon
source: edit_area.fileType ? "qrc:/AicsKnowledgeBase/res/"
+ edit_area.fileType + ".png" : ""
Layout.preferredHeight: 24
Layout.preferredWidth: 24
}
FluText {
id: title
font.bold: true
font.pointSize: 12
text: edit_area.fileTitle
2023-07-06 21:21:15 +08:00
}
2023-07-06 20:26:47 +08:00
}
}
Item {
Layout.fillWidth: true
implicitHeight: 50
RowLayout {
Layout.fillWidth: true
FluText {
padding: 10
text: "标题"
font {
pointSize: 15
bold: true
}
}
FluTextBox {
2023-07-06 21:21:15 +08:00
id: input_title
2023-07-06 20:26:47 +08:00
padding: 10
2023-07-06 22:13:13 +08:00
placeholderText: "单行输入框"
2023-07-06 20:26:47 +08:00
implicitWidth: parent.width
}
}
}
2023-07-06 21:21:15 +08:00
FluText {
padding: 10
text: "内容"
font {
pointSize: 15
bold: true
}
}
NoteEditPage {
2023-07-06 21:36:58 +08:00
id: input_md
2023-07-06 21:21:15 +08:00
noteId: "255454"
width: parent.width
2023-07-06 22:13:13 +08:00
height: width * 9 / 16
2023-07-06 21:36:58 +08:00
isEditable: true
2023-07-06 22:13:13 +08:00
isEditing: true
2023-07-06 21:21:15 +08:00
}
RowLayout {
Layout.alignment: Qt.AlignCenter
Layout.topMargin: 10
FluFilledButton {
text: "上传"
onClicked: {
2023-07-07 01:45:03 +08:00
2023-07-06 21:21:15 +08:00
}
}
FluButton {
text: "取消"
2023-07-06 20:26:47 +08:00
}
}
}
}