This is an automated email from the ASF dual-hosted git repository.

maximebeauchemin pushed a change to branch ts_migrate_claude
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard f984cb27a1 vibing
 discard 0da58c93f3 chore: migrating to ts using Claude code automation
     new 04ba0a00b3 src/utils

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f984cb27a1)
            \
             N -- N -- N   refs/heads/ts_migrate_claude (04ba0a00b3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../generators/app/{index.ts => index.js}          |   0
 .../generators/plugin-chart/{index.ts => index.js} |   0
 .../templates/test}/__mocks__/mockExportString.js  |   0
 .../templates/test/__mocks__/mockExportString.ts   |  19 --
 .../{jest.config.ts => jest.config.js}             |   0
 .../test/{app.test.ts => app.test.js}              |   0
 .../{plugin-chart.test.ts => plugin-chart.test.js} |   0
 .../__mocks__/mockExportObject.js                  |   0
 .../superset-ui-core/__mocks__/mockExportObject.ts |  19 --
 .../__mocks__/mockExportString.js                  |   0
 .../superset-ui-core/__mocks__/mockExportString.ts |  19 --
 ...hange.test.tsx => ConfirmStatusChange.test.jsx} |   0
 ...ut.test.tsx => LabeledErrorBoundInput.test.jsx} |   8 +-
 .../{IconTooltip.test.tsx => IconTooltip.test.jsx} |   0
 ...ampleApp.stories.tsx => ExampleApp.stories.jsx} |   0
 .../Arc/{payload.ts => payload.js}                 |   0
 .../Grid/{payload.ts => payload.js}                |   0
 .../Hex/{payload.ts => payload.js}                 |   0
 .../Path/{payload.ts => payload.js}                |   0
 .../{geojsonPayload.ts => geojsonPayload.js}       |   0
 .../Polygon/{payload.ts => payload.js}             |   0
 .../Scatter/{payload.ts => payload.js}             |   0
 .../Screengrid/{payload.ts => payload.js}          |   0
 .../src/{index.ts => index.js}                     |  10 +-
 .../src/{transformProps.ts => transformProps.js}   |  23 +-
 .../src/utils/{geo.ts => geo.js}                   |   6 +-
 .../{luminanceFromRGB.ts => luminanceFromRGB.js}   |   6 +-
 .../src/utils/roundDecimal.js}                     |  19 +-
 .../src/utils/roundDecimal.ts                      |  27 --
 .../{roundDecimal.test.ts => roundDecimal.test.js} |   0
 .../Chart/{chartAction.ts => chartAction.js}       | 107 +++-----
 .../components/Datasource/{utils.ts => utils.js}   |  36 +--
 .../ErrorMessage/MarshmallowErrorMessage.tsx       |   2 +-
 .../ErrorMessage/OAuth2RedirectMessage.tsx         |   2 +-
 .../{ListView.test.tsx => ListView.test.jsx}       |   6 +-
 .../src/components/ListView/ListView.test.tsx      | 226 ++--------------
 .../{mockMessageToasts.ts => mockMessageToasts.js} |   0
 .../MessageToasts/{reducers.ts => reducers.js}     |  22 +-
 .../components/gridComponents/Tab.test.jsx         | 141 ++++++++++
 .../components/gridComponents/Tabs.test.jsx        | 195 ++++++++++++++
 ...shboardState.test.ts => dashboardState.test.js} |   0
 .../src/dashboard/reducers/dashboardState.test.ts  | 283 ++++++++-------------
 .../DataTablesPane/components/SamplesPane.tsx      |   9 +-
 .../DatasourceControl/DatasourceControl.test.jsx   | 169 ++++++++++++
 .../VizTypeControl/VizTypeControl.test.jsx         | 130 ++++++++++
 ...cedMessageQueue.js => DebouncedMessageQueue.ts} |  26 +-
 .../src/utils/{common.test.jsx => common.test.tsx} |   0
 .../src/utils/{common.js => common.ts}             |  27 +-
 .../{datasourceUtils.js => datasourceUtils.ts}     |  16 +-
 .../src/utils/getControlsForVizType.js             |  52 ----
 ...zType.test.js => getControlsForVizType.test.ts} |   0
 .../src/utils/getControlsForVizType.ts             |  58 +++++
 .../{hostNamesConfig.js => hostNamesConfig.ts}     |   6 +-
 .../src/utils/{reducerUtils.js => reducerUtils.ts} |  38 ++-
 54 files changed, 984 insertions(+), 723 deletions(-)
 rename superset-frontend/packages/generator-superset/generators/app/{index.ts 
=> index.js} (100%)
 rename 
superset-frontend/packages/generator-superset/generators/plugin-chart/{index.ts 
=> index.js} (100%)
 copy superset-frontend/{spec => 
packages/generator-superset/generators/plugin-chart/templates/test}/__mocks__/mockExportString.js
 (100%)
 delete mode 100644 
