Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FormData read & edit functions, write documentation #14

Merged

Conversation

ghivert
Copy link
Contributor

@ghivert ghivert commented Mar 4, 2025

Hi!

  • FormData was lacking some utilities function, and was lacking tests. That PR implements the remaining pieces in the most Gleamy possible way, while staying 100% compatible with JavaScript FormData, and implement tests for every FormData function.
  • gleam/fetch was lacking documentation. That PR write documentation for every function, with examples.
  • README was nice, but was lacking a bit of context, and could feel hard for newcomers. I took the opportunity of that PR to propose a new, improved version of the README. Of course it's subject to rewrite, modification or rejection if it does not suits you. 🙂 Feel free to be brutally honest to get the best README we can do!

About the README, I took freedom to write two parts "gleam_fetch for JS users" and "gleam_fetch for Erlang users", because gleam_fetch implies you have to think differently about your code (because of promises) if you're coming from Erlang, and it can be a bit different to what you're used to if you're coming from JS.
I tried to be friendly, to provide both an explanation and explaining the intentions behind the packages. I hesitated to write it elsewhere, but I think it's typically a place where it will be read, as HTTP requests are a fairly common requirements: having that information directly in the package would help users and not search for another source of information, like cookbook, etc. If you dislike it, or if you dislike this in this README, it can of course be removed or moved elsewhere.

Copy link
Member

@lpil lpil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is really nice, thank you!

While the README text is great it's not in-keeping with the style of the other core packages' READMEs, and it teaches quite a lot of things that are not specifically this package, like error handling and concurrency. I think this content would be better somewhere else, but I'm not sure exactly where.

export async function getBitsFormData(formData, key) {
const data = [...formData.getAll(key)]
const blobs = data
.filter(value => value instanceof Blob)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we'd want to support getting the other data as a bit array, similar to how one can read text files as bit arrays with simplifile

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's an interesting point. I feel like it's not really how we want to use the package, but I could be wrong. In simplifile, you know what you're doing, and you read a file purposely as BitArray. Here, I'm a bit wondering if pushing a value as string, and getting it as BitArray is really consistent? I think unconsciously I would expect string values being read as string values, and vice-versa.
Do you have any opinion on this? In any case, having the modification would be really straightforward.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Friendly reminder in case you forgot to answer. 💜

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would not to not filter out that data, to remain consistent with the Gleam convention reading bits is a superset of reading text. e.g. simplifile and the existing text+binary functions in this package.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! Code has been modified to return everything from binaries.

@ghivert
Copy link
Contributor Author

ghivert commented Mar 5, 2025

While the README text is great it's not in-keeping with the style of the other core packages' READMEs, and it teaches quite a lot of things that are not specifically this package, like error handling and concurrency. I think this content would be better somewhere else, but I'm not sure exactly where.

Is there any styleguide somewhere for the core packages' README?

If I understand correctly, you do prefer that I remove that content and keep a sleek README? I was thinking to build a documentation website for a while (for learning purpose, and for documenting my packages), maybe this could be the first step?

@lpil
Copy link
Member

lpil commented Mar 10, 2025

There's no styleguide, but they concisely introduce the package and give any information specifically related to the package, but they do not teach Gleam more widely.

An educational website would be great! We're currently looking at making a guides section of the Gleam website, but what the exact scope would be isn't determined yet.

@ghivert ghivert force-pushed the feat/form-data/new-functions-documentation branch from b6d883e to d2cbd5d Compare March 14, 2025 09:19
@ghivert ghivert requested a review from lpil March 14, 2025 09:20
@ghivert
Copy link
Contributor Author

ghivert commented Mar 14, 2025

I just modified the README to get something more in-line with the current core packages, and I renamed has to contains.
Let me know if something else is missing or wrong!

Copy link
Member

@lpil lpil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! I've left some notes inline

@ghivert ghivert requested a review from lpil March 19, 2025 14:19
@ghivert
Copy link
Contributor Author

ghivert commented Mar 19, 2025

Up to date!

Copy link
Member

@lpil lpil left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! And sorry this took so long!

@lpil lpil merged commit 3b9fb3a into gleam-lang:main Mar 20, 2025
1 check passed
@ghivert
Copy link
Contributor Author

ghivert commented Mar 20, 2025

No problem! Thanks for your patience too! 💜

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants