rusackas commented on code in PR #42910:
URL: https://github.com/apache/superset/pull/42910#discussion_r3890453349


##########
superset-frontend/src/features/themes/ThemeColorPickers.tsx:
##########
@@ -0,0 +1,159 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+import { useMemo } from 'react';
+import { t } from '@apache-superset/core/translation';
+import { styled } from '@apache-superset/core/theme';
+import { Typography } from '@superset-ui/core/components/Typography';
+import ColorPickerControl from 
'src/explore/components/controls/ColorPickerControl';
+import type { ColorPickerValue } from 
'src/explore/components/controls/ColorPickerControl';
+
+/**
+ * Curated antd theme SEED tokens (plus a handful of the most load-bearing
+ * MapToken/AliasToken derivatives) surfaced as individual color pickers, so
+ * the common case -- "change the brand color" -- doesn't require pasting a
+ * hand-edited JSON blob. This intentionally does not attempt to cover the
+ * full antd token surface (100+ tokens): anything not listed here is still
+ * fully editable via the JSON textarea below, which remains the source of
+ * truth. Names are taken directly from antd's own `SeedToken` /
+ * `MapToken` types -- see `antd/es/theme/interface/{seeds,maps/colors}.d.ts`
+ * -- never invented.
+ */
+export const CURATED_COLOR_TOKENS = [
+  { key: 'colorPrimary', label: () => t('Primary') },
+  { key: 'colorSuccess', label: () => t('Success') },
+  { key: 'colorWarning', label: () => t('Warning') },
+  { key: 'colorError', label: () => t('Error') },
+  { key: 'colorInfo', label: () => t('Info') },
+  { key: 'colorLink', label: () => t('Link') },
+  { key: 'colorText', label: () => t('Text') },
+  { key: 'colorTextSecondary', label: () => t('Secondary text') },
+  { key: 'colorBgBase', label: () => t('Base background') },
+  { key: 'colorBgContainer', label: () => t('Container background') },
+  { key: 'colorBorder', label: () => t('Border') },
+] as const;
+
+export type CuratedColorToken = (typeof CURATED_COLOR_TOKENS)[number]['key'];
+
+interface ParsedThemeJson {
+  token?: Record<string, unknown>;
+  [key: string]: unknown;
+}
+
+/** Attempts to parse `jsonData` as a theme config object; returns `null`
+ * (never throws) when the JSON is empty, mid-edit, or otherwise invalid --
+ * matching the JSON-parse error handling already used elsewhere in
+ * ThemeModal (`formatJsonData`, `isValidJson`). */
+export const tryParseThemeJson = (
+  jsonData: string | undefined,
+): ParsedThemeJson | null => {
+  if (!jsonData?.trim()) return null;
+  try {
+    const parsed = JSON.parse(jsonData);
+    return parsed && typeof parsed === 'object' ? parsed : null;

Review Comment:
   Also confirmed. `tryParseThemeJson` only checked that the top-level parse 
was an object, so a valid-JSON-but-malformed `token` (a string or array) sailed 
through, and `patchThemeJsonToken`'s spread of a non-object silently rewrote it 
into numeric-keyed junk on the next picker edit. Added a plain-object check on 
`token` in 9b6b41e28d so that case now surfaces the existing invalid-JSON 
notice instead.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to