aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-nginx/sites/www/src/mock-todos.ts
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-07-19 01:37:02 +0800
committercrupest <crupest@outlook.com>2023-07-19 01:37:02 +0800
commitef93da5b957dcfd75ac6c820ee35461399b58324 (patch)
tree4b48a597d23efd757623ae415d658a134ff75a45 /docker/crupest-nginx/sites/www/src/mock-todos.ts
parent4dfe8bdbb6405eede0eda2422417d9353ddf7747 (diff)
downloadcrupest-ef93da5b957dcfd75ac6c820ee35461399b58324.tar.gz
crupest-ef93da5b957dcfd75ac6c820ee35461399b58324.tar.bz2
crupest-ef93da5b957dcfd75ac6c820ee35461399b58324.zip
A lot prettier.
Diffstat (limited to 'docker/crupest-nginx/sites/www/src/mock-todos.ts')
-rw-r--r--docker/crupest-nginx/sites/www/src/mock-todos.ts126
1 files changed, 126 insertions, 0 deletions
diff --git a/docker/crupest-nginx/sites/www/src/mock-todos.ts b/docker/crupest-nginx/sites/www/src/mock-todos.ts
new file mode 100644
index 0000000..aacb40e
--- /dev/null
+++ b/docker/crupest-nginx/sites/www/src/mock-todos.ts
@@ -0,0 +1,126 @@
+/** Grabbed at Tue, 18 Jul 2023 15:30:05 GMT, used as mock data. 🍻 */
+
+const todos = [
+ {
+ status: "Done",
+ title: "All BLOCKed by graduate paper.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Done",
+ title: "Slogan is not completely visible on phone.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Todo",
+ title: "Users api.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Todo",
+ title: "Secrets api.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Todo",
+ title: "Refactor aio python scripts.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Todo",
+ title: "Nginx path redirection.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Todo",
+ title: "Make services optional.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Done",
+ title: "Optimize code-server.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Todo",
+ title: "No more alpine.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Done",
+ title: "No netease music.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Done",
+ title: "Draft issue status in www TODOs.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Done",
+ title: "Re-bootstrap front end.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Todo",
+ title: "Clean react imports for new jsx usage.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Done",
+ title: "i18next backend bug.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Done",
+ title: "Organize buttons.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Done",
+ title: "Fix dialog typo.",
+ closed: true,
+ color: "green",
+ },
+ {
+ status: "Todo",
+ title: "Organize OperationDialog.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Todo",
+ title: "New palette api.",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Todo",
+ title: "No Docker!!!",
+ closed: false,
+ color: "blue",
+ },
+ {
+ status: "Done",
+ title: "Improve animation of slogan.",
+ closed: true,
+ color: "green",
+ },
+];
+
+export default todos;