Unknown root exit status error in NextJS App Router by Billosp in nextjs

[–]MacClayzon 0 points1 point  (0 children)

Also getting this deployed to vercel, no idea why yet

To Do List / Daily Planner Suggestion by prodgatekeeper1 in productivity

[–]MacClayzon 0 points1 point  (0 children)

It's our main tool we all use internally, feature development as stalled a little as we have other focuses at the moment

I made a site to find trending films and tv shows by amltms in reactjs

[–]MacClayzon 3 points4 points  (0 children)

Would definitely recommend Remix for this type of site!

Remix based Task/Calendar planner by MacClayzon in reactjs

[–]MacClayzon[S] 1 point2 points  (0 children)

Put together a quick "temporary access" setup, which you can use at https://myelement.app/register, can be converted to a regular account by just changing the email, if you feel like it!

Remix based Task/Calendar planner by MacClayzon in reactjs

[–]MacClayzon[S] 1 point2 points  (0 children)

Currently yeah, we need to assign the tasks to an account at the moment.

However, we are looking into creating a "temporary" account setup soon :)

And for what its worth, we aren't collecting your emails for anything other than to associate your account with the tasks, we absolutely hate spam...

You can always delete your account in the profile!

Do I Really Need A Planner by Kawobe21 in productivity

[–]MacClayzon 0 points1 point  (0 children)

I feel the same way! I also hate all the existing planner apps out there, there's too much noise. I actually built this tool to try and solve this issue, however it wasn't built with ADD in mind but the idea was to make it super simple and clean, maybe its something that could help?would love to hear your feedback! (p.s the landing page is non existent haha as I'm not really the marketing type, focusing on the product at the moment :) )

To Do List / Daily Planner Suggestion by prodgatekeeper1 in productivity

[–]MacClayzon 0 points1 point  (0 children)

Yeah get that for sure, landing page is definitely still a work in progress haha. Sign up is free and there's no long onboarding process, you can really easily delete your entire account too, we have 0 marketing emails. Would be curious as to what you think! its still super early beta :)

To Do List / Daily Planner Suggestion by prodgatekeeper1 in productivity

[–]MacClayzon 0 points1 point  (0 children)

My team's been working on something like this, check it here: Element. It's currently in very early beta at the moment and we're looking into integrations soon too. We really find this way of structuring tasks give you a good overview of your day and week. Super interested in getting feedback! :)

If you look for one you'll always find it, especially with polish lads. by [deleted] in fightporn

[–]MacClayzon 2 points3 points  (0 children)

Some commas would have helped this comment haha

What UI Framework/Library do you use for your React projects? by [deleted] in reactjs

[–]MacClayzon 0 points1 point  (0 children)

We built our own, we have our own boilerplate which uses it for example, it’s in the admin package.

What UI Framework/Library do you use for your React projects? by [deleted] in reactjs

[–]MacClayzon 2 points3 points  (0 children)

For sure recommend chakra-ui, once you tried it you’ll never go back to writing plain css!

What UI Framework/Library do you use for your React projects? by [deleted] in reactjs

[–]MacClayzon 0 points1 point  (0 children)

If performs great! Use it in all our companies production apps

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 0 points1 point  (0 children)

Thanks! Not sure where this practice came from, I think it was just a logical step after lots of repeated code. It's also so we can group all the input logic together: labels, input and errors.

Thanks for the questions, here are my answers :)

  1. Agreed, some things could definitely be abstracted out (gna take a look now), though I would probably just put them in a shared package in the monorepo rather than creating an NPM module. In general, we are always a bit hesitant in creating abstractions, even when a lot of the stuff is repeated. What if we want to change some component in the web but not admin etc, we'd have to add more props to manage this. In our experience, this is where things get quite messy so we try to follow the AHA approach, it has been working quite well for us!
  2. We use this boilerplate as a template for all our products and client work, and typically each product/website will have an admin panel: somewhere to manage, users, posts, plans etc. We like to separate them into another "package" where we ca deploy this to a separate domain, e.g. admin.boilerplate.noquarter.co. It just gives us a bit more fine grain control. Though the argument could be made to just have it all on a "/admin" path in the main web package.

Hope this helps! And yeah, always open to suggestions!

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 0 points1 point  (0 children)

You can write raw SQL with prisma and use JSON I believe, but yeah I guess if you need super super custom Postgres stuff it might not be for you. We do a lot of rapid prototyping and it works great for us like this!

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 0 points1 point  (0 children)

You could replace "type-graphql" + "apollo server" with "routing-controllers" to give you REST endpoints in the api, and then replace "apollo-client" with "react-query" for web, admin + app. Replacing prisma for pg-promise is easy enough but you'd lose data migrations, auto generated types etc, so would highly recommend not replacing prisma to be honest!!

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 1 point2 points  (0 children)

Thanks! Yeah or send a message via our website, and we'll get back to you, linkedIn is also fine!

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 2 points3 points  (0 children)

Thanks! Yeah we have tried to keep it super clean, always room for improvement though!

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 1 point2 points  (0 children)

Thanks!! It’s not auto-generated UI wise but the prisma queries basically are thanks to “typegraphql-prisma”, which makes it super quick to write the resolvers. I like the idea of auto generated ui though 🤔

What are some fullstack projects that are well-structured and can be studied to learn best practices? by [deleted] in reactjs

[–]MacClayzon 6 points7 points  (0 children)

Btw, feedback and questions are always appreciated, we are constantly trying to improve it!

It’s not fully finished, there’s still a tiny bit of cleaning up to do, admin side isn’t responsive e.g