Category: Notic

  • Notic Meet Update

    I haven’t written much about Notic recently, so I thought I best let you know where I’m at with it.

    Progress has been slow recently. The main changes are just switching to Mongo Atlas from a managed Digital Ocean database. The change was relatively painful, given no live data to migrate.

    After several attempts to get the correct connection string and specify the correct database name, all is “almost” working. The only outstanding issue is that what was id is now _id, so I need to look over what causes that and adapt as needed. I expect that to take up to 30 minutes to sort.

  • UserState in Notic Meet

    Over the past month, we have been dedicating some time to getting the Visual Studio project for Notic Meet in a state where we can begin building the front end. It’s making progress, but it’s still being prepared.

    Most recently, we collaborated to implement user state on the client side. We added a User property to a component that can be inherited by each page. This approach ensures that once a user successfully logs in, any page inheriting from the NoticComponent will have access to the User object. This User object can then be utilised to retrieve meeting IDs, user names, and other relevant details. The User property is read-only, with a getter but no setter.

    Other notable progress includes incorporating created and modified dates into the models and successfully setting up the Discussion Point, Meeting, and User models. These models are now fully functional and can be persisted to the Mongo database, although the logic to add the correct IDs has yet to be added. We have the database designs for that and need to take the time to make sure that the documents reference the correct document(s).

    It has been a slow few weeks, as usual, but progress is still being made. The backend is now at a stage where we can introduce new models, controllers, and services and develop the necessary logic. However, a few remaining tasks are required for authentication. The login and registration functionalities are working smoothly, and JSON Web Tokens (JWTs) are being generated upon login. These tokens are also stored in the browser’s local storage. However, at the moment, we need to utilise them for user authentication. To address this, we need to implement some middleware and make a few other adjustments, most of which we currently have a high-level understanding of, but now we need to get deeper into how that part works.

    Please don’t hesitate to let me know if you have any more questions or need assistance with any specific aspect of our project. You can also visit Notic.

  • Using GraphQL in Laravel with Lighthouse PHP

    Although I wrote about how to create a model and controller with one command line, it will be unlikely that I will need to do this for the API I build because I am actually going to be using GraphQL. I first used GraphQL last year when I maintained an API for a company and also built a new API with it for a messaging service to be used within the same company internally. To use GraphQL with Laravel I will be using the lighthouse-php framework.

    (more…)
  • Creating a Controller and Model in Laravel

    I recently started building a new SaaS product for note-taking. It’s very early on in development. This series of posts serves partly to remind me how to do something, and also as a way to help anyone who is searching. This series is not intended to be a comprehensive series of posts to cover everything Laravel, but rather just what I come across and need reminding of at a later date.

    (more…)