Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM #1807 Query Tool Does NotRecognize When File Changes Have Been Saved

Поиск
Список
Период
Сортировка
От Akshay Joshi
Тема Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM #1807 Query Tool Does NotRecognize When File Changes Have Been Saved
Дата
Msg-id CANxoLDektZovbGmgEgh7+4dUaCgKHq9txDg8k=272c2xLanqRg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM #1807 Query Tool Does NotRecognize When File Changes Have Been Saved  (Dave Page <dpage@pgadmin.org>)
Ответы Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM #1807 Query Tool Does NotRecognize When File Changes Have Been Saved  (Dave Page <dpage@pgadmin.org>)
Список pgadmin-hackers


On Fri, Dec 16, 2016 at 6:28 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi

On Fri, Dec 16, 2016 at 12:46 PM, Akshay Joshi <akshay.joshi@enterprisedb.com> wrote:
Hi Dave

On Fri, Dec 16, 2016 at 5:22 PM, Dave Page <dpage@pgadmin.org> wrote:
Hi

On Fri, Dec 16, 2016 at 8:47 AM, Akshay Joshi <akshay.joshi@enterprisedb.com> wrote:
Hi All

Please find the attached patch to fix the RM #1807 Query Tool Does Not Recognize When File Changes Have Been Saved.

If I open a file with the patch applied, and make a change (add a space to the end), it's correctly detected. 

If I then undo the change by deleting the space, the file is still marked as dirty. 

   This was an old behaviour. To achieve this we need to compare the original content with changed content on each key press event.

OK, but it's inconsistent with what happens if I'm not working with a file - in that case if I add a character and then remove it (so the query is empty again), then it does mark the editor as clean again.

If you look at pgAdmin III, then any change to either an opened file, or a blank editor will mark it dirty. It never marks it as clean again. That means no content comparison, and consistent behaviour.

   With current implementation if we are not working with file then there is no dirty(*) mark on the tab and if query is empty then no point in saving/creating empty file that's why save button is disabled. Do you want me to add an (*) mark there as well ? 
 
 

If I then clear the window entirely, the save button is disabled, but the tab still shows the file is dirty (the *).

   Again this was an old behaviour, I have added only one if condition to check whether to popped up "Unsaved Changes" message or not. 

Maybe - but the point is to fix the old behaviour :-). The dirty marker and enabled/disabled state of the save option should be in sync shouldn't they? I shouldn't expect to see a file marked as dirty that I cannot save (even if it is empty).

    OK. I'll enable the save button in that case for consistency.  
 

Also - the patch seems to undo the change I made in 4a280b251755091af9bf56bcdee964601df104ae.

    As per commit id 4a280b251755091af9bf56bcdee964601df104ae, you have made following changes: 

-                self.setTitle(self.gridView.current_file.replace(/^\/|\/$/g, ''));
+                self.setTitle(self.gridView.current_file.split('\\').pop().split('/').pop());

And as per me I haven't change any thing there, I have only disabled the save button when file is loaded which was not there previously.

Ahh, no - I see the issue. When the file is marked as dirty, it uses the full path again. Can you fix that to use just the filename please? 

   Sure. 

Thanks.

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



--
Akshay Joshi
Principal Software Engineer 


Phone: +91 20-3058-9517
Mobile: +91 976-788-8246

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: [pgadmin-hackers] [pgAdmin4][Patch]: RM #1801 : Properly handledatabases with datallowconn == false
Следующее
От: Dave Page
Дата:
Сообщение: Re: [pgadmin-hackers] [pgAdmin4]: RM-1910 - Remember last useddirectory in the file manager