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

fix: windows gen file #970

Merged
merged 4 commits into from
Aug 6, 2024
Merged

Conversation

jkcs
Copy link
Contributor

@jkcs jkcs commented Jul 30, 2024

/claim #955
close #955

Copy link

vercel bot commented Jul 30, 2024

Someone is attempting to deploy a commit to the TypeCell Team on Vercel.

A member of the Team first needs to authorize it.

Copy link

vercel bot commented Jul 30, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
blocknote ✅ Ready (Inspect) Visit Preview Aug 1, 2024 8:07am

@zaaakher
Copy link
Contributor

zaaakher commented Jul 30, 2024

Good progress 👍

I just tested it on both Windows 10 and MacOS and here are the current results

OS Updates examples.gen.tsx Adds example files
Windows
MacOS

By "adds example files" I mean the package.json, tsconfig.json, index.html, main.tsx, and vite.config.ts in each example folder that should be automatically generated by the script.

@zaaakher
Copy link
Contributor

zaaakher commented Jul 30, 2024

@jkcs I think the only part missing is in the writeTemplate function in gen.ts (line 27)

Update:
And probably also in the generateCodeForExample function in gen.ts (line 60)

@jkcs
Copy link
Contributor Author

jkcs commented Jul 30, 2024

Thank you for the detailed testing you have done, now lets try again

@zaaakher
Copy link
Contributor

I just tested it again and everything seems to be working as expected in both Windows 10 and MacOS 👍

OS Updates examples.gen.tsx Adds example files
Windows
MacOS

@jkcs Thanks for your work 👍

Copy link
Collaborator

@YousefED YousefED left a comment

Choose a reason for hiding this comment

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

great! some questions

@@ -57,7 +58,7 @@ async function writeTemplate(project: Project, templateFile: string) {

async function generateCodeForExample(project: Project) {
const templates = glob.sync(
path.resolve(dir, "./template-react/*.template.tsx")
path.resolve(dir, "./template-react/*.template.tsx").replace(/\\/g, "/")
Copy link
Collaborator

Choose a reason for hiding this comment

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

instead of replace, using path.join is cleaner?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

path.join cannot solve the problem here, in fact, it's because path.sep used in different systems is different

Copy link
Collaborator

Choose a reason for hiding this comment

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

ah, and the is that glob always expects a fwd slash I suppose?

@@ -114,7 +116,7 @@ export type Files = Record<

export function getProjectFiles(project: Project): Files {
const dir = path.resolve("../../", project.pathFromRoot);
const files = glob.globSync(dir + "/**/*", {
const files = glob.globSync(glob.win32.convertPathToPattern(dir + "/**/*"), {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Now we're also calling win32.convertPathToPattern on mac / unix right? Does that make sense? It seems a bit weird to me!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

In fact, it just does the same thing as above, turning \ into /. The reason we don't use glob.convertPathToPattern here is that it doesn't work on Windows, which seems a bit weird.

@@ -140,7 +142,11 @@ export function getProjectFiles(project: Project): Files {
*/
export function getExampleProjects(): Project[] {
const examples: Project[] = glob
.globSync(path.join(dir, "../../../examples/**/*/.bnexample.json"))
.globSync(
glob.win32.convertPathToPattern(
Copy link
Collaborator

Choose a reason for hiding this comment

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

same question as above

pathFromRoot: path.relative(
path.resolve("../../"),
path.join(directory, "..")
pathFromRoot: slash(
Copy link
Collaborator

Choose a reason for hiding this comment

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

I'm not sure slash is needed (would prefer not to add this dependency). maybe we can just prevent passing / to path.resolve? e.g.: path.resolve("..","..")

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Can we define a normalizeToPOSIX function to handle this uniformly? Preventing passing / to path.resolve does not work

Copy link
Collaborator

Choose a reason for hiding this comment

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

Yes, I'd love to see this code a bit clearer / more uniform. When reviewing, it's not entirely clear to me why we have 3 different methods:

  • replace
  • slash
  • convertPathToPattern

Can we either use 1 method (ideally with a separate, well named helper function). Or, if multiple methods are necessary, add a comment in code why we use each function?

@jkcs
Copy link
Contributor Author

jkcs commented Aug 1, 2024

@YousefED Take another look

@@ -201,3 +202,13 @@ export function getExampleProjects(): Project[] {
// });
return examples;
}

export function replacePathSepToSlash(path: string) {
const isExtendedLengthPath = path.startsWith("\\\\?\\");
Copy link
Collaborator

Choose a reason for hiding this comment

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

what's an example of this?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

From here

Forward-slash paths can be used in Windows as long as they're not extended-length paths.

Copy link
Collaborator

@YousefED YousefED left a comment

Choose a reason for hiding this comment

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

Thanks @jkcs for your contribution and collaboration and @zaaakher for testing :)

@YousefED YousefED merged commit c3a1746 into TypeCellOS:main Aug 6, 2024
3 of 4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

dev-scripts path issue on Windows
3 participants