| Server IP : 62.84.247.111 / Your IP : 216.73.216.4 Web Server : Apache/2 System : Linux srv1a.dorffdesign.nl 4.18.0-553.139.1.el8_10.x86_64 #1 SMP Tue Jun 30 18:41:23 EDT 2026 x86_64 User : ss10042020 ( 1027) PHP Version : 8.3.29 Disable Function : 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 MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/ss10042020/domains/stichting-cdr.org/public_html/wp-content/themes/Divi/ai-app/ |
Upload File : |
## 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!