Compare commits
No commits in common. "2ceb74b86297f36c61f2cdc951fda9acf25d1fe7" and "ecff8e709ca5babace419a45c5a07db0b47cadb1" have entirely different histories.
2ceb74b862
...
ecff8e709c
|
@ -211,9 +211,7 @@ Item {
|
|||
Rectangle {
|
||||
id: fileListItemRect
|
||||
width: ListView.view.width
|
||||
//set the height to fit model.brief
|
||||
height: model.isDir ? 50 : Math.max(120,
|
||||
model.brief.length / 3 + 80)
|
||||
height: model.isDir ? 50 : 120
|
||||
//color: !ListView.isCurrentItem ? "white" : "red"
|
||||
FileListItem {
|
||||
id: fileListItem
|
||||
|
|
|
@ -124,11 +124,10 @@ FluArea {
|
|||
visible: !fileItem.isDir
|
||||
text: fileItem.brief
|
||||
Layout.fillWidth: true
|
||||
wrapMode: Text.WordWrap
|
||||
wrapMode: Text.WrapAnywhere
|
||||
elide: Text.ElideRight
|
||||
maximumLineCount: 4
|
||||
maximumLineCount: 2
|
||||
textFormat: Text.RichText
|
||||
fontSizeMode: Text.Fit
|
||||
}
|
||||
RowLayout {
|
||||
id: infoRow
|
||||
|
@ -159,6 +158,13 @@ FluArea {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
ColumnLayout {
|
||||
id: row
|
||||
anchors.fill: parent
|
||||
anchors.margins: 10
|
||||
spacing: 10
|
||||
|
||||
RowLayout {
|
||||
visible: !fileItem.isDir
|
||||
Repeater {
|
||||
|
|
|
@ -6,7 +6,7 @@ QtObject {
|
|||
id: request
|
||||
|
||||
property string baseUrl: "https://api.hammer-hfut.tk:233/aics/main/"
|
||||
property string searchUrl: "https://api.hammer-hfut.tk:233/aics/query/"
|
||||
property string searchUrl: "https://api.hammer-hfut.tk:233/aics/query"
|
||||
//property string baseUrl: "http://192.168.156.74:8080/"
|
||||
|
||||
// GET
|
||||
|
|
|
@ -10,8 +10,6 @@ import "qrc:///AicsKnowledgeBase/qml/component"
|
|||
FluArea {
|
||||
id: searchPage
|
||||
property string url: ''
|
||||
property var tags: []
|
||||
property ListModel listModel: ListModel {}
|
||||
backgroundColor: "#f9f9f9"
|
||||
Layout.fillHeight: true
|
||||
Layout.fillWidth: true
|
||||
|
@ -32,105 +30,55 @@ FluArea {
|
|||
width: parent.width
|
||||
RowLayout {
|
||||
width: parent.width
|
||||
|
||||
// FluDropDownButton{
|
||||
// id:select_model
|
||||
// Layout.alignment: Qt.AlignLeft
|
||||
// text:"标题"
|
||||
// items:[
|
||||
// FluMenuItem{
|
||||
// text:"标题"
|
||||
// onClicked: {
|
||||
// select_model.text = text
|
||||
// }
|
||||
// },
|
||||
// FluMenuItem{
|
||||
// text:"内容"
|
||||
// onClicked: {
|
||||
// select_model.text = text
|
||||
// }
|
||||
// },
|
||||
// FluMenuItem{
|
||||
// text:"标题及内容"
|
||||
// onClicked: {
|
||||
// select_model.text = text
|
||||
// }
|
||||
// }
|
||||
// ]
|
||||
// }
|
||||
FluTextBox {
|
||||
placeholderText: "对标题进行搜索……"
|
||||
id: search_text
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
FluIconButton {
|
||||
Layout.alignment: Qt.AlignRight
|
||||
iconSource: FluentIcons.Search
|
||||
onClicked: {
|
||||
listModel.clear()
|
||||
var allTags = tags.tagMap
|
||||
var selectTagName = []
|
||||
var selectTagId = []
|
||||
for (var i = 0; i < tags.tagList.count; i++) {
|
||||
selectTagName.push(tags.tagList.get(i).tag)
|
||||
console.log(selectTagName[selectTagName.length - 1])
|
||||
}
|
||||
for (i = 0; i < selectTagName.length; i++) {
|
||||
for (var j = 0; j < allTags.length; j++) {
|
||||
if (selectTagName[i] === allTags[j][1]) {
|
||||
selectTagId.push(allTags[j][0])
|
||||
console.log(allTags[j][0])
|
||||
}
|
||||
}
|
||||
}
|
||||
var params = {
|
||||
"text": search_text.text,
|
||||
"applyToBriefAndContent": searchTitleAndContent.checked,
|
||||
"tags": selectTagId
|
||||
}
|
||||
var url = "/search/knowledge?"
|
||||
// encode params to get url
|
||||
url += "text=" + params.text
|
||||
url += "&applyToBriefAndContent=" + params.applyToBriefAndContent
|
||||
url += "&tags="
|
||||
for (i = 0; i < params.tags.length; i++) {
|
||||
url += "&tags=" + params.tags[i]
|
||||
}
|
||||
var tagString = ""
|
||||
// merge all tag to a string split by ','
|
||||
for (i = 0; i < selectTagName.length; i++) {
|
||||
if (i !== 0) {
|
||||
tagString += ","
|
||||
}
|
||||
tagString += selectTagName[i]
|
||||
}
|
||||
var sName = ""
|
||||
var sBrief = ""
|
||||
var allTags = inputTags.getAllTags(tags.tagList)
|
||||
var allTagId = []
|
||||
console.log(allTags)
|
||||
|
||||
for (var i = 0; i < allTags.length; i++) {
|
||||
var url = "?name="
|
||||
url = url + allTags[i]
|
||||
console.log(url)
|
||||
Request.getSearch(url, response => {
|
||||
var dataArray = JSON.parse(response)
|
||||
for (var i = 0; i < dataArray.length; i++) {
|
||||
var data = dataArray[i]
|
||||
if (data.highlightFields.name !== null
|
||||
&& data.highlightFields.name !== undefined
|
||||
&& data.highlightFields.name.length > 0) {
|
||||
for (i = 0; i
|
||||
< data.highlightFields.name.length; i++) {
|
||||
if (i !== 0) {
|
||||
sName += "..."
|
||||
}
|
||||
sName += data.highlightFields.name[i]
|
||||
}
|
||||
} else {
|
||||
sName = data.content.name
|
||||
}
|
||||
if (data.highlightFields.brief !== null
|
||||
&& data.highlightFields.brief !== undefined
|
||||
&& data.highlightFields.brief.length > 0) {
|
||||
for (i = 0; i
|
||||
< data.highlightFields.brief.length; i++) {
|
||||
if (i !== 0) {
|
||||
sBrief += "..."
|
||||
}
|
||||
sBrief += data.highlightFields.brief[i]
|
||||
}
|
||||
}
|
||||
if (data.highlightFields.content !== null
|
||||
&& data.highlightFields.content !== undefined
|
||||
&& data.highlightFields.content.length > 0) {
|
||||
for (i = 0; i
|
||||
< data.highlightFields.content.length; i++) {
|
||||
if (i !== 0) {
|
||||
sBrief += "..."
|
||||
}
|
||||
sBrief += data.highlightFields.content[i]
|
||||
}
|
||||
}
|
||||
if (sBrief.length === 0) {
|
||||
sBrief = data.content.brief
|
||||
}
|
||||
getKnowledgeDetail(
|
||||
data.content.uuid, sName,
|
||||
sBrief, tagString)
|
||||
}
|
||||
Request.get(url, function (result, data) {
|
||||
allTagId.push()
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
FluCheckBox {
|
||||
id: searchTitleAndContent
|
||||
text: "同时搜索简介和内容"
|
||||
|
@ -217,28 +165,56 @@ FluArea {
|
|||
|
||||
FileList {
|
||||
disableHeader: true
|
||||
dataModel: listModel
|
||||
dataModel: ListModel {
|
||||
ListElement {
|
||||
uuid: "0"
|
||||
title: "File 1"
|
||||
isDir: true
|
||||
brief: "This is a test file"
|
||||
type: "FOLDER"
|
||||
}
|
||||
ListElement {
|
||||
uuid: "2"
|
||||
title: "File 2"
|
||||
isDir: false
|
||||
brief: "This is a test file"
|
||||
size: 500
|
||||
type: "WORD"
|
||||
date: "2020-09-09"
|
||||
pageView: 100
|
||||
stars: 10
|
||||
}
|
||||
ListElement {
|
||||
uuid: "3"
|
||||
title: "File 3"
|
||||
isDir: false
|
||||
brief: "This is a test file"
|
||||
type: "PPT"
|
||||
date: "2020-09-09"
|
||||
pageView: 100
|
||||
size: 10200000022
|
||||
stars: 10
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
function getKnowledgeDetail(uuid, title, brief, tags) {
|
||||
Request.get("/knowledge/" + uuid, raw => {
|
||||
var raw = Request.getAwait("/knowledget/" + uuid)
|
||||
var data = JSON.parse(raw)
|
||||
var item = {
|
||||
"uuid": uuid,
|
||||
"title": title,
|
||||
"brief": brief,
|
||||
"isDir": false,
|
||||
"date": data.createTime.substring(0, 10),
|
||||
"fuuid": "data.parent.id",
|
||||
"date": data.createTime,
|
||||
"fuuid": data.parent.id,
|
||||
"pageView": data.knowledgeFileAttribute.pageView,
|
||||
"stars": data.knowledgeFileAttribute.stars,
|
||||
"size": data.knowledgeFileAttribute.size,
|
||||
"type": getType(data.knowledgeFileAttribute.suffix),
|
||||
"tags": tags
|
||||
}
|
||||
listModel.append(item)
|
||||
})
|
||||
}
|
||||
function getType(suffix) {
|
||||
if (suffix === "ppt" || suffix === "pptx")
|
||||
|
|
Loading…
Reference in New Issue