In this step, we will update the source files of the generated solution to add core functionalities such as mood tracking and journaling.
Note: The goal of this workshop is not to teach web development. This step is completely optional. You can skip this step if you have other functionalities in mind. Or you can download the completed solution from this folder - solution/02-repose and go to the next step immediately.
Make sure you have the solution running with this command npm run dev
. So that as you save your changes, you can see them reflected in the browser. You can always stop the server by pressing the ctrl + c
key combination.
First, take a look at the entry point of your app, the index.html
file. This is the file where you describe the structure for your site. The generated project points to app-index.ts
in the src
folder, where routes are set up and all components and pages are imported. It also includes metadata such as your app title and description. Let's make a few changes:
- Update title field with
<title>Repose</title>
. - Update description metadata field with
<meta name="description" content="This is a mental health journaling app" />
This is the home page of Repose. How does the browser know to render it from looking at index.html
? Because index.html
points to app-index.ts
by adding it in the <body>
tag, and app-index.ts
determines that the default route /
uses app-home.ts
page when the app first updates through the firstUpdated()
lifecycle event in lit.
So, let's add a hero section - the first thing people see when they visit Repose homepage.
- In the
render()
function, after<app-header></app-header>
, add the following:
<div class="hero">
<hero-decor></hero-decor>
<div class="hero__inner">
<div class="hero__top-content">
<h1>Intelligent Daily Mood Journal</h1>
<p>Repose is your personal mood tracking companion that helps you organize and reflect upon your daily thoughts.</p>
<fluent-anchor href="/journal" appearance="lightweight">Mood check-in</fluent-anchor>
</div>
<div class="hero__bottom-content">
<img src="assets/media/humans.svg" alt="Humans">
</div>
</div>
</div>
- In the
static get styles()
function, remove all css styles from thereturn
statement. Add the following styles:
.hero {
height: 90vh;
min-height: 600px;
max-height: 900px;
max-width: 100%;
max-width: 100vw;
padding: 0 48px;
overflow-x: hidden;
position: relative;
}
.hero__inner {
display: flex;
flex-direction: column;
position: relative;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.hero__top-content {
flex: 1 1 0px;
color: white;
margin: 4rem 5rem 0;
text-align: center;
max-height: 25vh;
}
.hero__top-content h1 {
font-weight: normal;
font-size: 48px;
}
.hero__top-content fluent-anchor {
margin-top: 1rem;
}
.hero__top-content fluent-anchor::part(control) {
border-radius: 15px;
color: #107652;
}
.hero__top-content fluent-anchor::part(control):hover {
color: #2E765E;
}
.hero__bottom-content {
flex: 1 1 0px;
height: 50vh;
}
.hero__bottom-content img {
width: 100%;
height: 100%;
}
@media screen and (max-width: 840px) and (min-width: 625px) {
.hero__top-content {
margin: 4rem 2rem 0px;
}
}
@media screen and (max-width: 625px) and (min-width: 480px) {
.hero__top-content {
margin: 2rem 2rem 0px;
}
.hero__bottom-content {
margin-top: 7rem;
}
}
@media screen and (max-width: 480px) {
header {
margin: 0 2rem;
}
.hero {
padding: 0 1rem;
}
.hero__top-content {
margin: 1rem 0;
}
.hero__top-content h1 {
font-size: 36px;
}
.hero__bottom-content {
margin-top: 7rem;
}
}
Whenever you need to add a new reusable component to your app, you should add it to src/script/components
folder. Common reusable components are: header, navigation, and footer. In Repose, we will add a new reusable component called hero-decor
. This is the hero image that will be displayed as background on both the home page and the journal page.
- Create a hero decorative component called
hero-decor.ts
in./src/script/components/
folder that renders as the hero section background. Import this component inapp-index.ts
file withimport './script/components/hero-decor';
on line 8 after the import of header component. And copy the code from this hero-decor file to it. You can use your own image or design and add custom css to brand it your way.
Again, we are copying these files instead of going into details of the code because we want to keep the workshop focused on the core functionalities of PWA. At any time of this step, feel free to download the completed solution from this folder - solution/02-repose and go to the next step immediately
- Add the media folder that contains two creatives to
./public/assets
folder. These are background images for Repose.
- Replace the
global.css
file in./src/styles/
folder with the styles in this file. - Remove unwanted styles from generated files, such as in
./src/script/app-index.ts
, removepadding-left: 16px;
andpadding-right: 16px;
frommain
element.
Just like the hero decorative component, you will update the header component to fit the need of Repose. And it will be reused across all pages.
- Replace
header.ts
with the code in this file. - Update
app-home.ts
to include "Go Back" function as part of theapp-header
component. Simply add attributeenableBack="${true}"
to it. Nowapp-header
element should look like this:<app-header enableBack="${true}"></app-header>
.
You can create new pages for the app and put them in src/script/pages
folder. These pages can use the reusable components you created in the previous step. In Repose, you will not need an about page. So you can update app-about.ts
file name to app-journal.ts
and add journaling functionalities to it.
- Change the name of file
app-about.ts
toapp-journal.ts
. You will also need to update this inapp.index.ts
file in router setup (children
property ofrouter.setRoutes
) as following:
{
path: '/journal',
component: 'app-journal',
action: async () => {
await import('./script/pages/app-journal.js');
},
},
Now when you click "Mood check-in" button, Repose app will navigate to journal page with no content.
-
Add jounaling functionality to the
app-journal.ts
page with code from this file. -
Add this interface file to the project.
-
Add this utility file to the project.
-
Add
localforage
to the project devDependencies with this command:npm i localforage -D
. -
Now restart your dev server with
npm run dev
and you should see the journal page!
If you would like to add functionality to show existing journals, you can take a look at the completed app-home.ts
file for reference. You can also add a footer component to your app.
Let's do a quick recap of what you did in this step:
- You updated
index.html
file to include title and metadata for Repose app. - You did a complete redesign of the homepage including some custom CSS styles and creatives as background images.
- You created a reusable component called
hero-decor
that renders as the hero section background. This is used in bothapp-index.ts
andapp-journal.ts
pages. You can also use it in other pages as you create them. - You updated the existing header component.
- You created a new page called
app-journal.ts
that includes journaling functionality.
Something to consider for the next steps if you are building a production ready app: Instead of using localforage
, which stores journal entries in indexDB of your local browser's storage, you should consider using a more persistent storage solution.
Next, let's make the Repose app 👉🏼 secure (step 3), installable (step 4), network-independent (step 5), and work offline (step 5)!