Run Time 2:31
FreeLet's begin by reviewing the application that we plan to build. We'll then finish up by installing Laravel and performing the first commit.
Run Time 12:48
FreeMy hope is to demonstrate, as much as possible, my actual workflow when writing my own applications. With that in mind, let's begin with our first feature test.
Run Time 5:32
We haven't yet written any request validation logic. As before, let's use a TDD approach for specifying each validation requirement.
Run Time 7:33
We must next ensure that a user can visit any project page. Though we should start with a feature test, this episode will provide a nice opportunity to pause and drop down a level to a model test.
Run Time 11:17
It's true that we can now create and persist projects to the database, but they aren't currently associated with any user. This isn't practical. To fix this, we'll write a test to confirm that the authenticated user is always assigned as the owner of any new project that is created during their session.
Run Time 11:39
In this episode, we'll continue tweaking which projects are displayed to the user. We'll also begin implementing the appropriate page authorization.
Run Time 6:38
We already have the necessary logic to persist new projects, however, we haven't yet created the "create project" page, itself. Let's take care of that quickly in this episode.
Run Time 8:19
Before I begin writing CSS, we first need to set the stage. We'll begin by pulling in all necessary npm dependencies and configuring Tailwind compilation with Laravel Mix.
Run Time 16:39
FreeIn this episode, we'll leverage Tailwind to begin constructing the Birdboard UI.
Run Time 16:56
Let's continue working on the CSS for the projects dashboard. This will give us an opportunity to discuss grid spacing, and how we can use a combination of padding and negative margins to perfectly align our columns.
Run Time 12:20
Before we jump back to PHP, let's write one more lesson's worth of CSS. Specifically, we'll get the single project page up and running.
Run Time 15:24
We've added a section to our project page for tasks, but that functionality doesn't yet exist. It sounds like we have our next step.
View the source code for this episode on GitHub.
Run Time 9:11
The next step is to update your project page UI to allow for displaying and adding new tasks.
Run Time 18:31
In this episode, we'll wrap every task within a form so that we may easily update its description or completion status with the click of a button.
View the source code for this episode on GitHub.
Run Time 5:05
I'd like to sort all projects in our dashboard according to those that have been most recently updated. This means, when you add or modify a task within a project, we need to touch the parent project's updated_at
timestamp in the process. Let's learn how in this episode.
View the source code for this episode on GitHub.
Run Time 18:04
Next up, we need to make the "General Notes" section of the project page dynamic. As always, we'll use tests to drive this new update. When finished, we'll also switch over to using dedicated authorization policy classes.
View the source code for this episode on GitHub.
Run Time 16:35
FreeLet's take a moment to improve the structure of our tests. Have you noticed that, time and time again, we follow a similar pattern when arranging the world for a test? Instead, let's refactor this code into a fluent factory class to save time. To do this, we'll use a technique that I first learned from John Bonaccorsi in his Tidy up Your Tests with Class-Based Model Factories article. I encourage you to give it a read if you'd like to learn more.
View the source code for this episode on GitHub.
Run Time 14:06
In this lesson, we'll add a form to update an existing project. But in the process, we'll review how to reduce duplication in the create
and edit
views by extracting a reusable partial.
View the source code for this episode on GitHub.
Run Time 12:40
We'll begin this episode by addressing a small regression that was introduced in the previous episode: we can no longer update the general notes without triggering a validation error. While of course we'll review the easy solution to this issue, we'll additionally discuss a recent user comment related to the pros and cons of extracting a form request class. Would it make the code cleaner or better? You can look forward to lots of fun tips in this episode.
View the source code for this episode on GitHub.
Run Time 13:39
Let's move on to our next feature: every project generates an activity feed.
View the source code for this episode on GitHub.
Run Time 13:53
Let's continue working on the project activity feature. We should additionally record activity when a task is created or completed. Let's take care of that in this episode.
View the source code for this episode on GitHub.
Run Time 5:57
Before moving on to the larger activity feed refactor, let's first make a few small tweaks to clean things up.
View the completed source code for this episode on GitHub.
Run Time 12:08
We have just a few loose ends to wrap up, before finally viewing the project's activity feed in the browser.
View the source code for this episode on GitHub.
Run Time 10:35
It's time to render a project's activity feed on the page. This will give us an opportunity to review how to use polymorphism to load the appropriate view, based on the description type of the activity.
View the source code for this episode on GitHub.
Run Time 12:00
Now that we're successfully displaying a project's activity feed on the page, I'd like to provide more information for each update. For example, rather than the message, "You completed a task", it should probably include the name of the task: 'You completed "Finish Lesson"'. This presents a problem because, when we record activity, we don't yet include any reference to the subject. Let's fix that in this episode.
View the source code for this episode on GitHub.
Run Time 15:49
Our next job is to track which attributes have changed when a model is updated. This will allow us to record, for example, that the user changed the title of the project from "Test Project" to "Real Project".
View the source code for this episode on GitHub.
Run Time 21:47
In this episode, we'll refactor all "activity" functionality to a reusable trait. As you'll see, we'll quickly fall into a rapid refactor flow: make a small tweak, run the tests, see green, make another small tweak, rinse and repeat.
Run Time 13:51
Let's work on tweaking the output of the activity card in this lesson. I'd like it to show which fields were updated, and who performed the update.
View the source code for this episode on GitHub.
Run Time 7:57
We have an easy one this episode: users who have the proper permissions may delete or archive projects. Let's knock that out now, before moving on to something more exciting in the next episode.
View the source code for this episode on GitHub.
Run Time 12:43
As we move on to inviting users to projects, this will give us a nice opportunity to discuss layered tests. In this episode, we'll write the same test name at two different levels: from the outside-in (feature), and at a lower level (unit).
View the source code for this episode on GitHub.
Run Time 14:08
In this episode, as we work to allow users to see all projects they've been invited to from their dashboard, we'll also discuss false positives. A passing test doesn't always guarantee that your code works as expected.
View the source code for this episode on GitHub.
Run Time 7:26
Our project page doesn't yet display all members who have access to it. Let's use Gravatar to generate these thumbnails. In doing so, this will give us the opportunity to discuss how to create and load a helper functions file.
View the source code for this episode on GitHub.
Run Time 15:11
In this episode, we'll write a few new feature tests to confirm the conditions under which a project owner may invite a user to a project.
View the source code for this episode on GitHub.
Run Time 13:57
Once you add multiple forms to a page, you'll quickly find that you can no longer depend on the default validation errors "bag." In this episode, we'll learn how to associate your form request class with a named error bag.
View the source code for this episode on GitHub.
Run Time 6:03
It looks like we have a small hiccup. At the moment, any invited user has permission to delete the project entirely. This action should be restricted to the owner of the project exclusively.
View the source code for this episode on GitHub.
Run Time 14:06
FreeWe have a relatively nice light theme at the moment. But what if we wanted to offer users the ability to toggle to a darker UI theme? How exactly might we accomplish that, considering that Tailwind classes like text-grey
and text-blue
are scattered throughout our HTML? The answer is to leverage CSS variables. I'll show you how in this episode.
View the source code for this episode on GitHub.
Run Time 2:15
FreeBehind the scenes, I've finished up our two themes. Before moving on to building the theme switcher, very quickly, let's review the results as well as the organizational structure I opted for.
View the source code for this episode on GitHub.
Run Time 15:07
Now that we have multiple UI themes available to us, the next step is to construct a theme switcher that we'll position in the navigation bar of our site. Because there's behavior associated with each theme button, we'll use Vue to build this little component.
View the source code for this episode on GitHub.
Run Time 12:20
Because we're approaching the end of this series, let's dedicate a few episodes to reviewing some JavaScript-specific enhancements. Specifically, we'll transition the "New Project" form into a dynamic modal Vue component.
To begin, we'll pull in the vue-js-modal component and construct the design of our form with Tailwind.
Run Time 17:51
Now that the basic styling for the "New Project" modal is complete, we can move on to its behavior. Luckily, because we have Vue backing us up each step of the way, this should be a cinch to complete.
Run Time 4:45
There's one final step to complete: our controller doesn't yet allow tasks to be created alongside the project. Let's fix that now.
View the source code for this episode on GitHub.
Run Time 20:44
If we take another look at our NewProjectModal
file, you'll notice that most of the JavaScript deals with the submission and handling of the form. It sure would be a shame to repeat this same generic code for every form in our application. With that in mind, let's extract a BirdboardForm
class to help clean things up a bit.
View the source code for this episode on GitHub.
Run Time 23:27
Let's wrap things up by creating a reusable dropdown Vue component from scratch.
View the source code for this episode on GitHub.
Run Time 1:37
A series like this could go on for hundreds of hours, but, at some point, we have to wrap things up. That time is now. Let's do one final review of what we accomplished before saying our goodbyes!
View the source code for this series on GitHub.