diff --git a/.gitignore b/.gitignore index efab496..c68fb4b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules -*.json \ No newline at end of file +stickerpacks/**/*.json +ignore/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..d1fb129 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,12 @@ +{ + "fiveServer.ignore": [ + "**/node_modules/**", + ".vscode/**", + ".git/**", + "**/*.scss", + "**/*.sass", + "**/*.css", + "**/*.ts", + "**/*.js", + ] +} \ No newline at end of file diff --git a/index.html b/index.html deleted file mode 100644 index f7a6ec2..0000000 --- a/index.html +++ /dev/null @@ -1,109 +0,0 @@ - - - -
- - -${pack.title}
`; + + if (pack.hasOwnProperty("author") && pack.author) { + let author_string = `by: ${pack.author.name}
`; + if (pack.author.url) { + author_string = ``; + } + string += author_string; + } + + if (pack.hasOwnProperty("rating") && pack.rating) { + switch (pack.rating.toLowerCase()) { + case "safe": + string += `safe
`; + break; + case "questionable": + string += `questionable
`; + break; + case "explicit": + string += `explicit
`; + break; + default: + break; + } + } + + return string; +} + +function _packCard(index, pack) { + return ` +Telegram
+ + + ${(pack.hasOwnProperty("room_id") && pack.room_id) ? ( + ` + +FluffyChat
+ + +Cinny
+ + ` + ) + : ""} +`} + +module.exports = PackLinks \ No newline at end of file diff --git a/src/templates/pack.js b/src/templates/pack.js new file mode 100644 index 0000000..08f16c3 --- /dev/null +++ b/src/templates/pack.js @@ -0,0 +1,64 @@ +const Head = require("./components/head"); +const PackCard = require("./components/packCard"); +const PackLinks = require("./components/PackLinks"); + +function _CreatePackPage(index, pack) { + return ` + + + + ${Head(index, pack)} + + + + + + + +${data.title}
- ${ - data.hasOwnProperty("author") && data.author.name - ? `${data.author.name}
` - : "" - } -