Skip to content
On this page

Pause world until user action

In web applications, we often need to pause the execution of a particular Query until the user performs some action. For example, we want to pause the execution of the Query that fetches the user's data until the user accepts the terms of use and privacy policy. In this case study we will discuss how to implement this task with the help of @farfetched/core package.

Case study

A case study is a detailed study of a specific subject, such a service or feature. It is a way to show how Farfetched can be used to solve a real-world problem.

The code in it is not supposed to be ready to use "as is", it is just an example of how Effector and Farfetched can be used to deal with a specific problem.

Kick-off

Let us say we have a website which requires the user to accept the terms of use before the user can use it. We have a bunch of Queries and Mutations, and we want to prevent their execution until the user accepts the terms of use. By legal requirements, we need to show the terms of use to the user and ask the user to accept them and must not allow any network requests until the user accepts it.

Accepting the terms of use is a user action that can be represented as an Event for this recipe.

ts
// terms_of_use.model.ts
import { createEvent } from 'effector';

export const termsOfUseShowed = createEvent();
export const userAcceptedTermsOfUse = createEvent();

Event userAcceptedTermsOfUse should be bound to the button in the terms of use dialog and Event termsOfUseShowed to the lifecycle of the app. However, it is out of scope of this recipe.

Implementation

Farfetched provides a Barrier abstraction that allows us to implement this task in a declarative way. Its usage splits into two parts: barrier creation and barrier application. Let us start with the barrier creation since it is the most important part.

ts
import { createBarrier } from '@farfetched/core';

const termsOfUseBarrier = createBarrier({
  // activate barrier when termsOfUseShowed
  activateOn: showTermsOfUse,
  // and deactivate it when userAcceptedTermsOfUse
  deactivateOn: userAcceptedTermsOfUse,
});

Next, we need to apply the barrier to the Query or Mutation that we want to pause.

ts
import { applyBarrier } from '@farfetched/core';

applyBarrier([sensitiveQuery, sensitiveMutation], {
  barrier: termsOfUseBarrier,
});

Now it is guaranteed that the sensitiveQuery and sensitiveMutation will be suspended until the termsOfUseBarrier is deactivated. termsOfUseBarrier represents the state of the terms of use acceptance.

Conclusion

Barrier API is very flexible and allows us to implement different tasks in a declarative way. In this case study, we have discussed how to implement the task of blocking particular Queries and Mutations until the user accepts the terms of use.

However, this is not the only task that can be implemented with the help of barriers. You can use them to implement anything that requires some actions to be performed before particular operation with suspension of this operation until the actions are finished.

Released under the MIT License.