Change to using arrow functions (#1603)
* Change to using arrow functions Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> * Add lint rule --------- Co-authored-by: v1b3m <vibenjamin6@gmail.com> Co-authored-by: Matheus <matheus_benini@hotmail.com> Co-authored-by: Charles Bochet <charles@twenty.com>
This commit is contained in:
@ -13,7 +13,7 @@ import { GetCompaniesQuery, GetPeopleQuery } from '~/generated/graphql';
|
||||
import { optimisticEffectState } from '../states/optimisticEffectState';
|
||||
import { OptimisticEffectDefinition } from '../types/OptimisticEffectDefinition';
|
||||
|
||||
export function useOptimisticEffect() {
|
||||
export const useOptimisticEffect = () => {
|
||||
const apolloClient = useApolloClient();
|
||||
|
||||
const registerOptimisticEffect = useRecoilCallback(
|
||||
@ -29,7 +29,7 @@ export function useOptimisticEffect() {
|
||||
.getLoadable(optimisticEffectState)
|
||||
.getValue();
|
||||
|
||||
function optimisticEffectWriter({
|
||||
const optimisticEffectWriter = ({
|
||||
cache,
|
||||
newData,
|
||||
query,
|
||||
@ -39,7 +39,7 @@ export function useOptimisticEffect() {
|
||||
newData: unknown[];
|
||||
variables: OperationVariables;
|
||||
query: DocumentNode;
|
||||
}) {
|
||||
}) => {
|
||||
const existingData = cache.readQuery({
|
||||
query,
|
||||
variables,
|
||||
@ -76,7 +76,7 @@ export function useOptimisticEffect() {
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const optimisticEffect = {
|
||||
key: definition.key,
|
||||
@ -117,4 +117,4 @@ export function useOptimisticEffect() {
|
||||
registerOptimisticEffect,
|
||||
triggerOptimisticEffects,
|
||||
};
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user