Merge pull request #2268 from lbryio/do-not-track
Respect "do not track" setting for search/publish events
This commit is contained in:
commit
8467dbdac3
4 changed files with 15 additions and 7 deletions
|
@ -70,6 +70,16 @@ const analytics: Analytics = {
|
|||
.catch(() => {});
|
||||
}
|
||||
},
|
||||
apiLogSearch: () => {
|
||||
if (analyticsEnabled) {
|
||||
Lbryio.call('event', 'search');
|
||||
}
|
||||
},
|
||||
apiLogPublish: () => {
|
||||
if (analyticsEnabled) {
|
||||
Lbryio.call('event', 'publish');
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
export default analytics;
|
||||
|
|
|
@ -9,7 +9,7 @@ import {
|
|||
doSearch,
|
||||
doToast,
|
||||
} from 'lbry-redux';
|
||||
import { Lbryio } from 'lbryinc';
|
||||
import analytics from 'analytics';
|
||||
import { makeSelectClientSetting } from 'redux/selectors/settings';
|
||||
import * as settings from 'constants/settings';
|
||||
import { doNavigate } from 'redux/actions/navigation';
|
||||
|
@ -35,8 +35,7 @@ const perform = dispatch => ({
|
|||
onSearch: (query, size) => {
|
||||
dispatch(doSearch(query, size));
|
||||
dispatch(doNavigate(`/search`, { query }));
|
||||
// Ideally this would live inside doSearch, but lbry-redux does not have access to lbryinc
|
||||
Lbryio.call('event', 'search');
|
||||
analytics.apiLogSearch();
|
||||
},
|
||||
onSubmit: (uri, extraParams) => dispatch(doNavigate('/show', { uri, ...extraParams })),
|
||||
updateSearchQuery: query => dispatch(doUpdateSearchQuery(query)),
|
||||
|
|
|
@ -19,12 +19,12 @@ import {
|
|||
selectMyClaimsWithoutChannels,
|
||||
doError,
|
||||
} from 'lbry-redux';
|
||||
import { Lbryio } from 'lbryinc';
|
||||
import { doOpenModal } from 'redux/actions/app';
|
||||
import { selectosNotificationsEnabled } from 'redux/selectors/settings';
|
||||
import { doNavigate } from 'redux/actions/navigation';
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import analytics from 'analytics';
|
||||
|
||||
type Action = UpdatePublishFormAction | { type: ACTIONS.CLEAR_PUBLISH };
|
||||
|
||||
|
@ -274,8 +274,7 @@ export const doPublish = (params: PublishParams) => (
|
|||
dispatch({ type: ACTIONS.PUBLISH_START });
|
||||
|
||||
const success = pendingClaim => {
|
||||
Lbryio.call('event', 'publish');
|
||||
|
||||
analytics.apiLogPublish();
|
||||
const actions = [];
|
||||
|
||||
actions.push({
|
||||
|
|
|
@ -90,7 +90,7 @@
|
|||
&.navigation__link--guide:not(:hover) {
|
||||
color: rgba($lbry-black, 0.75);
|
||||
|
||||
html[data-theme='dark'] {
|
||||
html[data-theme='dark'] & {
|
||||
color: rgba($lbry-white, 0.75);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue