Trello + Sapper JAMstack (3๋ถ)
14429 ๋จ์ด trellosveltejavascriptsapper
Sapper ์ค์
Sapper ์ค์ ์ ์ค์น๊ฐ ๋งค์ฐ ์ฝ์ต๋๋ค. ์์ธํ ๋ด์ฉ์ ํ์ธํ์ญ์์คhere. ์ ๋ ๊ฐ์ธ์ ์ผ๋ก ๋กค์ ์ ์ ํธํฉ๋๋ค.
# for Rollup
npx degit "sveltejs/sapper-template#rollup" my-app
# for webpack
npx degit "sveltejs/sapper-template#webpack" my-app
cd my-app
npm install
npm run dev & open http://localhost:3000
ํธ์ง๊ธฐ์์ ํ๋ก์ ํธ๋ฅผ ์ด๋ฉด ์ฒ์์๋ ์์์ ์ผ๋ก ๋ณด์ผ ์ ์์ง๋ง Sapper์ SSG ๋ถ๋ถ์ ์์ฑํ ๋ ๋งค์ฐ ์ง๊ด์ ์ธ ํผ๋์ค๋ฌ์ด ๋๋ ํ ๋ฆฌ ๊ตฌ์กฐ๋ฅผ ์ ์ ์์ต๋๋ค.
โโโโroutes
โ โ index.svelte
โ โ about.svelte
โ โ _layout.svelte
| | _error.svlete
โ โโโโblog
โ โ [slug].svelte
โ โ index.svelte
โ โ [slug].json.js
โ โ _posts.js
โ โ index.json.js
Sapper์์ ์์ ๋ถ๋ถ์
_
๋ฐ์ค์ด ์๋ ํ์ผ์ ์จ๊น/๊ฐ์ธ ํ์ผ์
๋๋ค. Trello์์ API๋ฅผ ํตํด ๋ธ๋ก๊ทธ ๊ฒ์๋ฌผ์ ๊ฐ์ ธ์ค๋ ๋ก์ง์ ๋ธ๋ก๊ทธ ๊ฒ์๋ฌผ์ ์ ํฉํ JSON ํ์ผ์ ์์ฑํ๋ _posts.js
ํ์ผ์์ ๋ฐ์ํฉ๋๋ค. [slug].svelte
๋ฐ index.svelte
์๋ ๊ฒ์๋ฌผ ๋ชฉ๋ก๊ณผ ๊ฒ์๋ฌผ ์์ฒด๋ฅผ ๋ด๋นํ๋ ํ
ํ๋ฆฟ์ด ํฌํจ๋์ด ์์ต๋๋ค. [slug].json.js
๋ฐ index.json.js
JSON์ ๋ด๋ณด๋
๋๋ค. ์ด ํ์ผ ์์ด๋ ๊ฐ๋ฅํ์ง๋ง SSG๋ ์ํํ์ง๋ง ์ฑ๋ฅ์ ํฐ ํ๊ฒฉ์ ์ฃผ๋ฉฐ ._posts.js
๋ฐ index.svelte
์ ์ฑ์ธ ์ ์๋ ๋ธ๋ก๊ทธ ๊ฒ์๋ฌผ์ ๋ํ ๋ฐ์ดํฐ๊ฐ ์๋ JSON ๊ฐ์ฒด๋ฅผ ๋ด๋ณด๋ด๋ [slug].svelte
์ ๋ํ ์ค๋ํซ//_posts.js
import fetch from "node-fetch";
let data = {};
let url = `https://api.trello.com/1/lists/5f538d3a842e0a3b6ce9f259/cards?key={key}&token={token}`; //this is from your previous post
let trello = async function getPosts() {
const res = await fetch(url);
data = await res.json();
return (data = data.map((e) => {
const months = ["jan", "feb", "mar","apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"];
let posted_date = new Date(e.dateLastActivity)
let formatted_date = `${posted_date.getDate()} ${months[posted_date.getMonth()]} ${posted_date.getFullYear()}`
let tags = e.labels.map(e=>{
return {
name:e.name,
color:e.color
}
})
return { title: e.name, slug: e.name.toLowerCase().replace(/[^\w ]+/g,'').replace(/ +/g,'-'), desc: e.desc, image:e.cover.scaled,time:formatted_date,tags };
}));
};
export default trello;
index.json.js
๋ฐ [slug].json.js
๋ฅผ ์ฝ๊ฐ ์์ ํ๋ฉด ์๋์ผ๋ก Trello ํญ๋ชฉ์ ๋ธ๋ก๊ทธ ๊ฒ์๋ฌผ๋ก ๊ฐ์ ธ์ฌ ์ ์์ต๋๋ค.
//index.json.js
import trello from "./_posts.js";
export async function get(req, res) {
res.writeHead(200, {
"Content-Type": "application/json",
});
let data = await trello();
let posts = data;
posts = posts.map((post) => {
return {
title: post.title,
slug: post.slug,
time: post.time,
tags: post.tags
};
});
res.end(JSON.stringify(posts));
}
//[slug].json.js
import trello from './_posts.js';
const lookup = new Map();
export async function get(req, res, next) {
// the `slug` parameter is available because
// this file is called [slug].json.js
const { slug } = req.params;
let data = await trello()
data.forEach(e => {
lookup.set(e.slug, JSON.stringify(e));
});
if (lookup.has(slug)) {
res.writeHead(200, {
'Content-Type': 'application/json'
});
res.end(lookup.get(slug));
} else {
res.writeHead(404, {
'Content-Type': 'application/json'
});
res.end(JSON.stringify({
message: `Not found`
}));
}
}
Reference
์ด ๋ฌธ์ ์ ๊ดํ์ฌ(Trello + Sapper JAMstack (3๋ถ)), ์ฐ๋ฆฌ๋ ์ด๊ณณ์์ ๋ ๋ง์ ์๋ฃ๋ฅผ ๋ฐ๊ฒฌํ๊ณ ๋งํฌ๋ฅผ ํด๋ฆญํ์ฌ ๋ณด์๋ค https://dev.to/shriji/trello-sapper-jamstack-part-3-2n28ํ ์คํธ๋ฅผ ์์ ๋กญ๊ฒ ๊ณต์ ํ๊ฑฐ๋ ๋ณต์ฌํ ์ ์์ต๋๋ค.ํ์ง๋ง ์ด ๋ฌธ์์ URL์ ์ฐธ์กฐ URL๋ก ๋จ๊ฒจ ๋์ญ์์ค.
์ฐ์ํ ๊ฐ๋ฐ์ ์ฝํ
์ธ ๋ฐ๊ฒฌ์ ์ ๋
(Collection and Share based on the CC Protocol.)
์ข์ ์นํ์ด์ง ์ฆ๊ฒจ์ฐพ๊ธฐ
๊ฐ๋ฐ์ ์ฐ์ ์ฌ์ดํธ ์์ง
๊ฐ๋ฐ์๊ฐ ์์์ผ ํ ํ์ ์ฌ์ดํธ 100์ ์ถ์ฒ ์ฐ๋ฆฌ๋ ๋น์ ์ ์ํด 100๊ฐ์ ์์ฃผ ์ฌ์ฉํ๋ ๊ฐ๋ฐ์ ํ์ต ์ฌ์ดํธ๋ฅผ ์ ๋ฆฌํ์ต๋๋ค