HEX
Server: Apache/2
System: Linux s01 6.1.0-34-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.135-1 (2025-04-25) x86_64
User: beestg (1003)
PHP: 8.3.25
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/beestg/domains/beestgenot.nl/private_html/wp-content/themes/Divi/ai-app/README.md
## DIVI AI - Frontend APP
-----
-----
:smiley:

> How to trigger the AI app:

On a click event, we can hook the below statement:

```jQuery(window).trigger('et_ai_container_ready', [preferences, 'et-ai-app']);```


Param 1: Object **--->** preferences
```
const preferences = {
    context: 'section',
    date: new Date(),
};
```
 This is just an example, you can pass any configuration you need.


Param 2: String **--->** 'container ID'
_We just have to pass a string as an ID, and the AI app will automatically create the element in the DOM_

> How the AI app starts:

AI app listens for the event and runs the _<APP />_ component.
```
$(window).on('et_ai_container_ready', (event, preferences, container) => {
  ...
  ...
    <Provider store={store}>
      <App />
    </Provider>
  ...
});
```
We can pass the preferences like this, if necessary: (Index.tsx)
```
<Provider store={store}>
  <App preferences={preferences} />
</Provider>
```

> How to start the test server:

Run `yarn` in the root to install packages
Run `yarn json-server` to start the JSON server

There is a db.json file included in the root directory for data.

Enjoy!