aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/hooks/use-update-ackee-options.tsx
blob: 1901588eb2c4d52c90c90ef47ed89e8b5d51c655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { useEffect } from 'react';
import { useAckeeTracker } from '../providers/ackee';

export type AckeeOptions = 'full' | 'partial';

/**
 * Update Ackee settings with the given choice.
 *
 * @param {AckeeOptions} value - Either `full` or `partial`.
 */
const useUpdateAckeeOptions = (value: AckeeOptions) => {
  const { setDetailed } = useAckeeTracker();

  useEffect(() => {
    setDetailed(value === 'full');
  }, [value, setDetailed]);
};

export default useUpdateAckeeOptions;