-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
PR: Allow plugins to hook into file actions #22564
base: master
Are you sure you want to change the base?
Conversation
Hello @jitseniesen! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found:
Comment last updated at 2024-12-31 18:06:38 UTC |
@spyder-ide/core-developers I took the same approach as the previous PR by Carlos and I moved the code for |
Thanks for working on this @jitseniesen! I opened PR #22576 as a prerequisite of your work because we need to remove some dead code that referenced the open, new, save actions in the Editor. So, please rebase after that PR is merged. |
8a774ef
to
38bcb74
Compare
Thanks, done! |
As discussed in the last Core Team meeting:
|
Hi @jitseniesen. I see you're actively working on this feature at https://github.com/jitseniesen/spyder/tree/plugin-open-tmp if I'm not mistaken. Exciting! Is there a EDIT: I think I've found it: https://github.com/jitseniesen/spyder-notebook/tree/plugin-open. Never mind. |
ade9431
to
e561527
Compare
ee0ea9a
to
2081126
Compare
It is not clear why one was subtracted from the index, but it seems wrong: `list.insert(index, item)` inserts `item` before the item that is currently in position `index`, which is what we want here. Also add a regression test for the bug fix.
This is consistent with how actions are defined in other plugins. It also prevents a circular import in the next commit.
It is easier to use get_action() to get a reference to the action when needed. This also simplifies the tests.
This is a refactoring to simplify the code, in preperation for the next commit in which we also need to trigger application actions in the editor.
We want to generalize this action (and other actions in the File menu) so that it can also be used to create new files in other panes, like the Notebook pane. This commit is preparation and it only moves the code; upcoming commit will allow other plugins to hook into the "New file" action. This also moves the shortcut. The Application plugin owns the shortcut, but does not expose it to the user. Plugins like the Editor plugin that want to expose the shortcut need to do that themselves. This is because making the "New file" and similar file shortcuts global would be confusing, especially since Ctrl-W for "Close file" is already used in other plugins. Also add a test for the action in the Application plugin.
This is preparation for an upcoming commit which will allow other plugins to hook into the action. Call the action in the Application plugin in the following situations: * Double clicking a file in the File Explorer plugin, * Double clicking a file in the Projects plugin, * Selecting a file from the current project in the switcher, so that the file may be opened in a different plugin than the Editor.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
This allows other plugins to add files to the list of recent files, which can be opened with the "File > Open recent" submenu.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
This is preparation for an upcoming commit which will allow other plugins to hook into the action.
In the main window, keep track of the plugin that has keyboard focus and emit sig_focused_plugin_changed to all plugin when this changes. Use this signal in the Application plugin to also keep track of this information. Add a test for this. This will be used in the following commit to dispatch file operations to the appropriate plugin.
Define an attribute `CAN_HANDLE_FILE_ACTIONS` in plugins, set to False by default. If it is set to True, then functions in the plugin are called when the user activates file actions. Specifically, the following actions are mapped to these functions: * "New file" action calls create_new_file() * "Open last closed" action calls open_last_closed_file() * "Save file" action calls save_file() * "Save all" action calls save_all() * "Save as" action calls save_file_as() * "Save copy as" action calls save_copy_as() * "Revert file" action calls revert_file() * "Close file" action calls close_file() * "Close all" action calls close_all() Also add tests for all these.
The Application plugin is in charge of whether file actions are enabled. Other plugins use enable_file_action() to indicate whether the action is enabled for them. The Application plugin stores this information and uses it to enable or disable file actions when focus switches to another plugin. Add a test for this.
Any plugin can declare file extensions that it can open in the FILE_EXTENSIONS attribute. If the user opens a file with one of these extensions, then the open_file method in the plugin is called. If no plugin is found then the file is opened in the Editor plugin. Extend the open_file test to cover this.
When displaying the Open File dialog, the name of the currently displayed file is used to initialize the dialog. This commit asks the currently focussed plugin first to provide the current filename, and if that fails, the current filename of the Editor is used. Also add a test.
If the user opens a binary data file with the Open File action, for example a .spydata file, then import the data in the Variable Explorer.
This removes the function open_file from mainwindow.py, which was only used in one place.
6864f0e
to
84163bb
Compare
File > Open
Description of Changes
In short, this PR allows plugins to hook into Spyder's new / open / save / close file operations. I have the Notebook plugin in mind for this but the functionality is more widely useful. There are only a few user-visible changes, unless the user installs a plugin that uses the new functionality. Thanks to PR #8798 for a first iteration on this idea.
Changes in more detail (there are videos at the end):
File
menu from theEditor
plugin to theApplication
plugin, because the actions are no longer specific to theEditor
plugin:New file
(also a toolbar button)Open
(also a toolbar button)Open last closed
Open recent
submenuSave
(also a toolbar button)Save all
(also a toolbar button)Save as
Save copy as
Revert
Close
Close all
FILE_EXTENSIONS
in which plugins can list file extensions that they can open. If the user opens a file, then Spyder will call theopen_file
function in the plugin that has the extension of the opened file listed inFILE_EXTENSIONS
. If no such plugin is found, then the file is opened in the editor, so we default to the existing behaviour. This works for files opened with theFile > Open
menu item, the "Open" toolbar button, the File Explorer, the Project Explorer, or from the command line.FILE_EXTENSIONS
. This is another user-visible change: if a binary data file is opened, then it will be imported in the Variable Explorer. The existing behaviour is that they are opened in the editor if opened usingFile > Open
, but imported in the Variable Explorer as given as a command-line argument.CAN_HANDLE_FILE_ACTIONS
which defaults toFalse
.True
, then the file actions listed in the first bullet point (except forOpen
) will call the associated functions in that plugin; otherwise, functions in theEditor
plugin will be called. For example, if the user clicks onNew file
and the plugin with focus hasCAN_HANDLE_FILE_ACTIONS
set toTrue
, then thecreate_new_file
function in the plugin will be called.sig_focused_plugin_changed
to all plugins if the plugin with focus has changed. TheApplication
plugin uses this signal to keep track of the plugin that has focus, so that file actions can be routed to the appropriate plugin.enable_file_action
function in theApplication
plugin. File actions in the Spyder IDE are enabled or disabled depending on whether the plugin that would handle the file action has enabled the action.Below are some videos to show what this all looks like. Firstly, opening
.npy
files now imports the data in the Variable Explorer. No variables are defined at the beginning, but after the file is opened, the variableeivecs
appears.open-data.mp4
The other videos require the
plugin-open
branch inspyder-notebook
, which still needs some polishing.Creating a new file in the Editor works as before. However, if the notebook plugin has focus, then creating a new file opens a new notebook in the notebook plugin.
new-file.mp4
At the beginning, the
File > Open recent
submenu has no files in it. We then use the File Explorer to open a notebook,File > Close
to close it,File > Open last closed
to open it again,File > Close
to close it again, and theFile > Open recent
submenu to open it a third time.open-notebook.mp4
The
File > Save as
andFile > Save copy as
actions in the Notebook pane:save-notebook-as.mp4
Finally, a video to illustrate enabling and disabling file actions. The Editor plugin uses
enable_file_action
to enable theSave
andSave all
actions when there is something to save and disable them if there is nothing to save. The Notebook plugin usesenable_file_action
at startup to disable theRevert
action because it is not implemented. The video shows what this looks like for the user. The Editor plugin has nothing to save in the beginning, soSave
andSave all
are disabled andRevert
is enabled (look at theFile
menu and the "Save" and "Save all" buttons in the toolbar). Then we give focus to the Notebook plugin has focus; nowSave
andSave all
are enabled andRevert
is disabled. Then we give focus to the File Explorer plugin. This plugin hasCAN_HANDLE_FILE_ACTIONS
set toFalse
so file actions are routed to the Editor and thusSave
andSave all
are disabled andRevert
is enabled. After typing something in the editor, theSave
andSave all
actions are also enabled in the editor.enable-actions.mp4
Issue(s) Resolved
Fixes #22354
Fixes #7794
Affirmation
By submitting this Pull Request or typing my (user)name below,
I affirm the Developer Certificate of Origin
with respect to all commits and content included in this PR,
and understand I am releasing the same under Spyder's MIT (Expat) license.
I certify the above statement is true and correct:
Jitse Niesen