A responsive and data-driven marketing website made for Rose's Daycare LLC powered by React, Redux, Firebase, and Styled-Components. The site is live at: https://simon.anthonyascencio.me
- React and React-Router allow us to code in components, which forces us towards code reusability and design consistency.
- Redux plus some help from Local Storage let us hydrate and cache the page with updated content.
- Firebase serves all our serverless backend needs. Database is used as a CMS for all content, Hosting gives us SPA hosting, Storage is a CDN for all our assets, and we use Functions to notify us via email when a new question arrives.
- Styled-Components and Native CSS Variables gives us local scoped css, easy theming, conditional styling, and all the power of a CSS-in-JS solution. Also their ThemeProvider makes changing the theme programatically a delight.
- The new Flexbox and Grid standards provide a fully responsive and solid layout system.
- CSS3 Transitions and Animations help us add a touch of interactivity and playfulness. It's a kids business after all.
NWB babel and webpack configurationmoved the project to create-react-app.CSS Modulesmoved the project to styled-components.
Rose's daycare is an small family business but from time to time one of their little rascals goes away. They needed a site to help them find a new client quickly when this happens.
They wanted to share contact information, a bit of story of themselves and staff, plus a way to receive email notifications when people ask questions.
The page should also serve to keep parents in the loop of what their children are up to. At the moment the News page serves as a short outlet for snippets and photos of what is going on during the week. An addition of a more involved blog is planned.
The blog extension is expected for next year, to host more of their day to day activities 🚂🚋🚋🚋🚋🚋 This will require a more robust CMS solution and refactoring the codebase a bit. We will be working on the later until confirmed. Others smaller issues include:
- The store logic needs to be further unit tested. (Why only the store logic? because we are terrible, terrible people.)
- Currently modals are being handled with React component state. We might move this to Redux for the sake of organization.
- react-modal might probably be replaced with a custom made modal following react-modal-dialog ideas
- We will be improving the design, starting with that lazy looking contact page.
- Node >= 6.x.x must be installed.
- Yarn >= 0.20.x must be installed.
- Firebase empty database on the free tier.
To change environment variables either add them to .env, or create a .env.local file in the root folder of the project (recommended).
# Github Repo, used in fork corner
REACT_APP_REPOSITORY (optional)
# Email in mailto links, used in footer
REACT_APP_DEV_EMAIL (optional)
# Firebase database root url, for all content
REACT_APP_DATABASE_URL
To change the content of the project you must create a key "content" in your Firebase database with values following the structure in store/initialState.js
To setup email notifications via Firebase Functions you must have a gmail account with 2-step verification activated, then add an application password. The readme at gmail-send goes into more detail if you get stuck. Finally run this command in the root folder of the project to setup required environment variables.
$ firebase functions:config:set gmail.user="user@gmail.com" gmail.pass="password"This project currently uses create-react-app, look at their incredible documentation if more advanced configuration is needed.
$ yarn installin the app's root directory will install all the necessary dependencies.$ yarn startwill run the app's development server.$ yarn buildcreates an optimized production build.$ yarn testwill run Jest in watch mode.$ yarn deploywill build and deploy to firebase, including functions.$ yarn analysewill show a size visualization of our production bundle.$ yarn formatwill run Prettier on the whole codebase.

