Data resource settings
Resource configuration, access, validation, authorization, archival, long-content, and mobile settings states.
Danger screen
Component-composed data & operations coverage across realistic application states.
Complete screen
Customer accounts settings
Archival requires explicit confirmation, policy permission, and a safe escape.
Archive Customer accounts
Imports stop immediately. Existing records remain read-only for the configured retention period.
Synchronization will stop
Applications using this resource must switch to another source before archival.
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