-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Bring back version check & beacon reporting #7211
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
041d7d1
Revert "Remove version check and all of the data sharing (#6852)"
arikfr 1ede867
Update beacon url
arikfr c87c9fc
update settings page url
arikfr d75c4e1
Merge branch 'master' into version-check
arikfr 3309321
update restyled config
arikfr 839b3a3
Merge remote-tracking branch 'origin/version-check' into version-check
arikfr a91a07a
Restyled by prettier (#7212)
github-actions[bot] f1eae11
Merge branch 'master' into version-check
justinclift File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import React, { useState } from "react"; | ||
import Card from "antd/lib/card"; | ||
import Button from "antd/lib/button"; | ||
import Typography from "antd/lib/typography"; | ||
import { clientConfig } from "@/services/auth"; | ||
import Link from "@/components/Link"; | ||
import HelpTrigger from "@/components/HelpTrigger"; | ||
import DynamicComponent from "@/components/DynamicComponent"; | ||
import OrgSettings from "@/services/organizationSettings"; | ||
|
||
const Text = Typography.Text; | ||
|
||
function BeaconConsent() { | ||
const [hide, setHide] = useState(false); | ||
|
||
if (!clientConfig.showBeaconConsentMessage || hide) { | ||
return null; | ||
} | ||
|
||
const hideConsentCard = () => { | ||
clientConfig.showBeaconConsentMessage = false; | ||
setHide(true); | ||
}; | ||
|
||
const confirmConsent = (confirm) => { | ||
let message = "🙏 Thank you."; | ||
|
||
if (!confirm) { | ||
message = "Settings Saved."; | ||
} | ||
|
||
OrgSettings.save({ beacon_consent: confirm }, message) | ||
// .then(() => { | ||
// // const settings = get(response, 'settings'); | ||
// // this.setState({ settings, formValues: { ...settings } }); | ||
// }) | ||
.finally(hideConsentCard); | ||
}; | ||
|
||
return ( | ||
<DynamicComponent name="BeaconConsent"> | ||
<div className="m-t-10 tiled"> | ||
<Card | ||
title={ | ||
<> | ||
Would you be ok with sharing anonymous usage data with the Redash team?{" "} | ||
<HelpTrigger type="USAGE_DATA_SHARING" /> | ||
</> | ||
} | ||
bordered={false} | ||
> | ||
<Text>Help Redash improve by automatically sending anonymous usage data:</Text> | ||
<div className="m-t-5"> | ||
<ul> | ||
<li> Number of users, queries, dashboards, alerts, widgets and visualizations.</li> | ||
<li> Types of data sources, alert destinations and visualizations.</li> | ||
</ul> | ||
</div> | ||
<Text>All data is aggregated and will never include any sensitive or private data.</Text> | ||
<div className="m-t-5"> | ||
<Button type="primary" className="m-r-5" onClick={() => confirmConsent(true)}> | ||
Yes | ||
</Button> | ||
<Button type="default" onClick={() => confirmConsent(false)}> | ||
No | ||
</Button> | ||
</div> | ||
<div className="m-t-15"> | ||
<Text type="secondary"> | ||
You can change this setting anytime from the <Link href="settings/general">Settings</Link> page. | ||
</Text> | ||
</div> | ||
</Card> | ||
</div> | ||
</DynamicComponent> | ||
); | ||
} | ||
|
||
export default BeaconConsent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
client/app/pages/settings/components/GeneralSettings/BeaconConsentSettings.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import React from "react"; | ||
import Form from "antd/lib/form"; | ||
import Checkbox from "antd/lib/checkbox"; | ||
import Skeleton from "antd/lib/skeleton"; | ||
import HelpTrigger from "@/components/HelpTrigger"; | ||
import DynamicComponent from "@/components/DynamicComponent"; | ||
import { SettingsEditorPropTypes, SettingsEditorDefaultProps } from "../prop-types"; | ||
|
||
export default function BeaconConsentSettings(props) { | ||
const { values, onChange, loading } = props; | ||
|
||
return ( | ||
<DynamicComponent name="OrganizationSettings.BeaconConsentSettings" {...props}> | ||
<Form.Item | ||
label={ | ||
<span> | ||
Anonymous Usage Data Sharing | ||
<HelpTrigger className="m-l-5 m-r-5" type="USAGE_DATA_SHARING" /> | ||
</span> | ||
} | ||
> | ||
{loading ? ( | ||
<Skeleton title={{ width: 300 }} paragraph={false} active /> | ||
) : ( | ||
<Checkbox | ||
name="beacon_consent" | ||
checked={values.beacon_consent} | ||
onChange={(e) => onChange({ beacon_consent: e.target.checked })} | ||
> | ||
Help Redash improve by automatically sending anonymous usage data | ||
</Checkbox> | ||
)} | ||
</Form.Item> | ||
</DynamicComponent> | ||
); | ||
} | ||
|
||
BeaconConsentSettings.propTypes = SettingsEditorPropTypes; | ||
|
||
BeaconConsentSettings.defaultProps = SettingsEditorDefaultProps; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did we mean to make this change? Restyled is failing on recent PRs....not clear to me why
git checkout
is failing.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems related to this? #7191 (comment)