-
Notifications
You must be signed in to change notification settings - Fork 0
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
Conversation
I think the pull command still does not report whether or not it downloaded files:
|
src/vt/lib/paths.ts
Outdated
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; | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok cool, makes sense
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, |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
There was a problem hiding this 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
Are you saying that if you rename through the api that the val type changes from (eg) http to script? |
Yeah, if I rename
This means that: |
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. |
A bunch of bug fixes!
deno.json
and.vtignore
.vt create
failstype
in imports (deno check now fails)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?