-
Notifications
You must be signed in to change notification settings - Fork 453
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
SQL beautify - all lines are 'beautified' into one long line #63
Comments
Thank you! Not very pretty at all! Could you check out https://github.com/vkiryukhin/pretty-data and try your code on their website. PrettyData is what I use for SQL beautification. Will have to take a closer look later today when I have a chance. |
Currently doing that right now. Will report back. |
Excellent, thank you. |
That's a shame. pretty-data doesn't handle INSERT statements. |
That is a shame. Is there an issue in progress with pretty-data? If you can find another SQL beautifier that works better/well for you, please let me know, and I can potentially switch it out :). |
http://sqlformat.org/ appears to work well with your afflicting sample SQL source code. |
So, an update :-) In your previous comment you striked out 'Command line interface'. There is a command line interface when you install it (sqlformat) I installed sqlparse and then modified the sql-beautify script:
That works 👍 The indent_char option is now obsolete. I'll keep indent_size. The new options to be added: I'll commit my changes and create a pull request if you're in agreement. Let me know your thoughts. Thanks! |
Awesome!!! That is excellent news. Great work. Be sure to use the options being passed in your command (such as the indent_size, which is really the big one). Besides that your code looks good to me. |
Also be sure to use quotes around the input path, for those uses with spaces in paths -- myself included. I keep spaces in my main projects directory so I can test edge cases like that. |
No worries. I'll keep you updated. Cheers. |
Arggh. So I've started atom in development mode (atom -d). Everytime I try to 'beautify' a file the editor just hangs :-( I can't seem to work out why. This is for every type of file.... any idea? |
No idea. Worked fine for me last I tried. Anything in the Developer Tools console? I guess you wouldn't be able to see it if everything is frozen. |
Any luck, @Flukey? Feel free to start the Pull Request early once you have some code in the works so we can discuss and/or if you need a hand 😃. Thank you for contributing! |
@Flukey I can confirm the same issue is happening to me when in Development Mode. |
@Glavin001 Hey. Sorry for the slow reply. It's a bank holiday here in France. Ah, good to know it's not just me. Any idea how I can test my code when not in development mode? I've done the necessary changes to the coffeescript files. |
Just not load in development mode and open up the Developer Tools in normal mode, if necessary. Until we have an interface (See #56 ) we don't really need to use the Development Mode often. |
Now it is also freezing in normal, non-Development-Mode... I'll take another look at the source code. This may be because of my shift into CoffeeScript and the transpiler could have made a mistake (See #60). |
@Glavin001 I can confirm, I am also having the same problem in non-development mode. Perhaps a callback isn't being fired? |
Perhaps, although then I would think it would just not properly beautify (never pass the beautified text to the editor), however instead it is locking up in this strange manner. I'll have to dig into it later: I'm working at the moment. I'll get back to you ASAP. Feel free to submit your PR and I can merge and solve this freezing issue on it's own before I actually publish. |
I have confirmed it makes it's way successfully down to https://github.com/Glavin001/atom-beautify/blob/master/lib/beautify.coffee#L202 so it must be in https://github.com/Glavin001/atom-beautify/blob/master/lib/language-options.coffee#L127 that there is an error. |
Actually, it does end up calling the I think this could be a breaking change by Atom's editor and it's freezing when we try to set the text of the editor to the new text. |
Confirmed that is it the call to I commented out the |
Yup, http://js2coffee.org/ messed it up 😉. See atom-beautify/lib/atom-beautify.js Lines 76 to 85 in 5b5bfc6
unction setCursors(editor, posArray) {
for (var idx = 0; idx < posArray.length; idx++) {
var bufferPosition = posArray[idx];
if (idx === 0) {
editor.setCursorBufferPosition(bufferPosition);
continue;
}
editor.addCursorAtBufferPosition(bufferPosition);
}
} Compared to now at https://github.com/Glavin001/atom-beautify/blob/master/lib/beautify.coffee#L25-L35 setCursors = (editor, posArray) ->
idx = 0
while idx < posArray.length
bufferPosition = posArray[idx]
if idx is 0
editor.setCursorBufferPosition bufferPosition
continue
editor.addCursorAtBufferPosition bufferPosition
idx++
return Notice how if |
Excellent. Great work! Thanks for your prompt fix :) I'll try and make the pull request tomorrow. Well, now we know not to trust js2coffee 100% ;-) (incidentally, i used the same tool to convert my js code for this plugin. I'm gonna go over it again now to make sure there are no problems such as this! heh) |
If you submit the pull request we can have a discussion on the PR issue without merging it until we are done. I can help test it out, too. |
Ok. No problem. BTW, do you have access to a windows machine so you can test it? I only have access to linux and mac. |
I have a Virtual Machine of Windows 8 that I can boot up to test. |
Excellent. I'll keep you updated tomorrow. I'm surprised this extension doesn't have more stars, It's very useful! Most of the plugins that offer the same functionality only do it for one language. |
…indent_size(default: 2), sql_identifiers(default: lower. Options: lower, upper, capitalize). sql_sqlformat_path (path to sqlformat command if not on path). This resolves Glavin001#63
Fixes #63. Replacing node-parse with sqlparse (python dependency).
Hi there,
Nice plugin :-)
I have a little issue with formatting SQL.
Let's take this example:
It gets beautified into this:
I'm not sure about you, but that's not very 'beautiful' ;-)
Perhaps this is standard behaviour? Or I'm missing a config option?
Thanks in advance.
The text was updated successfully, but these errors were encountered: