Skip to main content

Use queries inside JS module

This guide shows how to use datasource queries and JSObjects within the JS module, enabling efficient data handling and manipulation for applications.

Prerequisites

A package that has already been created. For more information, see Package and query modules tutorials.

Configure package

Follow these steps to set up JS modules within the package.

  1. Click New Module > JS Module. The Main JSObject represents the JS module code.

Example: You want to create a simple, reusable login authentication module that allows users to authenticate through email and password credentials stored in an SQL database. To implement this, in the Main JS code, add authentication functions like login, token generation, and navigation upon successful login.

You can use the Appsmith Object and Functions within the JS module code, which can be executed in the App, like:

export default {
// The login function attempts to authenticate a user
login: async (email, passwordHash) => {
// Retrieve user data from the database based on the provided email
const [user] = await findUserByEmail.run({ email });

// Check if a user with the provided email exists and the password hash matches
if (user && passwordHash === user?.password_hash) {
// Generate a token using the current timestamp and email, and store it
await storeValue('token', btoa(new Date().toISOString() + email));

// Update the last login timestamp for the user in the database
await updateLogin.run({ id: user.id });

// Show a success alert indicating successful login
await showAlert('Login Success', 'success');

// Navigate to the 'App' page in the same window after successful login
await navigateTo('App', {}, 'SAME_WINDOW');
}
}
}
  • To pass data from the App to JS modules, you can pass it by calling the respective function with the necessary parameters, like login(hello@email.com, password@123).

  • To pass data from JS modules to queries, you can pass parameters at runtime using run(), like {{ updateLogin.run({ id: user.id }) }}

  1. Within the JS module, create a new Datasource query that allows you to fetch data based on the JS code.
caution

Using the query module inside a JS module is not supported.

Example: In the login authentication flow, create a query to verify whether the user's email exists within the database.

//findUserByEmail
SELECT * FROM user_auth WHERE email = {{this.params.email}};

this.params.email provides access to the data passed within the JS module, enabling efficient communication and dynamic data handling within your application. For more information, see Parameterised Queries.

  1. Create a new Datasource query for updating the last login timestamp:
//updateLogin
UPDATE user_auth
SET last_login = {{new Date().toISOString()}}
WHERE id = {{ this.params.id }};
  1. Publish the package.

  2. Open your App from the homepage and ensure that both the app and modules share the same workspace.

  3. Create a simple login form using widgets such as Text and Input fields, tailored to meet your specific requirements.

  4. Select the JS tab on the Entity Explorer, and add the Login JS module.

  5. Set the onClick event of the Submit/Login button to pass data to a JS module and execute the corresponding function.

Example: To pass the email and password, you can configure the onClick event as follows:

{{LoginModule.login(inp_email.text, inp_password.text);}}

When the button is clicked, the JS module verifies whether the user's email exists in the database. If the email and password match, it redirects the user to a new page.