Initialization.
This commit is contained in:
commit
4094afff3d
13 changed files with 517 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Feseur
|
||||
|
||||
TODO list management service.
|
21
asset/config_schema.json
Normal file
21
asset/config_schema.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"file_path": {
|
||||
"type": "string"
|
||||
},
|
||||
"repo_path": {
|
||||
"type": "string"
|
||||
},
|
||||
"remote_url": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"file_path",
|
||||
"repo_path",
|
||||
"remote_url"
|
||||
],
|
||||
"additionalProperties": false,
|
||||
"$schema": "http://json-schema.org/draft-07/schema#"
|
||||
}
|
9
build.sh
Executable file
9
build.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/bash
|
||||
set -e
|
||||
cd "$(dirname "$(realpath "$0")")"
|
||||
|
||||
|
||||
./src/gen.ts
|
||||
mkdir -p target
|
||||
deno compile --allow-env --allow-read --output=target/todo src/todo.ts
|
||||
deno compile --allow-all --output=target/service src/service.ts
|
7
deno.json
Normal file
7
deno.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"fmt": {
|
||||
"useTabs": true,
|
||||
"lineWidth": 120,
|
||||
"semiColons": false
|
||||
}
|
||||
}
|
155
deno.lock
generated
Normal file
155
deno.lock
generated
Normal file
|
@ -0,0 +1,155 @@
|
|||
{
|
||||
"version": "4",
|
||||
"specifiers": {
|
||||
"npm:zod-to-json-schema@3.24.4": "3.24.4_zod@3.24.4",
|
||||
"npm:zod@3.24.4": "3.24.4"
|
||||
},
|
||||
"npm": {
|
||||
"zod-to-json-schema@3.24.4_zod@3.24.4": {
|
||||
"integrity": "sha512-0uNlcvgabyrni9Ag8Vghj21drk7+7tp7VTwwR7KxxXXc/3pbXz2PHlDgj3cICahgF1kHm4dExBFj7BXrZJXzig==",
|
||||
"dependencies": [
|
||||
"zod"
|
||||
]
|
||||
},
|
||||
"zod@3.24.4": {
|
||||
"integrity": "sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg=="
|
||||
}
|
||||
},
|
||||
"redirects": {
|
||||
"https://deno.land/x/crayon/mod.ts": "https://deno.land/x/crayon@3.3.3/mod.ts"
|
||||
},
|
||||
"remote": {
|
||||
"https://deno.land/std@0.224.0/assert/_constants.ts": "a271e8ef5a573f1df8e822a6eb9d09df064ad66a4390f21b3e31f820a38e0975",
|
||||
"https://deno.land/std@0.224.0/assert/assert.ts": "09d30564c09de846855b7b071e62b5974b001bb72a4b797958fe0660e7849834",
|
||||
"https://deno.land/std@0.224.0/assert/assert_almost_equals.ts": "9e416114322012c9a21fa68e187637ce2d7df25bcbdbfd957cd639e65d3cf293",
|
||||
"https://deno.land/std@0.224.0/assert/assert_array_includes.ts": "14c5094471bc8e4a7895fc6aa5a184300d8a1879606574cb1cd715ef36a4a3c7",
|
||||
"https://deno.land/std@0.224.0/assert/assert_equals.ts": "3bbca947d85b9d374a108687b1a8ba3785a7850436b5a8930d81f34a32cb8c74",
|
||||
"https://deno.land/std@0.224.0/assert/assert_exists.ts": "43420cf7f956748ae6ed1230646567b3593cb7a36c5a5327269279c870c5ddfd",
|
||||
"https://deno.land/std@0.224.0/assert/assert_false.ts": "3e9be8e33275db00d952e9acb0cd29481a44fa0a4af6d37239ff58d79e8edeff",
|
||||
"https://deno.land/std@0.224.0/assert/assert_greater.ts": "5e57b201fd51b64ced36c828e3dfd773412c1a6120c1a5a99066c9b261974e46",
|
||||
"https://deno.land/std@0.224.0/assert/assert_greater_or_equal.ts": "9870030f997a08361b6f63400273c2fb1856f5db86c0c3852aab2a002e425c5b",
|
||||
"https://deno.land/std@0.224.0/assert/assert_instance_of.ts": "e22343c1fdcacfaea8f37784ad782683ec1cf599ae9b1b618954e9c22f376f2c",
|
||||
"https://deno.land/std@0.224.0/assert/assert_is_error.ts": "f856b3bc978a7aa6a601f3fec6603491ab6255118afa6baa84b04426dd3cc491",
|
||||
"https://deno.land/std@0.224.0/assert/assert_less.ts": "60b61e13a1982865a72726a5fa86c24fad7eb27c3c08b13883fb68882b307f68",
|
||||
"https://deno.land/std@0.224.0/assert/assert_less_or_equal.ts": "d2c84e17faba4afe085e6c9123a63395accf4f9e00150db899c46e67420e0ec3",
|
||||
"https://deno.land/std@0.224.0/assert/assert_match.ts": "ace1710dd3b2811c391946954234b5da910c5665aed817943d086d4d4871a8b7",
|
||||
"https://deno.land/std@0.224.0/assert/assert_not_equals.ts": "78d45dd46133d76ce624b2c6c09392f6110f0df9b73f911d20208a68dee2ef29",
|
||||
"https://deno.land/std@0.224.0/assert/assert_not_instance_of.ts": "3434a669b4d20cdcc5359779301a0588f941ffdc2ad68803c31eabdb4890cf7a",
|
||||
"https://deno.land/std@0.224.0/assert/assert_not_match.ts": "df30417240aa2d35b1ea44df7e541991348a063d9ee823430e0b58079a72242a",
|
||||
"https://deno.land/std@0.224.0/assert/assert_not_strict_equals.ts": "37f73880bd672709373d6dc2c5f148691119bed161f3020fff3548a0496f71b8",
|
||||
"https://deno.land/std@0.224.0/assert/assert_object_match.ts": "411450fd194fdaabc0089ae68f916b545a49d7b7e6d0026e84a54c9e7eed2693",
|
||||
"https://deno.land/std@0.224.0/assert/assert_rejects.ts": "4bee1d6d565a5b623146a14668da8f9eb1f026a4f338bbf92b37e43e0aa53c31",
|
||||
"https://deno.land/std@0.224.0/assert/assert_strict_equals.ts": "b4f45f0fd2e54d9029171876bd0b42dd9ed0efd8f853ab92a3f50127acfa54f5",
|
||||
"https://deno.land/std@0.224.0/assert/assert_string_includes.ts": "496b9ecad84deab72c8718735373feb6cdaa071eb91a98206f6f3cb4285e71b8",
|
||||
"https://deno.land/std@0.224.0/assert/assert_throws.ts": "c6508b2879d465898dab2798009299867e67c570d7d34c90a2d235e4553906eb",
|
||||
"https://deno.land/std@0.224.0/assert/assertion_error.ts": "ba8752bd27ebc51f723702fac2f54d3e94447598f54264a6653d6413738a8917",
|
||||
"https://deno.land/std@0.224.0/assert/equal.ts": "bddf07bb5fc718e10bb72d5dc2c36c1ce5a8bdd3b647069b6319e07af181ac47",
|
||||
"https://deno.land/std@0.224.0/assert/fail.ts": "0eba674ffb47dff083f02ced76d5130460bff1a9a68c6514ebe0cdea4abadb68",
|
||||
"https://deno.land/std@0.224.0/assert/mod.ts": "48b8cb8a619ea0b7958ad7ee9376500fe902284bb36f0e32c598c3dc34cbd6f3",
|
||||
"https://deno.land/std@0.224.0/assert/unimplemented.ts": "8c55a5793e9147b4f1ef68cd66496b7d5ba7a9e7ca30c6da070c1a58da723d73",
|
||||
"https://deno.land/std@0.224.0/assert/unreachable.ts": "5ae3dbf63ef988615b93eb08d395dda771c96546565f9e521ed86f6510c29e19",
|
||||
"https://deno.land/std@0.224.0/fmt/colors.ts": "508563c0659dd7198ba4bbf87e97f654af3c34eb56ba790260f252ad8012e1c5",
|
||||
"https://deno.land/std@0.224.0/fs/_create_walk_entry.ts": "5d9d2aaec05bcf09a06748b1684224d33eba7a4de24cf4cf5599991ca6b5b412",
|
||||
"https://deno.land/std@0.224.0/fs/_get_file_info_type.ts": "da7bec18a7661dba360a1db475b826b18977582ce6fc9b25f3d4ee0403fe8cbd",
|
||||
"https://deno.land/std@0.224.0/fs/_is_same_path.ts": "709c95868345fea051c58b9e96af95cff94e6ae98dfcff2b66dee0c212c4221f",
|
||||
"https://deno.land/std@0.224.0/fs/_is_subdir.ts": "c68b309d46cc8568ed83c000f608a61bbdba0943b7524e7a30f9e450cf67eecd",
|
||||
"https://deno.land/std@0.224.0/fs/_to_path_string.ts": "29bfc9c6c112254961d75cbf6ba814d6de5349767818eb93090cecfa9665591e",
|
||||
"https://deno.land/std@0.224.0/fs/copy.ts": "7ab12a16adb65d155d4943c88081ca16ce3b0b5acada64c1ce93800653678039",
|
||||
"https://deno.land/std@0.224.0/fs/empty_dir.ts": "e400e96e1d2c8c558a5a1712063bd43939e00619c1d1cc29959babc6f1639418",
|
||||
"https://deno.land/std@0.224.0/fs/ensure_dir.ts": "51a6279016c65d2985f8803c848e2888e206d1b510686a509fa7cc34ce59d29f",
|
||||
"https://deno.land/std@0.224.0/fs/ensure_file.ts": "67608cf550529f3d4aa1f8b6b36bf817bdc40b14487bf8f60e61cbf68f507cf3",
|
||||
"https://deno.land/std@0.224.0/fs/ensure_link.ts": "5c98503ebfa9cc05e2f2efaa30e91e60b4dd5b43ebbda82f435c0a5c6e3ffa01",
|
||||
"https://deno.land/std@0.224.0/fs/ensure_symlink.ts": "cafe904cebacb9a761977d6dbf5e3af938be946a723bb394080b9a52714fafe4",
|
||||
"https://deno.land/std@0.224.0/fs/eol.ts": "18c4ac009d0318504c285879eb7f47942643f13619e0ff070a0edc59353306bd",
|
||||
"https://deno.land/std@0.224.0/fs/exists.ts": "3d38cb7dcbca3cf313be343a7b8af18a87bddb4b5ca1bd2314be12d06533b50f",
|
||||
"https://deno.land/std@0.224.0/fs/expand_glob.ts": "2e428d90acc6676b2aa7b5c78ef48f30641b13f1fe658e7976c9064fb4b05309",
|
||||
"https://deno.land/std@0.224.0/fs/mod.ts": "c25e6802cbf27f3050f60b26b00c2d8dba1cb7fcdafe34c66006a7473b7b34d4",
|
||||
"https://deno.land/std@0.224.0/fs/move.ts": "ca205d848908d7f217353bc5c623627b1333490b8b5d3ef4cab600a700c9bd8f",
|
||||
"https://deno.land/std@0.224.0/fs/walk.ts": "cddf87d2705c0163bff5d7767291f05b0f46ba10b8b28f227c3849cace08d303",
|
||||
"https://deno.land/std@0.224.0/internal/diff.ts": "6234a4b493ebe65dc67a18a0eb97ef683626a1166a1906232ce186ae9f65f4e6",
|
||||
"https://deno.land/std@0.224.0/internal/format.ts": "0a98ee226fd3d43450245b1844b47003419d34d210fa989900861c79820d21c2",
|
||||
"https://deno.land/std@0.224.0/internal/mod.ts": "534125398c8e7426183e12dc255bb635d94e06d0f93c60a297723abe69d3b22e",
|
||||
"https://deno.land/std@0.224.0/path/_common/assert_path.ts": "dbdd757a465b690b2cc72fc5fb7698c51507dec6bfafce4ca500c46b76ff7bd8",
|
||||
"https://deno.land/std@0.224.0/path/_common/basename.ts": "569744855bc8445f3a56087fd2aed56bdad39da971a8d92b138c9913aecc5fa2",
|
||||
"https://deno.land/std@0.224.0/path/_common/common.ts": "ef73c2860694775fe8ffcbcdd387f9f97c7a656febf0daa8c73b56f4d8a7bd4c",
|
||||
"https://deno.land/std@0.224.0/path/_common/constants.ts": "dc5f8057159f4b48cd304eb3027e42f1148cf4df1fb4240774d3492b5d12ac0c",
|
||||
"https://deno.land/std@0.224.0/path/_common/dirname.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
|
||||
"https://deno.land/std@0.224.0/path/_common/format.ts": "92500e91ea5de21c97f5fe91e178bae62af524b72d5fcd246d6d60ae4bcada8b",
|
||||
"https://deno.land/std@0.224.0/path/_common/from_file_url.ts": "d672bdeebc11bf80e99bf266f886c70963107bdd31134c4e249eef51133ceccf",
|
||||
"https://deno.land/std@0.224.0/path/_common/glob_to_reg_exp.ts": "6cac16d5c2dc23af7d66348a7ce430e5de4e70b0eede074bdbcf4903f4374d8d",
|
||||
"https://deno.land/std@0.224.0/path/_common/normalize.ts": "684df4aa71a04bbcc346c692c8485594fc8a90b9408dfbc26ff32cf3e0c98cc8",
|
||||
"https://deno.land/std@0.224.0/path/_common/normalize_string.ts": "33edef773c2a8e242761f731adeb2bd6d683e9c69e4e3d0092985bede74f4ac3",
|
||||
"https://deno.land/std@0.224.0/path/_common/relative.ts": "faa2753d9b32320ed4ada0733261e3357c186e5705678d9dd08b97527deae607",
|
||||
"https://deno.land/std@0.224.0/path/_common/strip_trailing_separators.ts": "7024a93447efcdcfeaa9339a98fa63ef9d53de363f1fbe9858970f1bba02655a",
|
||||
"https://deno.land/std@0.224.0/path/_common/to_file_url.ts": "7f76adbc83ece1bba173e6e98a27c647712cab773d3f8cbe0398b74afc817883",
|
||||
"https://deno.land/std@0.224.0/path/_interface.ts": "8dfeb930ca4a772c458a8c7bbe1e33216fe91c253411338ad80c5b6fa93ddba0",
|
||||
"https://deno.land/std@0.224.0/path/_os.ts": "8fb9b90fb6b753bd8c77cfd8a33c2ff6c5f5bc185f50de8ca4ac6a05710b2c15",
|
||||
"https://deno.land/std@0.224.0/path/basename.ts": "7ee495c2d1ee516ffff48fb9a93267ba928b5a3486b550be73071bc14f8cc63e",
|
||||
"https://deno.land/std@0.224.0/path/common.ts": "03e52e22882402c986fe97ca3b5bb4263c2aa811c515ce84584b23bac4cc2643",
|
||||
"https://deno.land/std@0.224.0/path/constants.ts": "0c206169ca104938ede9da48ac952de288f23343304a1c3cb6ec7625e7325f36",
|
||||
"https://deno.land/std@0.224.0/path/dirname.ts": "85bd955bf31d62c9aafdd7ff561c4b5fb587d11a9a5a45e2b01aedffa4238a7c",
|
||||
"https://deno.land/std@0.224.0/path/extname.ts": "593303db8ae8c865cbd9ceec6e55d4b9ac5410c1e276bfd3131916591b954441",
|
||||
"https://deno.land/std@0.224.0/path/format.ts": "6ce1779b0980296cf2bc20d66436b12792102b831fd281ab9eb08fa8a3e6f6ac",
|
||||
"https://deno.land/std@0.224.0/path/from_file_url.ts": "911833ae4fd10a1c84f6271f36151ab785955849117dc48c6e43b929504ee069",
|
||||
"https://deno.land/std@0.224.0/path/glob_to_regexp.ts": "7f30f0a21439cadfdae1be1bf370880b415e676097fda584a63ce319053b5972",
|
||||
"https://deno.land/std@0.224.0/path/is_absolute.ts": "4791afc8bfd0c87f0526eaa616b0d16e7b3ab6a65b62942e50eac68de4ef67d7",
|
||||
"https://deno.land/std@0.224.0/path/is_glob.ts": "a65f6195d3058c3050ab905705891b412ff942a292bcbaa1a807a74439a14141",
|
||||
"https://deno.land/std@0.224.0/path/join.ts": "ae2ec5ca44c7e84a235fd532e4a0116bfb1f2368b394db1c4fb75e3c0f26a33a",
|
||||
"https://deno.land/std@0.224.0/path/join_globs.ts": "5b3bf248b93247194f94fa6947b612ab9d3abd571ca8386cf7789038545e54a0",
|
||||
"https://deno.land/std@0.224.0/path/mod.ts": "f6bd79cb08be0e604201bc9de41ac9248582699d1b2ee0ab6bc9190d472cf9cd",
|
||||
"https://deno.land/std@0.224.0/path/normalize.ts": "4155743ccceeed319b350c1e62e931600272fad8ad00c417b91df093867a8352",
|
||||
"https://deno.land/std@0.224.0/path/normalize_glob.ts": "cc89a77a7d3b1d01053b9dcd59462b75482b11e9068ae6c754b5cf5d794b374f",
|
||||
"https://deno.land/std@0.224.0/path/parse.ts": "77ad91dcb235a66c6f504df83087ce2a5471e67d79c402014f6e847389108d5a",
|
||||
"https://deno.land/std@0.224.0/path/posix/_util.ts": "1e3937da30f080bfc99fe45d7ed23c47dd8585c5e473b2d771380d3a6937cf9d",
|
||||
"https://deno.land/std@0.224.0/path/posix/basename.ts": "d2fa5fbbb1c5a3ab8b9326458a8d4ceac77580961b3739cd5bfd1d3541a3e5f0",
|
||||
"https://deno.land/std@0.224.0/path/posix/common.ts": "26f60ccc8b2cac3e1613000c23ac5a7d392715d479e5be413473a37903a2b5d4",
|
||||
"https://deno.land/std@0.224.0/path/posix/constants.ts": "93481efb98cdffa4c719c22a0182b994e5a6aed3047e1962f6c2c75b7592bef1",
|
||||
"https://deno.land/std@0.224.0/path/posix/dirname.ts": "76cd348ffe92345711409f88d4d8561d8645353ac215c8e9c80140069bf42f00",
|
||||
"https://deno.land/std@0.224.0/path/posix/extname.ts": "e398c1d9d1908d3756a7ed94199fcd169e79466dd88feffd2f47ce0abf9d61d2",
|
||||
"https://deno.land/std@0.224.0/path/posix/format.ts": "185e9ee2091a42dd39e2a3b8e4925370ee8407572cee1ae52838aed96310c5c1",
|
||||
"https://deno.land/std@0.224.0/path/posix/from_file_url.ts": "951aee3a2c46fd0ed488899d024c6352b59154c70552e90885ed0c2ab699bc40",
|
||||
"https://deno.land/std@0.224.0/path/posix/glob_to_regexp.ts": "76f012fcdb22c04b633f536c0b9644d100861bea36e9da56a94b9c589a742e8f",
|
||||
"https://deno.land/std@0.224.0/path/posix/is_absolute.ts": "cebe561ad0ae294f0ce0365a1879dcfca8abd872821519b4fcc8d8967f888ede",
|
||||
"https://deno.land/std@0.224.0/path/posix/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9",
|
||||
"https://deno.land/std@0.224.0/path/posix/join.ts": "7fc2cb3716aa1b863e990baf30b101d768db479e70b7313b4866a088db016f63",
|
||||
"https://deno.land/std@0.224.0/path/posix/join_globs.ts": "a9475b44645feddceb484ee0498e456f4add112e181cb94042cdc6d47d1cdd25",
|
||||
"https://deno.land/std@0.224.0/path/posix/mod.ts": "2301fc1c54a28b349e20656f68a85f75befa0ee9b6cd75bfac3da5aca9c3f604",
|
||||
"https://deno.land/std@0.224.0/path/posix/normalize.ts": "baeb49816a8299f90a0237d214cef46f00ba3e95c0d2ceb74205a6a584b58a91",
|
||||
"https://deno.land/std@0.224.0/path/posix/normalize_glob.ts": "9c87a829b6c0f445d03b3ecadc14492e2864c3ebb966f4cea41e98326e4435c6",
|
||||
"https://deno.land/std@0.224.0/path/posix/parse.ts": "09dfad0cae530f93627202f28c1befa78ea6e751f92f478ca2cc3b56be2cbb6a",
|
||||
"https://deno.land/std@0.224.0/path/posix/relative.ts": "3907d6eda41f0ff723d336125a1ad4349112cd4d48f693859980314d5b9da31c",
|
||||
"https://deno.land/std@0.224.0/path/posix/resolve.ts": "08b699cfeee10cb6857ccab38fa4b2ec703b0ea33e8e69964f29d02a2d5257cf",
|
||||
"https://deno.land/std@0.224.0/path/posix/to_file_url.ts": "7aa752ba66a35049e0e4a4be5a0a31ac6b645257d2e031142abb1854de250aaf",
|
||||
"https://deno.land/std@0.224.0/path/posix/to_namespaced_path.ts": "28b216b3c76f892a4dca9734ff1cc0045d135532bfd9c435ae4858bfa5a2ebf0",
|
||||
"https://deno.land/std@0.224.0/path/relative.ts": "ab739d727180ed8727e34ed71d976912461d98e2b76de3d3de834c1066667add",
|
||||
"https://deno.land/std@0.224.0/path/resolve.ts": "a6f977bdb4272e79d8d0ed4333e3d71367cc3926acf15ac271f1d059c8494d8d",
|
||||
"https://deno.land/std@0.224.0/path/to_file_url.ts": "88f049b769bce411e2d2db5bd9e6fd9a185a5fbd6b9f5ad8f52bef517c4ece1b",
|
||||
"https://deno.land/std@0.224.0/path/to_namespaced_path.ts": "b706a4103b104cfadc09600a5f838c2ba94dbcdb642344557122dda444526e40",
|
||||
"https://deno.land/std@0.224.0/path/windows/_util.ts": "d5f47363e5293fced22c984550d5e70e98e266cc3f31769e1710511803d04808",
|
||||
"https://deno.land/std@0.224.0/path/windows/basename.ts": "6bbc57bac9df2cec43288c8c5334919418d784243a00bc10de67d392ab36d660",
|
||||
"https://deno.land/std@0.224.0/path/windows/common.ts": "26f60ccc8b2cac3e1613000c23ac5a7d392715d479e5be413473a37903a2b5d4",
|
||||
"https://deno.land/std@0.224.0/path/windows/constants.ts": "5afaac0a1f67b68b0a380a4ef391bf59feb55856aa8c60dfc01bd3b6abb813f5",
|
||||
"https://deno.land/std@0.224.0/path/windows/dirname.ts": "33e421be5a5558a1346a48e74c330b8e560be7424ed7684ea03c12c21b627bc9",
|
||||
"https://deno.land/std@0.224.0/path/windows/extname.ts": "165a61b00d781257fda1e9606a48c78b06815385e7d703232548dbfc95346bef",
|
||||
"https://deno.land/std@0.224.0/path/windows/format.ts": "bbb5ecf379305b472b1082cd2fdc010e44a0020030414974d6029be9ad52aeb6",
|
||||
"https://deno.land/std@0.224.0/path/windows/from_file_url.ts": "ced2d587b6dff18f963f269d745c4a599cf82b0c4007356bd957cb4cb52efc01",
|
||||
"https://deno.land/std@0.224.0/path/windows/glob_to_regexp.ts": "e45f1f89bf3fc36f94ab7b3b9d0026729829fabc486c77f414caebef3b7304f8",
|
||||
"https://deno.land/std@0.224.0/path/windows/is_absolute.ts": "4a8f6853f8598cf91a835f41abed42112cebab09478b072e4beb00ec81f8ca8a",
|
||||
"https://deno.land/std@0.224.0/path/windows/is_glob.ts": "8a8b08c08bf731acf2c1232218f1f45a11131bc01de81e5f803450a5914434b9",
|
||||
"https://deno.land/std@0.224.0/path/windows/join.ts": "8d03530ab89195185103b7da9dfc6327af13eabdcd44c7c63e42e27808f50ecf",
|
||||
"https://deno.land/std@0.224.0/path/windows/join_globs.ts": "a9475b44645feddceb484ee0498e456f4add112e181cb94042cdc6d47d1cdd25",
|
||||
"https://deno.land/std@0.224.0/path/windows/mod.ts": "2301fc1c54a28b349e20656f68a85f75befa0ee9b6cd75bfac3da5aca9c3f604",
|
||||
"https://deno.land/std@0.224.0/path/windows/normalize.ts": "78126170ab917f0ca355a9af9e65ad6bfa5be14d574c5fb09bb1920f52577780",
|
||||
"https://deno.land/std@0.224.0/path/windows/normalize_glob.ts": "9c87a829b6c0f445d03b3ecadc14492e2864c3ebb966f4cea41e98326e4435c6",
|
||||
"https://deno.land/std@0.224.0/path/windows/parse.ts": "08804327b0484d18ab4d6781742bf374976de662f8642e62a67e93346e759707",
|
||||
"https://deno.land/std@0.224.0/path/windows/relative.ts": "3e1abc7977ee6cc0db2730d1f9cb38be87b0ce4806759d271a70e4997fc638d7",
|
||||
"https://deno.land/std@0.224.0/path/windows/resolve.ts": "8dae1dadfed9d46ff46cc337c9525c0c7d959fb400a6308f34595c45bdca1972",
|
||||
"https://deno.land/std@0.224.0/path/windows/to_file_url.ts": "40e560ee4854fe5a3d4d12976cef2f4e8914125c81b11f1108e127934ced502e",
|
||||
"https://deno.land/std@0.224.0/path/windows/to_namespaced_path.ts": "4ffa4fb6fae321448d5fe810b3ca741d84df4d7897e61ee29be961a6aac89a4c",
|
||||
"https://deno.land/x/crayon@3.3.3/mod.ts": "82ad225583a483c4837577971629cddaa22614093af8353da6426b9366de9780",
|
||||
"https://deno.land/x/crayon@3.3.3/src/conversions.ts": "9bfd3b1fbe412bcba092890ac558b6beaad4c3aa399cd99d45fadb324d28afd6",
|
||||
"https://deno.land/x/crayon@3.3.3/src/crayon.ts": "6b237baa08a31c903436e040afd2228a7fffaa5d11dddc58e3c402f79b3c1d04",
|
||||
"https://deno.land/x/crayon@3.3.3/src/styles.ts": "aa588b57b2c0482dc5c6f53109b4287831a9827c0aeef9a88129beae1172c1ee",
|
||||
"https://deno.land/x/crayon@3.3.3/src/util.ts": "af8884a917488de76ac0c2b92482093ade74514ece77a4c64e5eb5b0f6ed68e6"
|
||||
}
|
||||
}
|
23
src/gen.ts
Executable file
23
src/gen.ts
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env -S deno run --allow-read --allow-write
|
||||
|
||||
import { config_json_schema } from "./lib/conf.ts"
|
||||
import { dirname, join } from "https://deno.land/std@0.224.0/path/mod.ts"
|
||||
|
||||
await main()
|
||||
async function main() {
|
||||
await generate_schema()
|
||||
}
|
||||
|
||||
async function generate_schema() {
|
||||
const schema = config_json_schema()
|
||||
const text = JSON.stringify(schema, null, 4)
|
||||
const path = join(await project_root(), "asset", "config_schema.json")
|
||||
await Deno.writeTextFile(path, text)
|
||||
console.log("[gen.ts] generate_schema to", path)
|
||||
}
|
||||
|
||||
async function project_root() {
|
||||
const path = new URL(import.meta.url).pathname
|
||||
const this_file = await Deno.realPath(path)
|
||||
return dirname(dirname(this_file))
|
||||
}
|
45
src/lib/conf.ts
Normal file
45
src/lib/conf.ts
Normal file
|
@ -0,0 +1,45 @@
|
|||
import { z } from "npm:zod@3.24.4"
|
||||
import { zodToJsonSchema } from "npm:zod-to-json-schema@3.24.4"
|
||||
import { join, SEPARATOR } from "https://deno.land/std@0.224.0/path/mod.ts"
|
||||
import { exists } from "https://deno.land/std@0.224.0/fs/mod.ts"
|
||||
import { log } from "./utils.ts"
|
||||
|
||||
export type ConfigType = z.infer<ReturnType<typeof config_schema>>
|
||||
export function config_schema() {
|
||||
return z.object({
|
||||
file_path: z.string(),
|
||||
repo_path: z.string(),
|
||||
remote_url: z.string(),
|
||||
})
|
||||
}
|
||||
|
||||
export function config_json_schema() {
|
||||
return zodToJsonSchema(config_schema())
|
||||
}
|
||||
|
||||
async function home_path() {
|
||||
const from_env = Deno.env.get("FESEUR_HOME") ?? Deno.env.get("HOME")
|
||||
if (from_env !== undefined) return from_env
|
||||
const whoami = await new Deno.Command("whoami", { stdout: "piped" }).output()
|
||||
return join(SEPARATOR, "home", new TextDecoder().decode(whoami.stdout))
|
||||
}
|
||||
|
||||
export async function config_default() {
|
||||
return {
|
||||
"$schema": "https://git.barnulf.net/mb/feseur/raw/branch/master/asset/config_schema.json",
|
||||
file_path: join(await home_path(), "todo"),
|
||||
repo_path: join(await home_path(), ".local", "share", "feseur"),
|
||||
remote_url: "ssh://git.barnulf.net/mb/todo.git",
|
||||
} as ConfigType
|
||||
}
|
||||
|
||||
async function write_default_conf(path: string) {
|
||||
log(`Writing default configuration to '${path}'.`)
|
||||
await Deno.writeTextFile(path, JSON.stringify(await config_default(), null, 4))
|
||||
}
|
||||
|
||||
export async function read_conf() {
|
||||
const path = join(await home_path(), ".config", "feseur.json")
|
||||
if (!await exists(path)) await write_default_conf(path)
|
||||
return config_schema().parse(JSON.parse(await Deno.readTextFile(path)))
|
||||
}
|
32
src/lib/display.ts
Normal file
32
src/lib/display.ts
Normal file
|
@ -0,0 +1,32 @@
|
|||
import { Task, Todo, todo_completed } from "./task.ts"
|
||||
|
||||
import { crayon } from "https://deno.land/x/crayon@3.3.3/mod.ts"
|
||||
|
||||
export function print_todo(todo: Todo) {
|
||||
console.log()
|
||||
console.log(" ".repeat(4) + crayon.white.bold("TODO"))
|
||||
console.log("─".repeat(40))
|
||||
console.log()
|
||||
const done = todo.tasks.filter((t) => todo_completed(t))
|
||||
const not_done = todo.tasks.filter((t) => !todo_completed(t))
|
||||
|
||||
for (const task of done) {
|
||||
print_task(task, 1)
|
||||
console.log()
|
||||
}
|
||||
|
||||
for (const task of not_done) {
|
||||
print_task(task, 1)
|
||||
console.log()
|
||||
}
|
||||
}
|
||||
|
||||
function print_task(task: Task, depth = 0) {
|
||||
const indent = " ".repeat(depth)
|
||||
const line = indent + (task.done ? crayon.bold.blue("×") : crayon.bold.yellow("•")) + " " +
|
||||
crayon.white(task.title)
|
||||
console.log(line)
|
||||
for (const descr of task.descriptions) console.log(indent + " ", descr)
|
||||
for (const sub of task.subtasks.filter((s) => s.done)) print_task(sub, depth + 1)
|
||||
for (const sub of task.subtasks.filter((s) => !s.done)) print_task(sub, depth + 1)
|
||||
}
|
200
src/lib/task.ts
Normal file
200
src/lib/task.ts
Normal file
|
@ -0,0 +1,200 @@
|
|||
import { assertEquals } from "https://deno.land/std@0.224.0/assert/mod.ts"
|
||||
import { exists } from "https://deno.land/std@0.224.0/fs/mod.ts"
|
||||
|
||||
export type Todo = {
|
||||
tasks: Task[]
|
||||
}
|
||||
|
||||
export type Location = {
|
||||
line: number
|
||||
column: number
|
||||
}
|
||||
|
||||
export type Task = {
|
||||
title: string
|
||||
done: boolean
|
||||
tick_loc: Location
|
||||
subtasks: Task[]
|
||||
descriptions: string[]
|
||||
}
|
||||
|
||||
function new_task(title: string, tick_loc: Location) {
|
||||
return {
|
||||
title,
|
||||
done: false,
|
||||
tick_loc,
|
||||
subtasks: [],
|
||||
descriptions: [],
|
||||
} as Task
|
||||
}
|
||||
|
||||
export function parse_todo(content: string): Todo {
|
||||
const root = new_task("root", { line: -1, column: -1 })
|
||||
const stack = [[-1, root]] as [number, Task][]
|
||||
let line = 0
|
||||
for (const line_text of content.split("\n")) {
|
||||
const [indent, text] = unindent(line_text)
|
||||
if (text !== "") {
|
||||
while (stack[0][0] >= indent) stack.splice(0, 1)
|
||||
const parent = stack[0][1]
|
||||
const column = indent + 3
|
||||
if (text.startsWith("- [ ] ")) {
|
||||
const title = text.slice(6)
|
||||
const task = new_task(title, { line, column })
|
||||
parent.subtasks.push(task)
|
||||
stack.splice(0, 0, [indent, task])
|
||||
} else if (text.startsWith("- [")) {
|
||||
const title = text.slice(6)
|
||||
const task = new_task(title, { line, column })
|
||||
task.done = true
|
||||
parent.subtasks.push(task)
|
||||
stack.splice(0, 0, [indent, task])
|
||||
} else if (text.startsWith("- ")) {
|
||||
const description = text.slice(2)
|
||||
parent.descriptions.push(description)
|
||||
} else {
|
||||
const description = text
|
||||
parent.descriptions.push(description)
|
||||
}
|
||||
}
|
||||
line += 1
|
||||
}
|
||||
return { tasks: root.subtasks }
|
||||
}
|
||||
|
||||
export async function read_todo(path: string) {
|
||||
// TODO create in repo and link to location
|
||||
if (!await exists(path)) await write_default_todo(path)
|
||||
const content = await Deno.readTextFile(path)
|
||||
const parsed = parse_todo(content)
|
||||
return parsed
|
||||
}
|
||||
|
||||
async function write_default_todo(path: string) {
|
||||
const content = `
|
||||
TODO
|
||||
====
|
||||
|
||||
- [ ] Create tasks.
|
||||
|
||||
`
|
||||
await Deno.writeTextFile(path, content)
|
||||
}
|
||||
|
||||
function unindent(line: string) {
|
||||
const indents = [" ", "\t"]
|
||||
let remainder = line
|
||||
let indent_count = 0
|
||||
while (true) {
|
||||
const indent = indents.find((i) => remainder.startsWith(i))
|
||||
if (indent === undefined) break
|
||||
remainder = remainder.substring(1)
|
||||
indent_count += 1
|
||||
}
|
||||
return [indent_count, remainder] as const
|
||||
}
|
||||
|
||||
export function todo_completed(task: Task) {
|
||||
if (!task.done) return false
|
||||
for (const sub of task.subtasks) if (!todo_completed(sub)) return false
|
||||
return true
|
||||
}
|
||||
|
||||
export function set_todo_tick(todo: Todo) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
Deno.test("test_parse_todo", () => {
|
||||
assertEquals(
|
||||
parse_todo(
|
||||
`
|
||||
|
||||
- [ ] arbre mort
|
||||
- [o] lorem ipsum
|
||||
- dolor
|
||||
- [o] sed
|
||||
|
||||
- [o] B
|
||||
- [ ] C
|
||||
|
||||
- [ ] D
|
||||
- arbre
|
||||
- [ ] E
|
||||
- [o] F
|
||||
- [o] G
|
||||
- machin
|
||||
|
||||
`,
|
||||
),
|
||||
{
|
||||
tasks: [
|
||||
{
|
||||
title: "arbre mort",
|
||||
done: false,
|
||||
tick_loc: { line: 2, column: 3 },
|
||||
descriptions: [],
|
||||
subtasks: [],
|
||||
},
|
||||
{
|
||||
title: "lorem ipsum",
|
||||
done: true,
|
||||
tick_loc: { line: 3, column: 3 },
|
||||
descriptions: ["dolor"],
|
||||
subtasks: [
|
||||
{
|
||||
title: "sed",
|
||||
done: true,
|
||||
tick_loc: { line: 5, column: 7 },
|
||||
descriptions: [],
|
||||
subtasks: [],
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "B",
|
||||
done: true,
|
||||
tick_loc: { line: 7, column: 3 },
|
||||
descriptions: [],
|
||||
subtasks: [],
|
||||
},
|
||||
{
|
||||
title: "C",
|
||||
done: false,
|
||||
tick_loc: { line: 8, column: 3 },
|
||||
descriptions: [],
|
||||
subtasks: [],
|
||||
},
|
||||
{
|
||||
title: "D",
|
||||
done: false,
|
||||
tick_loc: { line: 10, column: 3 },
|
||||
descriptions: ["arbre"],
|
||||
subtasks: [],
|
||||
},
|
||||
{
|
||||
title: "E",
|
||||
done: false,
|
||||
tick_loc: { line: 12, column: 3 },
|
||||
descriptions: [],
|
||||
subtasks: [
|
||||
{
|
||||
title: "F",
|
||||
done: true,
|
||||
tick_loc: { line: 13, column: 7 },
|
||||
descriptions: [],
|
||||
subtasks: [
|
||||
{
|
||||
title: "G",
|
||||
done: true,
|
||||
tick_loc: { line: 14, column: 11 },
|
||||
descriptions: [],
|
||||
subtasks: [],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
)
|
||||
})
|
3
src/lib/utils.ts
Normal file
3
src/lib/utils.ts
Normal file
|
@ -0,0 +1,3 @@
|
|||
export function log(...values: unknown[]) {
|
||||
console.log("[feseur]", ...values)
|
||||
}
|
6
src/service.ts
Executable file
6
src/service.ts
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env -S deno run
|
||||
|
||||
await main()
|
||||
async function main() {
|
||||
//
|
||||
}
|
12
src/todo.ts
Executable file
12
src/todo.ts
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env -S deno run --allow-all
|
||||
|
||||
import { read_conf } from "./lib/conf.ts"
|
||||
import { print_todo } from "./lib/display.ts"
|
||||
import { read_todo } from "./lib/task.ts"
|
||||
|
||||
await main()
|
||||
async function main() {
|
||||
const config = await read_conf()
|
||||
const todo = await read_todo(config.file_path)
|
||||
print_todo(todo)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue