changed mechanism

This commit is contained in:
Tobias Buss 2023-10-09 18:24:09 +02:00
parent 6568ffb45c
commit 26e036c71b
2 changed files with 73 additions and 50 deletions

View File

@ -16,16 +16,18 @@ Module.register('MMM-Wordpress', {
getPosts: function() { getPosts: function() {
const url = this.config.url; const url = this.config.url;
const posts = this.config.posts;
const numberOfPosts = this.config.numberOfPosts; const numberOfPosts = this.config.numberOfPosts;
const request = require('request'); //hier müssen die posts noch rein!
this.sendSocketNotification('GET_POSTS', { url, numberOfPosts });
},
request.get(`${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`, (error, response, body) => { socketNotificationReceived: function(notification, payload) {
if (!error && response.statusCode == 200) { if (notification === 'POSTS_RESULT' && payload) {
this.posts = JSON.parse(body); this.posts = payload;
this.updateDom(); this.updateDom();
} }
});
}, },
getDom: function() { getDom: function() {
@ -51,4 +53,3 @@ Module.register('MMM-Wordpress', {
return doc.body.textContent || ""; return doc.body.textContent || "";
} }
}); });

View File

@ -0,0 +1,22 @@
const NodeHelper = require('node_helper');
const request = require('request');
module.exports = NodeHelper.create({
start: function() {
console.log('MMM-Wordpress helper started...');
},
socketNotificationReceived: function(notification, payload) {
if (notification === 'GET_POSTS') {
const { url, numberOfPosts } = payload;
const apiUrl = `${url}/wp-json/wp/v2/posts?per_page=${numberOfPosts}`;
request.get(apiUrl, (error, response, body) => {
if (!error && response.statusCode == 200) {
const posts = JSON.parse(body);
this.sendSocketNotification('POSTS_RESULT', posts);
}
});
}
}
});