Giter VIP home page Giter VIP logo

ti-alloy-related's People

Contributors

davrosull avatar m1ga avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

ti-alloy-related's Issues

API 1.0 changes

Plugin got deprecated :(

can't test it at the moment but I think these parts need to be like this:

...
atom.commands.add 'atom-workspace', "ti-alloy-related:openRelated", => @openRelated()
...
atom.workspace.getActivePane().splitRight()
...
atom.workspace.getActivePane().splitDown()

Split view?

not sure if this would be an option or not:

  • create a splitview (right with top+bottom)
  • will work no matter which file you select (js, tss, xml)

splitview

if that's fine, here is the code:

module.exports =
  activate: ->
    atom.workspaceView.command "ti-alloy-related:openRelated", => @openRelated()

  openRelated: ->
    editor = atom.workspace.getActiveEditor()
    return unless editor?

    previousActivePane = atom.workspace.getActivePane()
    uri = "#{editor.getPath()}"

    if uri.indexOf('.js') > 0
      view = uri.replace('/controllers/', '/views/')
      view = view.replace('.js', '.xml')
      style = uri.replace('/controllers/', '/styles/')
      style = style.replace('.js', '.tss')
    else if uri.indexOf('.xml') > 0
      view = uri.replace('/views/', '/controllers/')
      view = view.replace('.xml', '.js')
      style = uri.replace('/views/', '/styles/')
      style = style.replace('.xml', '.tss')
    else if uri.indexOf('.tss') > 0
      view = uri.replace('/styles/', '/views/')
      view = view.replace('.tss', '.xml')
      style = uri.replace('/styles/', '/controllers/')
      style = style.replace('.tss', '.js')

    atom.workspaceView.getActivePane().splitRight()
    atom.workspace.open(view)
    atom.workspaceView.getActivePane().splitDown()
    atom.workspace.open(style)

Update version

Hi,

you still need to push the updated version in order to remove the deprecation warning.

also update the package.json from

"activationEvents": [
    "ti-alloy-related:openRelated"
  ]

to

 "activationCommands": {
    "atom-workspace": ["ti-alloy-related:openRelated"],
    "atom-text-editor": ["ti-alloy-related:openRelated"]
  }

then it should still run in 1.0!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.