Questions tagged [meteor-1.4]

Meteor is a modular platform for developing web and mobile applications in JavaScript based on the NodeJS platform. This `meteor-1.4` tag is used to refer to the specific 1.4 release version of Meteor.

Related

9 questions
3
votes
2 answers

Autoform with Meteor React and Simple-Schema

Is there any possibility to make meteor-autoform work with meteor-collection2-core and react-meteor? MWE Preferably I would like to have something like this. ./imports/api/Books.js import { Mongo } from 'meteor/mongo'; import SimpleSchema from…
2
votes
0 answers

AdminLTE: Using with React and FlowRouter breaks Control-Sidebar and height bug

I've tried implementing the AdminLTE Control Panel Bootstrap Template (AdminLTE) with my Meteor + React Project and everything is working perfectly (except one thing - see below) using the code below for my MasterPage: import React from…
2
votes
1 answer

Meteor adding okgrow:accounts-ui-react atmosphere package not working

I am running a Meteor 1.4.2.3 application and everything has been running fine so far. I have been following the Level Up Tutorials and I've come to a point where I want to add user accounts. In order to do that I'm using the…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
1
vote
1 answer

React + Meteor + Bootstrap Modal managing data

I have a Meteor application with React where I have a component called ChatManager. The component imports my chatrooms.js API for publishing my chatrooms collection. It also imports my EditChatRoom component and my ChatRoomRecord…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
1
vote
1 answer

Meteor + React: Can't get data from mongoDB Collection

I have a Meteor Application that I'm developing with React. I still have the autopublish package in my project (autopublish@1.0.7). Here is my relevant code: MainMenu.jsx import React, { Component, PropTypes } from 'react' import { Meteor } from…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
0
votes
1 answer

Meteor and React: Correct way to render according to login state

I have a Meteor + React application with login functionality. The main navigation bar displays different items depending on the login state of the user. My problem is that when a user logs in it doesn't automatically update the navigation bar like…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
0
votes
0 answers

Meteor Up mup deploy fails - Error response from daemon

I have a Meteor application that I'm trying to deploy on a VPS. I am using Meteor Up to do this. By following the instructions I have set up my mup.js file to look like this: module.exports = { servers: { one: { host: '41.185.27.69', …
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
0
votes
1 answer

Meteor + React: Show different Navigation items depending on the login state

I have a Meteor + React Application where I have a Header class like this: import React, { Component } from 'react' import { NavLoggedIn } from './header/NavLoggedIn' import { NavLoggedOut } from './header/NavLoggedOut' export class Header extends…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
0
votes
1 answer

Meteor 1.4.2.3 adding package extracts forever (Windows)

I have a problem with adding an atmosphere package (std:accounts-ui) to my Meteor application. Upon running this command: > meteor add std:accounts-ui It downloads successfully but gets stuck on Extracting std:accounts-ui@1.2.100... Eg: I have…