Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: decouple DataTableControl #20226

Merged
merged 2 commits into from
Jun 3, 2022

Conversation

zhaoyongjie
Copy link
Member

@zhaoyongjie zhaoyongjie commented May 31, 2022

SUMMARY

The DataTableControl is a component in DataTablePane, it has an important function is to switch the format of the time columns. Currently, this toggle was implemented by Redux, and saved state in the Explore's store.

image

We intend to move DataPane into Dashboard(PR), the Dashboard store and the Explore store are separated store, so I have to remove the time column state from the explore state.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

After

dataTableControl.mov

copy to clipboard

copy.to.clipboard.mov

TESTING INSTRUCTIONS

  1. The DataTablePane work as before.
  2. Copy to clipboard work as expected.

ADDITIONAL INFORMATION

  • Has associated issue:
  • Required feature flags:
  • Changes UI
  • Includes DB Migration (follow approval process in SIP-59)
    • Migration is atomic, supports rollback & is backwards-compatible
    • Confirm DB migration upgrade and downgrade tested
    • Runtime estimates and downtime expectations provided
  • Introduces new feature or API
  • Removes existing feature or API

@zhaoyongjie zhaoyongjie marked this pull request as ready for review May 31, 2022 09:11
@zhaoyongjie zhaoyongjie requested review from kgabryje and villebro and removed request for kgabryje May 31, 2022 10:09
@codecov
Copy link

codecov bot commented May 31, 2022

Codecov Report

Merging #20226 (ca73969) into master (3d5ae62) will increase coverage by 0.02%.
The diff coverage is 50.00%.

@@            Coverage Diff             @@
##           master   #20226      +/-   ##
==========================================
+ Coverage   66.48%   66.51%   +0.02%     
==========================================
  Files        1726     1726              
  Lines       64759    64763       +4     
  Branches     6828     6829       +1     
==========================================
+ Hits        43058    43074      +16     
+ Misses      19966    19958       -8     
+ Partials     1735     1731       -4     
Flag Coverage Δ
javascript 51.36% <50.00%> (+0.04%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...set-frontend/src/explore/actions/exploreActions.ts 50.00% <ø> (ø)
...mponents/DataTablesPane/components/ResultsPane.tsx 58.18% <ø> (-0.75%) ⬇️
...mponents/DataTablesPane/components/SamplesPane.tsx 69.76% <ø> (-0.69%) ⬇️
...et-frontend/src/explore/reducers/exploreReducer.js 35.93% <ø> (+7.18%) ⬆️
...t-frontend/src/explore/reducers/getInitialState.ts 0.00% <ø> (ø)
.../src/explore/components/DataTableControl/index.tsx 64.04% <32.00%> (-5.19%) ⬇️
...d/src/explore/components/DataTableControl/utils.ts 75.00% <75.00%> (ø)
...ts/DataTablesPane/components/DataTableControls.tsx 100.00% <100.00%> (ø)
...rset-frontend/src/explore/exploreUtils/formData.ts 85.71% <0.00%> (ø)
.../src/dashboard/components/gridComponents/Chart.jsx 60.60% <0.00%> (ø)
... and 7 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3d5ae62...ca73969. Read the comment docs.

@@ -130,8 +126,8 @@ export const RowCount = ({
}) => <RowCountLabel rowcount={data?.length ?? 0} loading={loading} />;

enum FormatPickerValue {
Formatted,
Original,
Formatted = 'formatted',
Copy link
Member Author

@zhaoyongjie zhaoyongjie May 31, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The string enum type is more readable in the debugger.

Comment on lines -176 to -179
const dispatch = useDispatch();
const isTimeColumnOriginalFormatted = originalFormattedTimeColumnIndex > -1;

const onChange = useCallback(
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the same logic moves to parent's component.

@zhaoyongjie
Copy link
Member Author

/testenv up

@github-actions
Copy link
Contributor

github-actions bot commented Jun 2, 2022

@zhaoyongjie Ephemeral environment spinning up at http://34.222.134.57:8080. Credentials are admin/admin. Please allow several minutes for bootstrapping and startup.

datasourceId
? state?.explore?.originalFormattedTimeColumns?.[datasourceId] ?? []
: [],
export const getTimeColumns = (datasourceId?: string): string[] => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the name suggests that the function gets all time columns, not only the time columns with epoch formatting in data table

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The time columns means that the column type is GenericDataType.Temporal after Superset introduced generic data type.

return ensureIsArray(colsMap[datasourceId]);
};

export const setTimeColumns = (datasourceId: string, columns: string[]) => {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as above

Copy link
Member

@kgabryje kgabryje left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great! I commented on some minor nitpicks

@zhaoyongjie zhaoyongjie merged commit a020f75 into apache:master Jun 3, 2022
@github-actions
Copy link
Contributor

github-actions bot commented Jun 3, 2022

Ephemeral environment shutdown and build artifacts deleted.

philipher29 pushed a commit to ValtechMobility/superset that referenced this pull request Jun 9, 2022
@mistercrunch mistercrunch added 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 2.0.0 labels Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels size/L 🚢 2.0.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants