Abenezer
Abenezer
thankyou for the fast response. one thing i did not understand is how it was able to work when refreshing the page if the logic is not implemented. I can...
you almost got it! comp.mc returns the parent movieclip (like the scene in aminate CC) usually the animation is on the child instance. so if your moviclip instance name in...
the subscribe method should accept a parameter (which will be the props passed to the component) like react-redux connect function .. then we can subscribe like `export default subscribe( props...
as a workaround we can subscribe in the parent's component render function (Huge performance risk) `render() { this.MessageContainer = subscribe({topic: `test${this.props.me.id}`})(MessageList); return ( ... ... ) }`
i forked the library locally and edit the subscribe.js file .. it's easy .. you resubscribe when props change `let { topic, options } = opts topic = topic ||...
actually i pass the props in the parent component not to the decorator. ... `export default subscribe({ options: {qos:1}, dispatch: customDispatch })(Notifications)` then ``
for other options (non url related) like clientId ... 'options' props should have been defined.. (just pass this prop as a second argument for MQTT.connect() ) any ways since Connector...
first of all thanks for this beautiful project. and any new updates on the rest api? (i an not seeing the api branch )
this happens when the discount is 0 the itemEntery.js. add guard to fix it get discountAmount() { // console.log('this.amount',this.amount) // console.log('this.discountType',this.discountType) // console.log('this.discount',this.discount) return this.discount && this.discountType === DiscountType.Percentage ?...