Skip to main content

Drawer integration

This documentation complements the "classic" installation via Javascript or server-side.

The debate space can be integrated as a drawer that opens from the right of the screen (demo).

In any case, the first step is to set up a "classic" discussion forum.

Activation from your administration area

From your administration area, go to “Configuration” > “Modules” and activate drawer mode installation.

Drawer navigation

Installation

Insert the script that manages the drawer integration in the page, in the head tag.

 <!DOCTYPE html>
<html>
<head>
<script src="https://cdn.logora.com/drawer.js"></script>
</head>
</html>

Advanced usage (optional)

Two events are available to control the drawer :

  • logora:drawer:display to open the drawer, and that takes the initial path of the debate space as an argument :
 const event = new CustomEvent("logora:drawer:display", { detail: { initialPath: "/debate/my-debate" }});
window.dispatchEvent(event);
  • logora:drawer:close to close the drawer
  const event = new CustomEvent("logora:drawer:close");
window.dispatchEvent(event);