cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
74
Views
0
Helpful
0
Replies

Deskpro and touch screen boards in MTR mode and Button

mbaugh
Level 1
Level 1

Trying to get action buttons configured with Macros to launch simple web sites and do a refresh. 

Have tried code but when clicking on button nothing happens. 

What am i missing? 

Any help is greatly appreciated

 

import xapi from 'xapi';

async function fetchCurrent() {
  try {
    const response = await xapi.Command.HttpClient.Get({ Url'https://www.bbc.com' });
    console.log('Fetched data from BBC:', response.Body);
  } catch (error) {
    console.error('Error fetching data from BBC:', error);
  }
}

function init() {
  xapi.Event.UserInterface.Extensions.Panel.Clicked.on(e => {
    if (e.PanelId === 'bbc') {
      console.log('Panel clicked: BBC');
      window.location.href = "https://www.bbc.com";
    }
  });

  xapi.Config.HttpClient.Mode.set('On').then(() => {
    console.log('HTTP Client Mode enabled');
    fetchCurrent();
    setInterval(fetchCurrent, 1000 * 60 * 10); // Fetch data every 10 minutes
    xapi.Command.UserInterface.Extensions.Panel.Remove({ PanelId'bbc' });
  }).catch((error) => {
    console.error('Failed to enable HTTP Client Mode:', error);
  });
}

init();
0 Replies 0