Data resource settings
Resource configuration, access, validation, authorization, archival, long-content, and mobile settings states.
Validation screen
Component-composed data & operations coverage across realistic application states.
Complete screen
Customer accounts settings
Server validation keeps invalid values and accessible field errors visible.
Resource configuration
Manage the resource identity, visibility, retention, and failure notices.
Resource settings need attention
Name can't be blank
Viewport
Ruby
test/dummy/app/components/gallery/compositions/data_resource_settings_page.rbrender NitroKit::SettingsLayout.new(id: "gallery-data-resource-settings-layout") do |layout|
layout.navigation(label: "Data resource settings sections") do
%w[general access danger].each do |section|
layout.item(
section.humanize,
href: flow_path(state: section),
current: settings_section == section
)
end
end
layout.content do
case settings_section
when "general"
render_general_settings
when "access"
render_access_settings
when "danger"
render_danger_settings
end
end
end