mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
Second-pass a11y work across all 12 component groups. Every interactive element now has activeFocusOnTab, Keys.onReturnPressed/SpacePressed, and context-aware Accessible.name/description bindings. Highlights: - Dialogs: keyboard handlers with enabled-guard on confirm buttons - CDropdownMenu: full keyboard nav (Up/Down/Enter/Escape) - CLoginForm: explicit KeyNavigation.tab chain (username→password→submit) - CNotificationBell: dynamic "3 notifications"/"No notifications" name - CJobProgressBar: Accessible.minimumValue/maximumValue/currentValue - CExecutionStatusDot: "Execution status: Running/Passed/Failed" binding - CKeyboardShortcuts: invisible Repeater exposes all shortcuts to a11y tree - CDataTable rows: "Row N of M" descriptions - Canvas elements: Accessible.Canvas role + keyboard zoom (+/- keys) - DropdownExpandedList: focus-highlight extended to :activeFocus - Dynamic names reflect loading state (e.g. "Signing in, please wait") Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
155 lines
4.8 KiB
QML
155 lines
4.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QmlComponents 1.0
|
|
import "qmllib/dbal"
|
|
import "qmllib/MetaBuilder" as Meta
|
|
import "CommentsDBAL.js" as DBAL
|
|
|
|
Rectangle {
|
|
id: commentsRoot
|
|
color: "transparent"
|
|
objectName: "view_comments"
|
|
Accessible.role: Accessible.Pane
|
|
Accessible.name: "Discussion Board"
|
|
|
|
DBALProvider { id: dbal }
|
|
property int sortMode: 0
|
|
ListModel { id: commentsModel }
|
|
|
|
function addComment(text) {
|
|
if (text.length === 0) return
|
|
commentsModel.insert(0, {
|
|
commentId: commentsModel.count + 1,
|
|
username: appWindow.currentUser,
|
|
initials: appWindow.currentUser
|
|
.substring(0, 2).toUpperCase(),
|
|
timestamp: "Just now",
|
|
body: text, likes: 0, liked: false
|
|
})
|
|
DBAL.postComment(
|
|
dbal, text, appWindow.currentUser
|
|
)
|
|
}
|
|
|
|
function canDelete(commentUser) {
|
|
return commentUser === appWindow.currentUser
|
|
|| appWindow.currentRole === "admin"
|
|
|| appWindow.currentRole === "god"
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
DBAL.loadMockComments(commentsModel)
|
|
dbal.ping(function(success) {
|
|
if (success)
|
|
DBAL.loadComments(dbal, commentsModel)
|
|
})
|
|
}
|
|
|
|
ScrollView {
|
|
anchors.fill: parent
|
|
anchors.margins: 24; clip: true
|
|
|
|
ColumnLayout {
|
|
width: parent.width; spacing: 20
|
|
|
|
FlexRow {
|
|
Layout.fillWidth: true; spacing: 12
|
|
CText {
|
|
variant: "h3"
|
|
text: "Discussion Board"
|
|
}
|
|
CBadge {
|
|
text: commentsModel.count
|
|
+ " comments"
|
|
badgeColor: Theme.info
|
|
}
|
|
Item { Layout.fillWidth: true }
|
|
CTabBar {
|
|
tabs: [
|
|
{ label: "Newest" },
|
|
{ label: "Oldest" },
|
|
{ label: "Most Liked" }
|
|
]
|
|
activeFocusOnTab: true
|
|
Accessible.role: Accessible.PageTabList
|
|
Accessible.name: "Sort comments by"
|
|
onCurrentIndexChanged:
|
|
sortMode = currentIndex
|
|
}
|
|
}
|
|
|
|
Meta.CCommentInput {
|
|
onSubmit: function(text) {
|
|
addComment(text)
|
|
}
|
|
}
|
|
|
|
Repeater {
|
|
model: commentsModel
|
|
delegate: Meta.CCommentCard {
|
|
comment: ({
|
|
username: model.username,
|
|
initials: model.initials,
|
|
timestamp: model.timestamp,
|
|
body: model.body,
|
|
likes: model.likes,
|
|
liked: model.liked,
|
|
canDelete:
|
|
canDelete(model.username)
|
|
})
|
|
currentUser:
|
|
appWindow.currentUser
|
|
onLiked: {
|
|
var newLikes = model.liked
|
|
? model.likes - 1
|
|
: model.likes + 1
|
|
commentsModel.setProperty(
|
|
index, "likes", newLikes)
|
|
commentsModel.setProperty(
|
|
index, "liked",
|
|
!model.liked)
|
|
DBAL.likeComment(
|
|
dbal,
|
|
model.commentId,
|
|
newLikes)
|
|
}
|
|
onDeleted: {
|
|
DBAL.deleteComment(
|
|
dbal, model.commentId)
|
|
commentsModel.remove(index)
|
|
}
|
|
}
|
|
}
|
|
|
|
CCard {
|
|
Layout.fillWidth: true
|
|
visible: commentsModel.count === 0
|
|
Item {
|
|
Layout.preferredHeight: 24
|
|
}
|
|
CText {
|
|
Layout.fillWidth: true
|
|
variant: "h4"
|
|
text: "No comments yet"
|
|
horizontalAlignment:
|
|
Text.AlignHCenter
|
|
}
|
|
CText {
|
|
Layout.fillWidth: true
|
|
variant: "body2"
|
|
text: "Be the first to start"
|
|
+ " the discussion!"
|
|
horizontalAlignment:
|
|
Text.AlignHCenter
|
|
}
|
|
Item {
|
|
Layout.preferredHeight: 24
|
|
}
|
|
}
|
|
|
|
Item { Layout.preferredHeight: 20 }
|
|
}
|
|
}
|
|
}
|