changed mechanism
This commit is contained in:
parent
6568ffb45c
commit
26e036c71b
@ -1,54 +1,55 @@
|
|||||||
Module.register('MMM-Wordpress', {
|
Module.register('MMM-Wordpress', {
|
||||||
defaults: {
|
defaults: {
|
||||||
updateInterval: 600000, // 10 minutes
|
updateInterval: 600000, // 10 minutes
|
||||||
url: 'YOUR_WORDPRESS_API_URL', // replace with your WordPress API endpoint
|
url: 'YOUR_WORDPRESS_API_URL', // replace with your WordPress API endpoint
|
||||||
numberOfPosts: 5, // number of posts to display
|
numberOfPosts: 5, // number of posts to display
|
||||||
posts: 'posts', //Endpoint ("posts" for normal posts, can be changed to custom post type)
|
posts: 'posts', //Endpoint ("posts" for normal posts, can be changed to custom post type)
|
||||||
},
|
},
|
||||||
|
|
||||||
start: function() {
|
start: function() {
|
||||||
this.posts = [];
|
this.posts = [];
|
||||||
|
this.getPosts();
|
||||||
|
setInterval(() => {
|
||||||
this.getPosts();
|
this.getPosts();
|
||||||
setInterval(() => {
|
}, this.config.updateInterval);
|
||||||
this.getPosts();
|
},
|
||||||
}, this.config.updateInterval);
|
|
||||||
},
|
|
||||||
|
|
||||||
getPosts: function() {
|
getPosts: function() {
|
||||||
const url = this.config.url;
|
const url = this.config.url;
|
||||||
const numberOfPosts = this.config.numberOfPosts;
|
const posts = this.config.posts;
|
||||||
|
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() {
|
|
||||||
const wrapper = document.createElement('div');
|
|
||||||
const posts = this.posts;
|
|
||||||
|
|
||||||
if (posts.length > 0) {
|
|
||||||
for (let i = 0; i < posts.length; i++) {
|
|
||||||
const post = posts[i];
|
|
||||||
const postElement = document.createElement('div');
|
|
||||||
postElement.innerHTML = `<h2>${this.stripTags(post.title.rendered)}</h2><p>${this.stripTags(post.excerpt.rendered)}</p>`;
|
|
||||||
wrapper.appendChild(postElement);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
wrapper.innerHTML = 'Keine Beiträge gefunden';
|
|
||||||
}
|
|
||||||
|
|
||||||
return wrapper;
|
|
||||||
},
|
|
||||||
|
|
||||||
stripTags: function(html) {
|
|
||||||
const doc = new DOMParser().parseFromString(html, 'text/html');
|
|
||||||
return doc.body.textContent || "";
|
|
||||||
}
|
}
|
||||||
});
|
},
|
||||||
|
|
||||||
|
getDom: function() {
|
||||||
|
const wrapper = document.createElement('div');
|
||||||
|
const posts = this.posts;
|
||||||
|
|
||||||
|
if (posts.length > 0) {
|
||||||
|
for (let i = 0; i < posts.length; i++) {
|
||||||
|
const post = posts[i];
|
||||||
|
const postElement = document.createElement('div');
|
||||||
|
postElement.innerHTML = `<h2>${this.stripTags(post.title.rendered)}</h2><p>${this.stripTags(post.excerpt.rendered)}</p>`;
|
||||||
|
wrapper.appendChild(postElement);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
wrapper.innerHTML = 'Keine Beiträge gefunden';
|
||||||
|
}
|
||||||
|
|
||||||
|
return wrapper;
|
||||||
|
},
|
||||||
|
|
||||||
|
stripTags: function(html) {
|
||||||
|
const doc = new DOMParser().parseFromString(html, 'text/html');
|
||||||
|
return doc.body.textContent || "";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
22
node_helper/MMM-Wordpress.js
Normal file
22
node_helper/MMM-Wordpress.js
Normal 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);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
Loading…
Reference in New Issue
Block a user