File size: 5,212 Bytes
2ede869 0781f58 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
<html>
<head>
<script type="text/javascript">
let CURRENT_CONTENT;
let parser = new DOMParser()
function FormatDiscordMessage(html){
let dom = parser.parseFromString(html, "text/html");
CURRENT_CONTENT.dom = dom;
let allChilds = dom.querySelectorAll("body > *");
let FullContent = [];
let buffContent = []
let buffLinks = []
let authorName= [];
let edition;
let flushContent = function(){
console.log("line break found!");
let AllText = buffContent.join("").trim();
let links = buffLinks.join(",");
if(!links)
return;
FullContent.push({
text: AllText
,links
,authors: authorName.join(",")
,edition
});
buffContent = []
buffLinks = [];
authorName = []
}
for(let c of allChilds){
let text;
if(c.tagName == "A")
buffLinks.push(c.href);
if(c.tagName.at(0) == 'H'){
let editionMatch = c.textContent.match(/#\d+/g);
if(editionMatch){
edition = parseInt( editionMatch[0].replace('#',''))
}
continue;
}
if(c.classList.contains("mention"))
authorName.push(c.textContent);
text = c.textContent;
if(text)
buffContent.push(text);
if(/\!?\s*\n+/.test(text)){
flushContent();
}
}
// last
if(buffContent){
flushContent();
}
return { dom, content: FullContent };
}
function ProcessPastedMessage(){
let res = FormatDiscordMessage(CURRENT_CONTENT.html)
CURRENT_CONTENT.result = res;
let out = document.querySelector("#result");
let xDoc = document.implementation.createDocument(null, "highlights");
let rootDoc = xDoc.querySelector("highlights");
let Stats = {
total: 0
,edition: null
};
Stats.edition = res.content[0].edition;
for(let [i,high] of res.content.entries()){
let xHigh = xDoc.createElement("highlight");
let xAutor = xDoc.createElement("author");
let xLinks = xDoc.createElement("links");
let xEdition = xDoc.createElement("edition");
let xText = xDoc.createElement("text");
xAutor.textContent = high.authors
xLinks.textContent = high.links
xEdition.textContent = high.edition
xText.textContent = high.text
xHigh.appendChild(xText);
xHigh.appendChild(xLinks);
xHigh.appendChild(xEdition);
xHigh.appendChild(xAutor);
rootDoc.appendChild(xHigh)
Stats.total++
}
document.querySelector("#stats").innerHTML = `Stats: total = ${Stats.total}, edition = ${Stats.edition}`
let serializer = new XMLSerializer();
out.innerHTML = serializer.serializeToString(xDoc);
}
function ProcessPasted(content){
navigator.clipboard.read(["text/html"])
.then( async (content) => {
console.log("content", content[0].types)
let contentTypes = content[0].types;
let plainText = await (await content[0].getType("text/plain")).text();
let html = null;
if(contentTypes.includes("text/html")){
htmlContent = await content[0].getType("text/html");
console.log("html:", htmlContent);
html = await htmlContent.text();
CURRENT_CONTENT = {
html: await htmlContent.text()
,text: plainText
}
} else {
console.log("NotContainsHtml");
}
CURRENT_CONTENT = {
html
,text: plainText
}
setTimeout(ProcessPastedMessage, 100)
})
return false;
}
addEventListener("paste", ProcessPasted);
</script>
<style>
textarea {
width: 100%;
}
.container {
display: flex;
flex-direction: row;
}
.container > div {
width: 50%;
height: 70vh;
padding: 5px;
}
.container textarea {
height: 100%;
}
</style>
</head>
<body>
<p>This is a simple parser of Community Highlights, posted weekly in Huging Face Discord</p>
<p>Community Highlights is a valuable information. While Hugging Face dont provide an official list (via some API), use that tool to parse and import anywhere</p>
<p>Use it to transform content into something best to be parsed (for example, to import in some database, or blog)</p>
<p>Instrunctions></p>
<ol>
<li>Open Discord in some Broswer (just opening in browser works)</li>
<li>Go to desired Community Highlights message. Select all message and Copy</li>
<li>Paste on Content Field</li>
<li>Then, a parsed data must be generate in side input, in XML format. That format is better to you import anyhwere</li>
</ol>
<p>TODO: JSON Support, API import</p>
<div>
<p id="stats"></p>
</div>
<div class="container">
<div>
<p>Content</p>
<textarea></textarea>
</div>
<div>
<p>XML</p>
<textarea readonly id="result"></textarea>
</div>
</div>
</body>
</html> |