Can you provide the step of migration.
I had use jquery fullcalendar 1.6.1 which is not support event slot overlap but i want to prevent event overlaping.
Related
When reading through the docs I found that updatePhoneNumber is not implemented in react-native-firebase.
The following methods are not supported in RNFirebase as they cannot work in the React Native environment or have a different implementation.
So how would I implement this specific method?
#Salakar from the react-native-firebase team here - support for updatePhoneNumber is landing in the upcoming v5.0.0 release of react-native-firebase.
If you need this sooner and are ok with using a release candidate version of the library then there should be another v5 RC version published by the end of next week with this change included (v5.0.0-rc2) - keep an eye out on discord for an announcement or the releases page on GitHub.
After upgrading to Prism.Forms 6.3.0 (from Prism 6.2.0) OnNavigatedFrom is no longer triggered when leaving a page (NavigationService.NavigateAsync from MasterDetailViewModel). Tested on iOS.
I am using version XF version 2.3.4.267. Is there any changes from 6.2.0 to 6.3.0 that could influence such an behaviour? Have I just stumbled upon a bug?
Any help will be appreciated.
Nothing has changed in that area of the code base. When navigating from a MasterDetail, you don't leave the MasterDetail so it won't call OnNavigatedFrom. It simply updated the Detail to the target page. When the detail page changes the INavAware methods will be called on the detail page.
I'm trying to put together a meteor app, which uses dc.js charting library.
I have added chrts:dc package. My meteor list is:
autopublish 1.0.4 (For prototyping only) Publish the entire database to all clients
blaze-html-templates 1.0.1 Compile HTML templates into reactive UI with Meteor Blaze
charts:dc 1.7.4 Multi-Dimensional charts built to work natively with crossfilter rendered with d3.js (dc.js)
ecmascript 0.1.6* Compiler plugin that supports ES2015+ in all .js files
ejson 1.0.7 Extended and Extensible JSON library
es5-shim 4.1.14 Shims and polyfills to improve ECMAScript 5 support
insecure 1.0.4 (For prototyping only) Allow all database writes from the client
jquery 1.11.4 Manipulate the DOM using CSS selectors
meteor-base 1.0.1 Packages that every Meteor app needs
mobile-experience 1.0.1 Packages for a great mobile user experience
mongo 1.1.3 Adaptor for using MongoDB and Minimongo over DDP
session 1.1.1 Session variable
standard-minifiers 1.0.2 Standard minifiers used with Meteor apps by default.
tracker 1.0.9 Dependency tracker to allow reactive callbacks
When I run the app, I get the following errors:
Uncaught ReferenceError: Template is not defined chart.js:8743
Cannot read property 'length' of null pfafman_crossfilter.js:560
Perhaps, anyone in the meteor community is using dc.js, and could give me a clear direction as to what packages should be added to make meteor work with dc.js
What I have done to solve this, was to load the actual original libraries (d3.js and crossfilter.js) instead of the smart package surrogaes. Just simply placed both libraries under app/client/lib, and this started to work together just fine.
I'm on Meteor version 1.2.1. Whenever Meteor detects a change to backend code it restarts the server. You'll see a spinning character in the console, maybe some other messages depending on what packages you have installed and then:
=> Meteor server restarted
It takes around 7 seconds on my 4-year-old Macbook Pro.
I started working on an existing app which has around 20 JavaScript files and around 20 third-party packages installed (see package list below). It takes 30sec to restart the server after any change to server-side code.
Before I go digging in seeing what I can remove to speed things up I wanted to ask if these numbers (7 sec for an empty app and 30sec for a moderate sized app) seem normal, is this roughly what other meteor developers are experiencing or do I have something weird going on?
Does anyone have an idea of the the impact a new computer would have on build times?
Any tips for troubleshooting? Should I experiment with removing packages first or are there other aspects of my setup that are likely to have a bigger impact?
Thanks!
$ meteor list
angular 1.2.2 Everything you need to use AngularJS in your Meteor app
angular:angular-messages 1.4.7 AngularJS (official) release. For full solution: http://angular-meteor.com/
angular:angular-mocks 1.4.7 AngularJS (official) release. For full solution: http://angular-meteor.com/
angularui:angular-ui-router 0.2.15 angular-ui-router (official): Flexible routing with nested views in Angu...
check 1.1.0 Check whether a value matches a pattern
chrismbeckett:toastr 2.1.2_1 Gnome / Growl type non-blocking notifications
coffeescript 1.0.11 Javascript dialect with fewer braces and semicolons
cordova:com.ionic.keyboard 1.0.4
cordova:com.plugin.datepicker https://github.com/VitaliiBlagodir/cordova-plugin-datepicker.git#1e0f4bf47b0c343...
cordova:uk.co.whiteoctober.cordova.appversion https://github.com/whiteoctober/cordova-plugin-app-version.git#22e8147c51a168c0c...
driftyco:ionic 1.1.0_2 Ionic Framework official Meteor package
ejson 1.0.7 Extended and Extensible JSON library
fourseven:scss 3.2.0* Style with attitude. Sass and SCSS support for Meteor.js (with autoprefix...
ground:db 0.3.14 Ground Meteor.Collections offline
http 1.1.1 Make HTTP calls to remote servers
jquery 1.11.4 Manipulate the DOM using CSS selectors
logging 1.0.8 Logging facility.
matb33:collection-hooks 0.8.1 Extends Mongo.Collection with before/after hooks for insert/update/remove...
meteor-base 1.0.1 Packages that every Meteor app needs
meteoric:ionic-sass 0.3.0 Ionic's CSS Framework in SASS and bundled for Meteor.
mobile-experience 1.0.1 Packages for a great mobile user experience
mongo 1.1.3 Adaptor for using MongoDB and Minimongo over DDP
netanelgilad:ng-cordova 0.1.13 AngularJS Cordova wrappers for common Cordova plugins.
random 1.0.5 Random number generator and utilities
reload 1.1.4 Reload the page while preserving application state.
sanjo:jasmine 0.20.2 Velocity integration of the Jasmine testing framework
session 1.1.1 Session variable
spacebars 1.0.7 Handlebars-like template language for Meteor
standard-minifiers 1.0.2 Standard minifiers used with Meteor apps by default.
stevezhu:lodash 3.10.1 A utility library delivering consistency, customization, performance, & ...
tracker 1.0.9 Dependency tracker to allow reactive callbacks
velocity:html-reporter 0.9.1 Reactive Velocity test reports in your app.
When I attempt to run the tests using
JASMINE_BROWSER=PhantomJS meteor --test
I get the following output from PhantomJS
[PhantomJS] TypeError: instanceof called on an object with an invalid prototype property.
at which point nothing happens unless I open the app in my browser and then the tests complete. Seems to be the same issue as this closed one. I should add that my only integration test at this point (to rule out PhantomJS issues) is
describe("jasmineTest", function(){
it("1 equals 1", function(){
expect(1).toEqual(1);
});
});
My versions are
$ meteor list
accounts-password 1.1.1 Password support for accounts
alanning:roles 1.2.13 Role-based authorization
dburles:google-maps 1.1.3 Google Maps Javascript API v3
fortawesome:fontawesome 4.4.0 Font Awesome (official): 500+ scalable vector icons, customizable via CSS, Retina friendly
imsky:holder 2.8.1 Holder uses SVG to render image placeholders entirely in browser.
insecure 1.0.3 Allow all database writes by default
iron:router 1.0.9 Routing specifically designed for Meteor
jquery 1.11.3_2 Manipulate the DOM using CSS selectors
manuelschoebel:wait-on-lib 0.3.0 Use Meteor Iron-Routers waitOn to load external javascript
materialize:materialize 0.97.0 Materialize (official): A modern responsive front-end framework based on Material Design
matteodem:easy-search 1.6.2 Easy-to-use search with Blaze Components (+ Elastic Search support)
meteor-platform 1.2.2 Include a standard set of Meteor packages in your app
meteorhacks:kadira 2.23.0 Performance Monitoring for Meteor
msavin:mongol 1.1.5 The insanely handy development package for Meteor.
nicolaslopezj:tabular-materialize 1.2.1 Datatables for large or small datasets in Meteor
peernohell:c3 1.1.3 C3 (0.4.10) charting library based on D3.
reactive-var 1.0.5 Reactive variable
sacha:spin 2.3.1 Simple spinner package for Meteor
sanjo:jasmine 0.17.0 Velocity integration of the Jasmine testing framework
stevezhu:lodash 3.10.1 A utility library delivering consistency, customization, performance, & extras.
useraccounts:iron-routing 1.12.1 UserAccounts package providing routes configuration capability via iron:router.
useraccounts:materialize 1.12.1 Accounts Templates styled for Materialize Css.
velocity:html-reporter 0.8.2 Reactive Velocity test reports in your app.
UPDATE
The instanceof called on an object with an invalid prototype property error seems to be resolved by using PhantomJS 2.
I have subsequently found a simple workaround for the client-integration tests not running, whereby I just move the client-integration tests to the client-unit directory. This, however, seems exactly that, a workaround. I would still like to know what is causing the problem, and how it can be resolved without my hacky workaround.
It turns out it is a bug, the issue is raised here