2023-03-06 12:18:25 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Controls 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
|
2023-06-23 06:17:04 +00:00
|
|
|
import AppLayouts.Communities.views 1.0
|
2023-03-06 12:18:25 +00:00
|
|
|
|
|
|
|
import Storybook 1.0
|
|
|
|
import Models 1.0
|
|
|
|
|
|
|
|
import utils 1.0
|
|
|
|
|
|
|
|
SplitView {
|
|
|
|
|
|
|
|
Logs { id: logs }
|
|
|
|
|
|
|
|
SplitView {
|
|
|
|
orientation: Qt.Vertical
|
|
|
|
SplitView.fillWidth: true
|
|
|
|
|
|
|
|
Item {
|
|
|
|
SplitView.fillWidth: true
|
|
|
|
SplitView.fillHeight: true
|
|
|
|
|
2023-06-26 11:48:45 +00:00
|
|
|
EditCommunityTokenView {
|
2023-03-06 12:18:25 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 50
|
2023-05-25 10:30:16 +00:00
|
|
|
isAssetView: isAssetBox.checked
|
2023-03-17 15:09:27 +00:00
|
|
|
accounts: WalletAccountsModel {}
|
2023-06-27 21:05:33 +00:00
|
|
|
tokensModel: MintedTokensModel {}
|
2023-11-22 13:50:07 +00:00
|
|
|
referenceAssetsBySymbolModel: ListModel {
|
2023-07-04 13:21:15 +00:00
|
|
|
ListElement {
|
2023-11-22 13:50:07 +00:00
|
|
|
name: "eth"
|
|
|
|
symbol: "ETH"
|
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
name: "dai"
|
|
|
|
symbol: "DAI"
|
|
|
|
}
|
|
|
|
ListElement {
|
|
|
|
name: "snt"
|
|
|
|
symbol: "SNT"
|
2023-07-04 13:21:15 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-26 11:48:45 +00:00
|
|
|
onPreviewClicked: logs.logEvent("EditCommunityTokenView::previewClicked")
|
2023-03-06 12:18:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LogsAndControlsPanel {
|
|
|
|
id: logsAndControlsPanel
|
|
|
|
|
|
|
|
SplitView.minimumHeight: 100
|
|
|
|
SplitView.preferredHeight: 150
|
|
|
|
|
|
|
|
logsView.logText: logs.logText
|
2023-05-25 10:30:16 +00:00
|
|
|
|
2023-06-27 21:05:33 +00:00
|
|
|
CheckBox {
|
|
|
|
id: isAssetBox
|
|
|
|
text: "Is Assets View?"
|
|
|
|
checked: false
|
|
|
|
}
|
2023-05-25 10:30:16 +00:00
|
|
|
}
|
|
|
|
}
|
2023-03-06 12:18:25 +00:00
|
|
|
}
|
2023-07-31 12:21:14 +00:00
|
|
|
|
|
|
|
// category: Views
|
2023-10-03 11:56:30 +00:00
|
|
|
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=2934%3A480877&t=Qo2FwPRxvSxbluqB-1
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=26601%3A518245&t=Qo2FwPRxvSxbluqB-1
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=22721%3A498811&t=Qo2FwPRxvSxbluqB-1
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?type=design&node-id=29384%3A563759&t=g40TADKO0p93G4r0-1
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?type=design&node-id=29423%3A593514&t=g40TADKO0p93G4r0-1
|