Coder Social home page Coder Social logo

Comments (3)

dorayx avatar dorayx commented on July 19, 2024

Perhaps it is possible but I have not tested.

In an angular controller you can create a set callback to update data and then pass it to a vue component. In the vue component you will use the component hooks to call the received set callback from the angular controller with any component data.

from ngvue.

erickwilder avatar erickwilder commented on July 19, 2024

The best approach I came up with to communicate from Vue components back to AngularJS without polluting Vue components and to keep AngularJS changes as minimal as possible was to adopt the event bus pattern.

// Inside AngularJS controller/component
import eventBus from './event-bus'

eventBus.$on('Component:changed', doSomething)

this was extremely helpful to trigger ui-router state transitions from Vue components:

import eventBus from './event-bus'
app.run(($state) => {
   eventBus.$on('ng:stateChange', (stateName, params, config) =>{
        $state.go(stateName, params, config)
  })
})

Everything you have to do is to import the event bus and start emitting events with it:

// Inside Vue component
import eventBus from './event-bus'

eventBus.$emit('ng:stateChange', 'app.stateName', {}, {inherit: false, reload: true}) 

from ngvue.

craig-doyle-uk avatar craig-doyle-uk commented on July 19, 2024

Thanks for the comments @dorayx @erickwilder .
I resolved my particular use case in the following way :

In the Angular controller

$scope.showNotification = function (someArg) {
 doSomething
}

Angular view

<my-component  vprops-on-update="showNotification"></my-component>

Vue Template

<div change={this.onUpdate}> ... some content here </div>

Vue Component

@Component({
 props : {
  onUpdate: Function
 }
....
// controller updated by firing this.$props.onUpdate(someArg)

from ngvue.

Related Issues (20)

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.