superset-frontend/packages/generator-superset/generators/plugin-chart/templates/test/__mocks__/mockExportString.ts
 rename superset-frontend/packages/generator-superset/{jest.config.ts => 
jest.config.js} (100%)
 rename superset-frontend/packages/generator-superset/test/{app.test.ts => 
app.test.js} (100%)
 rename 
superset-frontend/packages/generator-superset/test/{plugin-chart.test.ts => 
plugin-chart.test.js} (100%)
 copy superset-frontend/{spec => 
packages/superset-ui-core}/__mocks__/mockExportObject.js (100%)
 delete mode 100644 
superset-frontend/packages/superset-ui-core/__mocks__/mockExportObject.ts
 copy superset-frontend/{spec => 
packages/superset-ui-core}/__mocks__/mockExportString.js (100%)
 delete mode 100644 
superset-frontend/packages/superset-ui-core/__mocks__/mockExportString.ts
 rename 
superset-frontend/packages/superset-ui-core/src/components/ConfirmStatusChange/{ConfirmStatusChange.test.tsx
 => ConfirmStatusChange.test.jsx} (100%)
 rename 
superset-frontend/packages/superset-ui-core/src/components/Form/{LabeledErrorBoundInput.test.tsx
 => LabeledErrorBoundInput.test.jsx} (94%)
 rename 
superset-frontend/packages/superset-ui-core/src/components/IconTooltip/{IconTooltip.test.tsx
 => IconTooltip.test.jsx} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/{ExampleApp.stories.tsx
 => ExampleApp.stories.jsx} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Arc/{payload.ts
 => payload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Grid/{payload.ts
 => payload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Hex/{payload.ts
 => payload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Path/{payload.ts
 => payload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Polygon/{geojsonPayload.ts
 => geojsonPayload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Polygon/{payload.ts
 => payload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Scatter/{payload.ts
 => payload.js} (100%)
 rename 
superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-deckgl/Screengrid/{payload.ts
 => payload.js} (100%)
 rename superset-frontend/plugins/legacy-plugin-chart-map-box/src/{index.ts => 
index.js} (80%)
 rename 
superset-frontend/plugins/legacy-plugin-chart-map-box/src/{transformProps.ts => 
transformProps.js} (83%)
 rename superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/{geo.ts 
=> geo.js} (92%)
 rename 
superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/{luminanceFromRGB.ts
 => luminanceFromRGB.js} (92%)
 copy 
superset-frontend/{packages/superset-ui-core/src/components/FaveStar/types.ts 
=> plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.js} (77%)
 delete mode 100644 
superset-frontend/plugins/legacy-plugin-chart-map-box/src/utils/roundDecimal.ts
 rename 
superset-frontend/plugins/legacy-plugin-chart-map-box/test/utils/{roundDecimal.test.ts
 => roundDecimal.test.js} (100%)
 rename superset-frontend/src/components/Chart/{chartAction.ts => 
chartAction.js} (88%)
 rename superset-frontend/src/components/Datasource/{utils.ts => utils.js} (84%)
 copy superset-frontend/src/components/ListView/{ListView.test.tsx => 
ListView.test.jsx} (97%)
 rename superset-frontend/src/components/MessageToasts/{mockMessageToasts.ts => 
mockMessageToasts.js} (100%)
 rename superset-frontend/src/components/MessageToasts/{reducers.ts => 
reducers.js} (75%)
 create mode 100644 
superset-frontend/src/dashboard/components/gridComponents/Tab.test.jsx
 create mode 100644 
superset-frontend/src/dashboard/components/gridComponents/Tabs.test.jsx
 copy superset-frontend/src/dashboard/reducers/{dashboardState.test.ts => 
dashboardState.test.js} (100%)
 create mode 100644 
superset-frontend/src/explore/components/controls/DatasourceControl/DatasourceControl.test.jsx
 create mode 100644 
superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeControl.test.jsx
 rename superset-frontend/src/utils/{DebouncedMessageQueue.js => 
DebouncedMessageQueue.ts} (73%)
 rename superset-frontend/src/utils/{common.test.jsx => common.test.tsx} (100%)
 rename superset-frontend/src/utils/{common.js => common.ts} (85%)
 rename superset-frontend/src/utils/{datasourceUtils.js => datasourceUtils.ts} 
(76%)
 delete mode 100644 superset-frontend/src/utils/getControlsForVizType.js
 rename superset-frontend/src/utils/{getControlsForVizType.test.js => 
getControlsForVizType.test.ts} (100%)
 create mode 100644 superset-frontend/src/utils/getControlsForVizType.ts
 rename superset-frontend/src/utils/{hostNamesConfig.js => hostNamesConfig.ts} 
(91%)
 rename superset-frontend/src/utils/{reducerUtils.js => reducerUtils.ts} (72%)

Reply via email to