I've been at this for a few days and sadly I'm just not able to find the right search terms or the right answers to my lack of skill.
I'm converting ListServ to Discourse. I'm converting the RSS feeds to JSON. example of the source data:
{
"title": "tech: 18F presentation",
"id": 2,
"body": "Sadly, my biggest concern is whether it will run on Linux or Windows. And I guess if they’ll thrown even more java at it.",
"date": "Fri, 28 May 2021 20:50:04 +0000",
"author": "john_doe"
},
{
"title": "Re: tech: 18F presentation",
"id": 3,
"body": "throw more java, indeed. What a moon shot.",
"date": "Fri, 28 May 2021 20:50:04 +0000",
"author": "john_doe2"
},
{
"title": "Re: tech: 18F presentation",
"id": 4,
"body": "Please stop saying moonshot, its not dodgecoin",
"date": "Fri, 28 May 2021 20:50:04 +0000",
"author": "jane_doe"
},
My data structure needs to look like this:
{
"topics": [
{
"id": 1,
"title": "tech: 18F presentation",
"pinned": false,
"posts": [
{
"title": "Re: tech: 18F presentation",
"id": 3,
"body": "throw more java, indeed. What a moon shot.",
"date": "Fri, 28 May 2021 20:50:04 +0000",
"author": "john_doe2"
},
{
"title": "Re: tech: 18F presentation",
"id": 4,
"body": "Please stop saying moonshot, its not dodgecoin",
"date": "Fri, 28 May 2021 20:50:04 +0000",
"author": "john_doe2"
},
]
}
]
}
I need each title with "Re: " to be inserted into the original title. Example) any reply, "Re tech: 18F presentation" needs to be inserted into posts: [] of the title: "tech: 18F presentation" (no Re: ).
I've tried to sperate the replies into its own json and push that into the post array, but I'm not able to figure out how to match the appropriate title.
let data = [];
const original_post = [];
const reply_to_post = [];
const discourse_JSON = [];
$("item").map(function (i, article) {
const title = $(article).find("title")[0].children[0].data;
const description = $(article).find("description")[0].children[0].data;
const user_email = $(article).find("author")[0].children[0].data.match("<([^>]+)>")[1];
const link = $(article).find("link")[0].children[0].data;
const guid = $(article).find("guid")[0].children[0].data;
const date = $(article).find("pubDate")[0].children[0].data;
const name = user_email.substring(0,user_email.indexOf('@')).split("_")[0] + ' ' + user_email.substring(0,user_email.indexOf('@')).split("_")[1];
const username = user_email.substring(0,user_email.indexOf('@'))
if (
!title.toLowerCase().includes("vacancy") &&
!title.toLowerCase().includes("opportunity") &&
!title.toLowerCase().includes("retirement") &&
!title.toLowerCase().includes("position") &&
!title.toLowerCase().includes("job posting") &&
!description.toLowerCase().includes("vacancy announcement") &&
!description.toLowerCase().includes("vacancy posting") &&
!description.toLowerCase().includes("vacancies")
) {
data.push({
"title": title,
"id": i,
"body": description,
"date": date,
"author": username
}
});
This is really just a 'groupBy' with a some string manipulation to determine hierarchy.
Here is an example using
Array#reduce()
and checking if the titlestartsWith()
'Re:'. If so, remove the initial 'Re:' usingString#replace()
andtrim()
any white space for consistency.As I mentioned in the comments, using
reduce()
in this way can be directly replaced with an external accumulator and a for loop. Here using afor...of