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

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

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

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