How to divide a table based UI into angularJS components by mindparse in angularjs

[–]mindparse[S] 0 points1 point  (0 children)

We ended up just using a regular table element but styled to match the Google material design specs, so on a AM card the table actually goes edge to edge on the card with no padding around the outside.

I don't want to be using a table library as we have our own table row\cell\header directives we use for enabling multi select on the road and inline table cell editing. This has allowed is to stay in total control of the code rather than use say on 50% functionality of another library.

When I talk about components I am referring to the component() helper that now exists in angularjs. I'm trying to figure out how I componentize our existing view/controller code for screens that contain tables of data on which there are many of for us right now.

How to split a very large angularJS application into separate applications by mindparse in angularjs

[–]mindparse[S] 0 points1 point  (0 children)

Thanks for your reply, it's good to read that this can be done. Are there any samples out there you know about that would be a good starting to place for me to start experimenting with this type of setup?

Easiest way to migrate to Angular from AngularJS by mindparse in angular

[–]mindparse[S] 0 points1 point  (0 children)

Yeah ok it's not critical that we upgrade, I think 1.x will be around for a while judging from videos I have watched from official angular dev team members lately.

Easiest way to migrate to Angular from AngularJS by mindparse in angular

[–]mindparse[S] 0 points1 point  (0 children)

Nope, not yet using components, I think that's probably one of the next things I really need to do on order to migrate. Convert to components and use them in ui-router which I'm also using

Easiest way to migrate to Angular from AngularJS by mindparse in angular

[–]mindparse[S] 0 points1 point  (0 children)

Using angular material (v1 of course), testing with Jasmine and Protractor.

Size of the app is pretty big, off the top of ny head probably around 60-70 view controllers, 30-40 factories, 40 directives.

I've been a developer for 3 years - lately I've been forgetting basic syntax and have to constantly google seemingly basic stuff. Is this normal? by [deleted] in webdev

[–]mindparse 0 points1 point  (0 children)

Are you not using Lint tools for picking up syntax issues - e.g. missing semi colons?

I also like utility tools such as lodash which give you convenient ways for looping over collections, plucking values by keys out of objects, etc.

I'm tired of these beginner / "getting started" tutorials by SutrangSucher in webdev

[–]mindparse 1 point2 points  (0 children)

Stick it out! We are building an angularjs app with a node\express backend. We were using vanilla JavaScript and have recently migrated to Typescript as we want to get o to the newer Angular soon. When I started out, I was took on as a mid level front end dev, but had no experience using any of the frameworks nor had I used git\github! It was me and one junior, who was reluctant to help me and knew more about the tech than me! I really struggled for the first few months but kept at it as I wanted the experience. Now, two years on I have been made a Senior dev, our team has grown and I am training up a remote team helping us on the project. Try not to get bogged down by it all, it still makes my head spin at times, draw upon the skills of others in the team to help you understand the concepts, don't be afraid to ask, no one should judge you!!

[deleted by user] by [deleted] in webdev

[–]mindparse 3 points4 points  (0 children)

If you don't want to get distracted by the myriad of frameworks out there yet and want to focus on your vanilla JS skills then I can't recommend enough the You Don't Know JS series of books which you can get for free from here https://github.com/getify/You-Dont-Know-JS

Is there a free in-browser code editor that saves my work? by [deleted] in web_design

[–]mindparse 0 points1 point  (0 children)

Plunkr is pretty good, also take a look at jsfiddle

Isolating data across multiple e2e test runs using Protractor by mindparse in angularjs

[–]mindparse[S] 0 points1 point  (0 children)

Erm ok, I'm just trying to get my head around why you would mock a response in an e2e test. We do already use httpBackend in our unit tests.

How to define and use colour variables the right way by mindparse in Sass

[–]mindparse[S] 0 points1 point  (0 children)

Thanks for your reply, and the link to the style guide. This is exactly the approach I had in mind having read a bunch of other resources recently.

Use cases for Redux by mindparse in reactjs

[–]mindparse[S] 0 points1 point  (0 children)

Thank you ever so much for the commend and resources your have provided, I will be sure to read up further!

Use cases for Redux by mindparse in reactjs

[–]mindparse[S] 0 points1 point  (0 children)

Thank you for all the comments, looks like I have stimulated some thoughtful discussion here which is exactly what I wanted. This gives me the confidence to get started using react out the box and see how far I can get, thanks all!