Backend methods
When performing operations on multiple entity objects, performance considerations may necessitate running them on the server. With Remult, moving client-side logic to run on the server is a simple refactoring.
Set All Tasks as Un/completed
Let's add two buttons to the todo app: "Set all as completed" and "Set all as uncompleted".
Add a
setAllCompleted
async function to theApp
function component, which accepts acompleted
boolean argument and sets the value of thecompleted
field of all the tasks accordingly.ts// src/App.vue async function setAllCompleted(completed: boolean) { for (const task of await taskRepo.find()) { await taskRepo.save({ ...task, completed }) } }
The
for
loop iterates the array ofTask
objects returned from the backend, and saves each task back to the backend with a modified value in thecompleted
field.Add the two buttons to the end of the
</main>
section of theApp
component. Both of the buttons'@click
events will call thesetAllCompleted
function with the appropriate value of thecompleted
argument.vue// src/App.vue <div> <button @click="setAllCompleted(true)">Set All as Completed</button> <button @click="setAllCompleted(false)">Set All as Uncompleted</button> </div>
Make sure the buttons are working as expected before moving on to the next step.
Refactor from Front-end to Back-end
With the current state of the setAllCompleted
function, each modified task being saved causes an API PUT
request handled separately by the server. As the number of tasks in the todo list grows, this may become a performance issue.
A simple way to prevent this is to expose an API endpoint for setAllCompleted
requests, and run the same logic on the server instead of the client.
- Create a new
TasksController
class, in theshared
folder, and refactor thefor
loop from thesetAllCompleted
function of theApp
function component into a new,static
,setAllCompleted
method in theTasksController
class, which will run on the server.
// src/shared/TasksController.ts
import { BackendMethod, remult } from "remult"
import { Task } from "./Task.js"
export class TasksController {
@BackendMethod({ allowed: true })
static async setAllCompleted(completed: boolean) {
const taskRepo = remult.repo(Task)
for (const task of await taskRepo.find()) {
await taskRepo.save({ ...task, completed })
}
}
}
The @BackendMethod
decorator tells Remult to expose the method as an API endpoint (the allowed
property will be discussed later on in this tutorial).
Unlike the front-end Remult
object, the server implementation interacts directly with the database.
- Register
TasksController
by adding it to thecontrollers
array of theoptions
object passed toremultExpress()
, in the server'sapi
module:
// src/server/api.ts
//...
import { TasksController } from "../shared/TasksController.js"
export const api = remultExpress({
//...
controllers: [TasksController]
})
- Replace the
for
iteration in thesetAllCompleted
function of theApp
component with a call to thesetAllCompleted
method in theTasksController
.
// src/App.vue
async function setAllCompleted(completed: boolean) {
await TasksController.setAllCompleted(completed)
}
Import TasksController
Remember to add an import of TasksController
in App.vue
.
Note
With Remult backend methods, argument types are compile-time checked. 👍
After the browser refreshed, the "Set all..." buttons function exactly the same, but much faster.