GNU/Weeb Mailing List <[email protected]>
 help / color / mirror / Atom feed
* [PATCH v2 00/14] GNU/Weeb Web Migration to SvelteKit
@ 2023-10-07  5:44 Muhammad Rizki
  2023-10-07  5:44 ` [PATCH v2 01/14] refactor: migrate: migrate to sveltekit framework Muhammad Rizki
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Muhammad Rizki @ 2023-10-07  5:44 UTC (permalink / raw)
  To: Ammar Faizi
  Cc: Muhammad Rizki, Alviro Iskandar Setiawan, Irvan Malik Azantha,
	Memet Zx, GNU/Weeb Mailing List

Good afternoon,

This is version 2 series, this series is about to change sveltekit
adapter from node server to static-site. Changing the data fetching
method from `+page.server.ts` to `+page.ts` in order to fetch the API
in client-side.

v2:
  - change sveltekit adapter from node server to static-site.
  - change +page.server.ts to +page.ts.
  - Fetch getOrgMembers() and getRecentMessages() concurrently.

You can find detailed explanations for each commit within their
respective commit messages. There's no need to reiterate these
explanations in this series message. If you have any questions or
require further clarification, please let me know, thanks!

Muhammad Rizki (14):
  refactor: migrate: migrate to sveltekit framework
  feat(layout): add +layout.ts
  feat(app): add app types file
  feat(lib): add API_URL and STORAGE_URL constant variable
  feat(lib): add lib functions file
  feat(lib): add newly created lib constants variables and functions
  feat(lib/functions): add getRepliedMessage() function
  feat(lib/functions): add dateFormat() function
  feat(components): add <OrganizationMembers/> component
  feat(components): add <RecentMessages/> component
  feat(routes): add +page.ts
  feat(routes/page): add +page.svelte
  chore(README): update README.md
  chore: remove unused files

 .eslintignore                                 |  13 +
 .eslintrc.cjs                                 |  30 +
 .gitignore                                    |   6 +
 .prettierignore                               |  13 +
 .prettierrc                                   |   9 +
 README.md                                     |  27 +-
 build.js                                      |  37 -
 index.html                                    | 644 ------------------
 package.json                                  |  41 +-
 postcss.config.js                             |   2 +-
 src/app.css                                   |   3 +
 src/app.d.ts                                  |  48 ++
 src/app.html                                  |  11 +
 src/lib/components/OrganizationMembers.svelte |  41 ++
 src/lib/components/RecentMessages.svelte      | 249 +++++++
 src/lib/constants.ts                          |   2 +
 src/lib/functions.ts                          | 133 ++++
 src/lib/index.ts                              |  26 +
 src/routes/+layout.svelte                     |  58 ++
 src/routes/+layout.ts                         |   1 +
 src/routes/+page.svelte                       | 259 +++++++
 src/routes/+page.ts                           |  15 +
 style.css                                     |  57 --
 svelte.config.js                              |  23 +
 tailwind.config.js                            |   8 +-
 tsconfig.json                                 |  13 +
 vite.config.ts                                |   6 +
 27 files changed, 1011 insertions(+), 764 deletions(-)
 create mode 100644 .eslintignore
 create mode 100644 .eslintrc.cjs
 create mode 100644 .prettierignore
 create mode 100644 .prettierrc
 delete mode 100644 build.js
 delete mode 100644 index.html
 create mode 100644 src/app.css
 create mode 100644 src/app.d.ts
 create mode 100644 src/app.html
 create mode 100644 src/lib/components/OrganizationMembers.svelte
 create mode 100644 src/lib/components/RecentMessages.svelte
 create mode 100644 src/lib/constants.ts
 create mode 100644 src/lib/functions.ts
 create mode 100644 src/lib/index.ts
 create mode 100644 src/routes/+layout.svelte
 create mode 100644 src/routes/+layout.ts
 create mode 100644 src/routes/+page.svelte
 create mode 100644 src/routes/+page.ts
 delete mode 100644 style.css
 create mode 100644 svelte.config.js
 create mode 100644 tsconfig.json
 create mode 100644 vite.config.ts


base-commit: 470d43b7b80e5db207616200e069135c20b3d5ee
--
Muhammad Rizki

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2023-10-09 21:22 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-07  5:44 [PATCH v2 00/14] GNU/Weeb Web Migration to SvelteKit Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 01/14] refactor: migrate: migrate to sveltekit framework Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 02/14] feat(layout): add +layout.ts Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 03/14] feat(app): add app types file Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 04/14] feat(lib): add API_URL and STORAGE_URL constant variable Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 05/14] feat(lib): add lib functions file Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 06/14] feat(lib): add newly created lib constants variables and functions Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 07/14] feat(lib/functions): add getRepliedMessage() function Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 08/14] feat(lib/functions): add dateFormat() function Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 09/14] feat(components): add <OrganizationMembers/> component Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 10/14] feat(components): add <RecentMessages/> component Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 11/14] feat(routes): add +page.ts Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 12/14] feat(routes/page): add +page.svelte Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 13/14] chore(README): update README.md Muhammad Rizki
2023-10-07  5:44 ` [PATCH v2 14/14] chore: remove unused files Muhammad Rizki
2023-10-09 21:22 ` [PATCH v2 00/14] GNU/Weeb Web Migration to SvelteKit Ammar Faizi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox