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

Lots of Bug Fixes #55

Merged
merged 31 commits into from
Mar 24, 2025
Merged

Lots of Bug Fixes #55

merged 31 commits into from
Mar 24, 2025

Conversation

404Wolf
Copy link
Collaborator

@404Wolf 404Wolf commented Mar 21, 2025

A bunch of bug fixes!

  • Empty directories get uploaded and downloaded correctly. Fixes vt pull does not create empty directories #46
    • If foo/bar/buzz/iAmIgnored is ignored, then we do not create the parent directories
    • But like, if foo/bar/buzz/iAmIgnored and foo/bar/iAmNotIgnored then foo/bar are created
  • Update val town sdk and stop using manual URI encoding!
  • Always add a deno.json and .vtignore.
  • Don't create an empty dir if vt create fails
  • Change ts compile options to force type in imports (deno check now fails)
  • Log API errors without the error code in the error message
  • Don't double copy when pulling (internal logic bug where we copied the same directory recursively twice)
  • Renaming vals inside dirs works now
  • Push and pull logic as per The meaning of vt pull and vt push #45
  • Fix Uncommitted changes lost when switching branches #49, switching branches should not touch local changes. If there aren't conflicts then local changes are carried over (aka new files).
  • Fix Renaming / removing a file hits a 400 error #48, no more uri encoding bugs! I think
  • I think fixes vt converted an http val, index.ts, to a script val #41. I'm like 95% sure. You do lose the type when you rename, but I'm not sure that's a bug. If you rename it automatically determines from filename.

Other changes:

  • Remove git dir, change to lib dir, since it was getting less gitty, and overall this feels simpler.

  • Redo all the tests for the internal lib dir. We need CLI tests! Soon!

  • Misc notes

  • I mentioned this with Sophie, but I think "" for root is unintuitive and even though it's less concise I think "/" makes more sense.

  • No async iterator for file listing?

@404Wolf 404Wolf marked this pull request as ready for review March 21, 2025 07:29
@404Wolf 404Wolf changed the title Git Logic Fixes Lots of Bug Fixes Mar 21, 2025
@maxmcd
Copy link
Member

maxmcd commented Mar 22, 2025

I think the pull command still does not report whether or not it downloaded files:

$ deno run -A ../vt/vt.ts pull
√ Successfully pulled the latest changes

Comment on lines 32 to 56
for (let i = 0; i < 5; i++) {
try {
// Try to get the file at the current version min, ensuring version
// doesn't go below 1
const versionToCheck = Math.max(1, version - i);
const result = await filePathToFile(
projectId,
branchId,
versionToCheck,
filePath,
)
.then((resp) => resp.type);
return result;
} catch (e) {
// If not found and we haven't tried all versions yet, continue to the
// next version
if (e instanceof Deno.errors.NotFound && i < 4) {
continue;
} else if (!(e instanceof Deno.errors.NotFound) || i >= 4) {
// If it's not a NotFound error or we've tried all versions, handle
// it in the outer catch
throw e;
}
}
}
Copy link
Member

Choose a reason for hiding this comment

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

what's up here? is there a situation where we're losing the file type information?

Copy link
Collaborator Author

@404Wolf 404Wolf Mar 22, 2025

Choose a reason for hiding this comment

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

If the file was recently deleted and then recreated then it remembers its previous type when you create it again. I think that it's probably expected behavior for the type to get retained if you use local version control or your IDE's undo feature to add back the file shortly after deleting it. But also, this is because of a suspicion that in some contexts editors quickly delete and recreate the file. But I'm not entirely sure. This seems to in conjunction with other things fix the it resetting the file type issue. Right now in rare case's I've seen the file ID change while editing an HTTP val, this keeps it an HTTP val but the ID must change because of deletion/creation.

Copy link
Member

Choose a reason for hiding this comment

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

ok cool, makes sense

@404Wolf
Copy link
Collaborator Author

404Wolf commented Mar 22, 2025

