import Feature from 'sentry/components/acl/feature'; import Form from 'sentry/components/forms/form'; import Panel from 'sentry/components/panels/panel'; import PanelHeader from 'sentry/components/panels/panelHeader'; import {t} from 'sentry/locale'; import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView'; import {getOption, getOptionField} from './options'; const optionsAvailable = [ 'system.url-prefix', 'system.admin-email', 'system.support-email', 'system.security-email', 'system.rate-limit', 'auth.allow-registration', 'auth.ip-rate-limit', 'auth.user-rate-limit', 'api.rate-limit.org-create', 'beacon.anonymous', 'performance.issues.all.problem-detection', 'performance.issues.n_plus_one_db.problem-creation', 'performance.issues.n_plus_one_db_ext.problem-creation', 'performance.issues.n_plus_one_db.count_threshold', 'performance.issues.n_plus_one_db.duration_threshold', 'performance.issues.consecutive_db.problem-creation', 'performance.issues.consecutive_db.la-rollout', 'performance.issues.consecutive_db.ea-rollout', 'performance.issues.consecutive_db.ga-rollout', 'performance.issues.n_plus_one_api_calls.problem-creation', 'performance.issues.n_plus_one_api_calls.la-rollout', 'performance.issues.n_plus_one_api_calls.ea-rollout', 'performance.issues.n_plus_one_api_calls.ga-rollout', 'performance.issues.compressed_assets.problem-creation', 'performance.issues.compressed_assets.la-rollout', 'performance.issues.compressed_assets.ea-rollout', 'performance.issues.compressed_assets.ga-rollout', 'performance.issues.file_io_main_thread.problem-creation', 'performance.issues.slow_db_query.problem-creation', 'performance.issues.slow_db_query.la-rollout', 'performance.issues.slow_db_query.ea-rollout', 'performance.issues.slow_db_query.ga-rollout', 'performance.issues.render_blocking_assets.problem-creation', 'performance.issues.render_blocking_assets.la-rollout', 'performance.issues.render_blocking_assets.ea-rollout', 'performance.issues.render_blocking_assets.ga-rollout', 'performance.issues.m_n_plus_one_db.problem-creation', 'performance.issues.m_n_plus_one_db.la-rollout', 'performance.issues.m_n_plus_one_db.ea-rollout', 'performance.issues.m_n_plus_one_db.ga-rollout', 'performance.issues.consecutive_http.max_duration_between_spans', 'performance.issues.consecutive_http.consecutive_count_threshold', 'performance.issues.consecutive_http.span_duration_threshold', 'performance.issues.large_http_payload.size_threshold', 'profile.issues.blocked_main_thread-ingest.la-rollout', 'profile.issues.blocked_main_thread-ingest.ea-rollout', 'profile.issues.blocked_main_thread-ingest.ga-rollout', 'profile.issues.blocked_main_thread-ppg.la-rollout', 'profile.issues.blocked_main_thread-ppg.ea-rollout', 'profile.issues.blocked_main_thread-ppg.ga-rollout', ]; type Field = ReturnType; type FieldDef = { field: Field; value: string | undefined; }; type State = DeprecatedAsyncView['state'] & { data: Record; }; export default class AdminSettings extends DeprecatedAsyncView<{}, State> { get endpoint() { return '/internal/options/'; } getEndpoints(): ReturnType { return [['data', this.endpoint]]; } renderBody() { const {data} = this.state; const initialData = {}; const fields = {}; for (const key of optionsAvailable) { // TODO(dcramer): we should not be mutating options const option = data[key] ?? {field: {}, value: undefined}; if (option.value === undefined || option.value === '') { const defn = getOption(key); initialData[key] = defn.defaultValue ? defn.defaultValue() : ''; } else { initialData[key] = option.value; } fields[key] = getOptionField(key, option.field); } return (

{t('Settings')}

General {fields['system.url-prefix']} {fields['system.admin-email']} {fields['system.support-email']} {fields['system.security-email']} {fields['system.rate-limit']} Security & Abuse {fields['auth.allow-registration']} {fields['auth.ip-rate-limit']} {fields['auth.user-rate-limit']} {fields['api.rate-limit.org-create']} Beacon {fields['beacon.anonymous']} Performance Issues - All {fields['performance.issues.all.problem-detection']} Performance Issues - Detectors {fields['performance.issues.n_plus_one_db.problem-creation']} {fields['performance.issues.n_plus_one_db_ext.problem-creation']} {fields['performance.issues.n_plus_one_db.count_threshold']} {fields['performance.issues.n_plus_one_db.duration_threshold']} Performance Issues - Consecutive DB Detector {fields['performance.issues.consecutive_db.problem-creation']} {fields['performance.issues.consecutive_db.la-rollout']} {fields['performance.issues.consecutive_db.ea-rollout']} {fields['performance.issues.consecutive_db.ga-rollout']} Performance Issues - N+1 API Calls Detector {fields['performance.issues.n_plus_one_api_calls.problem-creation']} {fields['performance.issues.n_plus_one_api_calls.la-rollout']} {fields['performance.issues.n_plus_one_api_calls.ea-rollout']} {fields['performance.issues.n_plus_one_api_calls.ga-rollout']} Performance Issues - Compressed Assets Detector {fields['performance.issues.compressed_assets.problem-creation']} {fields['performance.issues.compressed_assets.la-rollout']} {fields['performance.issues.compressed_assets.ea-rollout']} {fields['performance.issues.compressed_assets.ga-rollout']} Performance Issues - File IO on Main Thread {fields['performance.issues.file_io_main_thread.problem-creation']} Performance Issues - Slow DB Span Detector {fields['performance.issues.slow_db_query.problem-creation']} {fields['performance.issues.slow_db_query.la-rollout']} {fields['performance.issues.slow_db_query.ea-rollout']} {fields['performance.issues.slow_db_query.ga-rollout']} Performance Issues - Large Render Blocking Asset Detector {fields['performance.issues.render_blocking_assets.problem-creation']} {fields['performance.issues.render_blocking_assets.la-rollout']} {fields['performance.issues.render_blocking_assets.ea-rollout']} {fields['performance.issues.render_blocking_assets.ga-rollout']} Performance Issues - MN+1 DB Detector {fields['performance.issues.m_n_plus_one_db.problem-creation']} {fields['performance.issues.m_n_plus_one_db.la-rollout']} {fields['performance.issues.m_n_plus_one_db.ea-rollout']} {fields['performance.issues.m_n_plus_one_db.ga-rollout']} Performance Issues - Consecutive HTTP Span Detector {fields['performance.issues.consecutive_http.max_duration_between_spans']} {fields['performance.issues.consecutive_http.consecutive_count_threshold']} {fields['performance.issues.consecutive_http.span_duration_threshold']} Performance Issues - Large HTTP Payload Detector {fields['performance.issues.large_http_payload.size_threshold']} Profiling Issues - Block Main Thread Detector Ingest {fields['profile.issues.blocked_main_thread-ingest.la-rollout']} {fields['profile.issues.blocked_main_thread-ingest.ea-rollout']} {fields['profile.issues.blocked_main_thread-ingest.ga-rollout']} Profiling Issues - Block Main Thread Detector Post Process Group {fields['profile.issues.blocked_main_thread-ppg.la-rollout']} {fields['profile.issues.blocked_main_thread-ppg.ea-rollout']} {fields['profile.issues.blocked_main_thread-ppg.ga-rollout']} View Hierarchy
); } }