2023-04-09 05:35:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-02-15 11:54:35 +00:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
2023-05-19 02:08:36 +00:00
|
|
|
import Fk.RoomElement
|
2023-02-15 11:54:35 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
anchors.fill: parent
|
2023-04-28 11:19:45 +00:00
|
|
|
property var generalModel
|
2023-02-15 11:54:35 +00:00
|
|
|
property var extra_data: ({})
|
|
|
|
|
|
|
|
signal finish()
|
|
|
|
|
2023-04-28 11:19:45 +00:00
|
|
|
ToolBar {
|
|
|
|
id: bar
|
|
|
|
width: parent.width
|
|
|
|
RowLayout {
|
|
|
|
anchors.fill: parent
|
|
|
|
ToolButton {
|
|
|
|
opacity: stack.depth > 1 ? 1 : 0
|
|
|
|
Behavior on opacity { NumberAnimation { duration: 100 } }
|
2024-01-24 19:23:29 +00:00
|
|
|
text: luatr("Back")
|
2023-04-28 11:19:45 +00:00
|
|
|
onClicked: stack.pop()
|
|
|
|
}
|
2023-12-06 13:07:35 +00:00
|
|
|
|
2023-04-28 11:19:45 +00:00
|
|
|
Label {
|
2024-01-24 19:23:29 +00:00
|
|
|
text: luatr("Enable free assign")
|
2023-04-28 11:19:45 +00:00
|
|
|
elide: Label.ElideRight
|
|
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
Layout.fillWidth: true
|
|
|
|
}
|
2023-12-06 13:07:35 +00:00
|
|
|
|
|
|
|
TextField {
|
|
|
|
id: word
|
|
|
|
placeholderText: "Search..."
|
|
|
|
clip: true
|
|
|
|
verticalAlignment: Qt.AlignVCenter
|
|
|
|
background: Rectangle {
|
|
|
|
implicitHeight: 16
|
|
|
|
implicitWidth: 120
|
|
|
|
color: "transparent"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-28 11:19:45 +00:00
|
|
|
ToolButton {
|
2024-01-24 19:23:29 +00:00
|
|
|
text: luatr("Search")
|
2023-12-06 13:07:35 +00:00
|
|
|
enabled: word.text !== ""
|
|
|
|
onClicked: {
|
|
|
|
if (stack.depth > 1) stack.pop();
|
2024-01-24 19:23:29 +00:00
|
|
|
generalModel = lcall("SearchAllGenerals", word.text);
|
2023-12-06 13:07:35 +00:00
|
|
|
stack.push(generalList);
|
|
|
|
word.text = "";
|
|
|
|
}
|
2023-04-28 11:19:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
StackView {
|
|
|
|
id: stack
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height - bar.height
|
|
|
|
anchors.top: bar.bottom
|
|
|
|
initialItem: pkgList
|
|
|
|
}
|
|
|
|
|
|
|
|
ListModel {
|
|
|
|
id: packages
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: pkgList
|
|
|
|
GridView {
|
|
|
|
id: listView
|
|
|
|
width: parent.width
|
|
|
|
height: stack.height
|
|
|
|
ScrollBar.vertical: ScrollBar {}
|
|
|
|
model: packages
|
|
|
|
clip: true
|
2023-12-06 13:07:35 +00:00
|
|
|
cellWidth: width / 5
|
2023-04-28 11:19:45 +00:00
|
|
|
cellHeight: 40
|
|
|
|
|
|
|
|
delegate: ItemDelegate {
|
2023-12-06 13:07:35 +00:00
|
|
|
width: listView.width / 5
|
2023-04-28 11:19:45 +00:00
|
|
|
height: 40
|
|
|
|
|
|
|
|
Text {
|
2024-01-24 19:23:29 +00:00
|
|
|
text: luatr(name)
|
2023-12-06 13:07:35 +00:00
|
|
|
color: "#E4D5A0"
|
2023-04-28 11:19:45 +00:00
|
|
|
anchors.centerIn: parent
|
2023-02-15 11:54:35 +00:00
|
|
|
}
|
|
|
|
|
2023-04-28 11:19:45 +00:00
|
|
|
onClicked: {
|
2024-01-24 19:23:29 +00:00
|
|
|
generalModel = lcall("GetGenerals", packages.get(index).name);
|
2023-04-28 11:19:45 +00:00
|
|
|
stack.push(generalList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: generalList
|
|
|
|
ColumnLayout {
|
|
|
|
clip: true
|
|
|
|
width: stack.width
|
|
|
|
height: stack.height
|
|
|
|
Item { height: 6 }
|
|
|
|
GridView {
|
2023-06-16 15:53:44 +00:00
|
|
|
clip: true
|
2023-04-28 11:19:45 +00:00
|
|
|
Layout.preferredWidth: stack.width - stack.width % 100 + 10
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
model: generalModel
|
|
|
|
ScrollBar.vertical: ScrollBar {}
|
|
|
|
|
|
|
|
cellHeight: 140
|
|
|
|
cellWidth: 100
|
|
|
|
|
|
|
|
delegate: GeneralCardItem {
|
|
|
|
autoBack: false
|
|
|
|
name: modelData
|
|
|
|
onClicked: {
|
2023-04-28 16:51:32 +00:00
|
|
|
stack.pop();
|
2023-04-28 11:19:45 +00:00
|
|
|
extra_data.card.name = modelData;
|
|
|
|
root.finish();
|
2023-02-15 11:54:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function load() {
|
2024-01-24 19:23:29 +00:00
|
|
|
const packs = lcall("GetAllGeneralPack");
|
2023-02-15 11:54:35 +00:00
|
|
|
packs.forEach((name) => packages.append({ name: name }));
|
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
load();
|
|
|
|
}
|
|
|
|
}
|