I think the pull command still does not report whether or not it downloaded files:

$ deno run -A ../vt/vt.ts pull
√ Successfully pulled the latest changes

Yeah this update is only logic fixes, I still need to add dry run and keep track of what's going on, add logging, etc


while (true) {
const resp = await sdk.projects.files.retrieve(projectId, {
path,
Copy link
Collaborator Author

@404Wolf 404Wolf Mar 22, 2025

Choose a reason for hiding this comment

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

Would love your eye on this. I think this is the weirdest (possible, not reproed besides here) API bug I've seen. Sometimes (seemingly arbitrarily) only certain batch sizes return results. The push_test fails for some batch sizes, so I got around it by trying these in order. Maybe you could try making this code more reasonable and seeing if it works for you.

Copy link
Member

Choose a reason for hiding this comment

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

ah yeah this is a tricky endpoint. I'll take a look

Copy link
Member

Choose a reason for hiding this comment

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

ok yeah, found the bug.

when using both recursive and path we're accidentally applying offset+limit to a query of all the projects files before filtering down to a subset of the files. so the offset/limit is kind of random depending on where your path is in the total structure of the project.

It is basically very difficult for us at the moment to efficiently query a subdirectory.

we'll fix this for sure, but for the time being you might want to either crawl the directory yourself (by not using recursive), or pull all the projects files and grabbing the subdir yourself.

cc: @sophiehouser

Copy link
Member

@maxmcd maxmcd left a comment

Choose a reason for hiding this comment

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

love the test additions. again, a pretty shallow review, but probably good to get this out to users

@maxmcd
Copy link
Member

maxmcd commented Mar 23, 2025

@404Wolf

You do lose the type when you rename, but I'm not sure that's a bug

Are you saying that if you rename through the api that the val type changes from (eg) http to script?

@404Wolf
Copy link
Collaborator Author

404Wolf commented Mar 23, 2025

@404Wolf

You do lose the type when you rename, but I'm not sure that's a bug

Are you saying that if you rename through the api that the val type changes from (eg) http to script?

Yeah, if I rename foo_http.tsx to foo_email.tsx it changes the type. But if foo.tsx is a http val, and I rename foo.tsx to bar.tsx it becomes a script, since it reapplies the algorithm as a creation/deletion. I'm going to add rename detection this week, and once we are able to know something got renamed, we could preserve the type. What I think is:

  • Keep this PR as is
  • When I add rename detection, change the type detection algorithm:
  1. Check if the file already exists in the project at the specified path.
  2. If the file does not exist or was renamed determine its type based on its file extension:
    • Files ending in .ts, .tsx, .js, or .jsx are considered "val" files.
    • Check the filename for keywords like "cron", "http", or "email" to
      determine specific types:
      • If multiple keywords are found, default to previousType || "script".
      • Otherwise, return "interval" for "cron", "http" for "http", etc (so in this case renaming can change type)
      • Default to previousType || "script" if no keywords are found.
  3. If the file does not match the val extension criteria (.ts + optional
    identifier), return "file".

This means that:
"foo.tsx --> bar.tsx" preserves type
"foo.tsx --> bar.http.tsx" changes to http
"foo.http.tsx --> bar.tsx" preserves type
"foo.http.tsx --> foo.bar.email.http.tsx" preserves type

@charmaine
Copy link
Contributor

charmaine commented Mar 23, 2025

Been using this branch for local development today and I haven't encountered these: #54, #48 again 🥳

@404Wolf
Copy link
Collaborator Author

404Wolf commented Mar 23, 2025

Been using this branch for local development today and I haven't encountered these: #54, #48 again 🥳

Awesome! Waiting on https://github.com/val-town/val.town/pull/8503 to merge before I merge this so I can fix project listing pagination.

@404Wolf 404Wolf merged commit 9ab0813 into main Mar 24, 2025
1 check passed
@404Wolf 404Wolf deleted the logic-fixes branch March 24, 2025 20:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants