-
Notifications
You must be signed in to change notification settings - Fork 32
Consume File-Icons' element-icon service #47
Conversation
/cc @nathansobo It was tempting to decaffeinate Once this is merged, I'll quickly follow up with another PR to convert it to JavaScript. That'll be another package freed of the CoffeeScript-era, |
Published as 0.64.0 and upgraded in atom/atom@c3adde5. 🙇 |
Oops, looks like another issue with v8 snapshots. I had to revert. Stand by. |
Shouldn't this have affected the |
Fixed the snapshot issues in 38f9671 and upgraded Atom to 0.64.1 in atom/atom@25cb5c2.
It looks like we got away with tree-view because its |
Wouldn't it be easier if it shared Atom's |
Yeah it would definitely be better. It might be getting de-duped but I'm not sure. If you want to try dropping the dependency, I'd welcome the PR. |
Alright, on it. |
@nathansobo Just a heads up to let you know I'm collating the existing icon specs in a format that's, well, sane. No idea why the icon-related specs are split between three files, but I'm rewriting them in a proper BDD style and moving them to I've dumped the |
@Alhadis Yeah, since this one is already merged, opening a separate PR would be good. I could do it for you but I'd rather that you get the credit. |
Haha, thank you! :D It's ready atom/tree-view#1195 |
This PR applies to the
tabs
package what's been described inatom/tree-view#1146
for thetree-view
package. The PR's updated wording describes this scenario best, so I'll just copy+paste:I realised too late that your icon-service fulfils a different purpose from what our package needed. We wrote our own instead, which is built on a dubious but (currently) stable foundation of monkey-patches.
Opinions differ on the subject, but mine is that monkey-patching code you didn't write is bad, and should only be used as a last resort (DOM polyfills notwithstanding). Which is precisely what I've been forced to do to get dynamic icon-assignment working.
This needs to be fixed at a formal level, because:
Patches don't persist if File-Icons is deactivated and reactivated.
I've actually chosen not to fix this, because it would step outside the expected lifecycle of the package. E.g., when a user deactivates a package, they expect it to leave no traces in the workspace. I also can't imagine this happening too often, but still...
Any innocent change to your packages could break stuff.
The obvious danger of monkey-patching what wasn't expected or supposed to be changed. We have specs to alert us of breakage, but there's no telling what would be involved in the repair. We both know this is the wrong approach.
Now, I don't know how the Atom team would feel about adding support for third-party package services. Ideally, this would be addressed on the level of Atom's core icon-API. However, the differences of our needs (as well as the specific use-case of our needs) make me hesitant to propose a change to your existing service, especially because @as-cii has stressed he prefers keeping its functionality simple for the time being. In light of that, it would be more appropriate and ergonomic to support a third-party service in the interim, should a mutually-compatible solution be realised in future.
What this service does
The
file-icons.element-icons
service, when consumed, provides a function to add dynamic icons to DOM elements. The function is to be called by the package on any element that's supposed to represent a filesystem resource (either files, or directories):Calling the function returns a Disposable that clears the icon-node instance from memory, which should be done once the view is destroyed.
Note there's no requirement to specify whether a path is a file or directory. Our heavy-duty filesystem API takes care of the heavy lifting... I've even plans to separate it from File-Icons in the form of a standalone Node module, so other package authors can benefit from my hard work too. :)
Related pull-requests
atom/tree-view#1146
atom/tabs#412
atom/find-and-replace#870
atom/fuzzy-finder#281
atom/archive-view#47