This single page application (SPA) is for the food pilot program with Trupanion and Royal Canin. The application is primarily built with the following technologies:
- TypeScript - Language
- Vue 3 - Framework
- Vue Router - Routing
- Pinia - State Management
- Vite - Build Tool
- UnoCSS - CSS Framework
- Vitest - Testing
- @vue/test-utils - Testing Utilities
Work on this project was initially conducted by Chuck Taylor ([email protected]) at Preventive Vet.
The CSS for this application is assembled using UnoCSS, an instant on-demand atomic css engine. UnoCSS will generate css based on the configurations. As a convention these classes are similar compatible with TailwindCSS. Tailwind is a good reference for the available classes and their usage.
UnoCSS goes a step further in that is has powerful configuration options which can be adjusted in uno.config.ts
. The main changes made in the configuration have been the addition of brand colors, brand shadows, fonts, and added support for container queries.
The colors added in the configuration file will permeate to any class that references them in the same style as Tailwind utility classes. For example, in Tailwind you can use bg-blue-500
to set the background color to the blue-500 color. With the configuration, you can use bg-tru-blue-500
to set the background color to the tru-blue-500 color. The same would be true for text or borders, etc. text-tru-blue-500
or border-tru-blue-500
. Most of the brand colors have increments sarting at 50
for the lightest and going to 950
for the darkest. There are a few exceptions like charcoal
. Check the configuration file for the full list of colors.
All stylesheets are imported in main.ts
.
The project makes use of some container queries. Since UnoCSS is being used, these can be accessed using the classes generated. These classes match those in the TailwindCSS Container Queries Plugin. Check their documentation for more information.
While container queries are very well supported, there are some users who may not be using a supported browser. To account for this, the project uses the container query polyfill by Google Chrome Labs. This polyfill is only loaded if the browser does not support container queries. The polyfill is loaded in index.html
.
TypeScript cannot handle type information for .vue
imports by default, so we replace the tsc
CLI with vue-tsc
for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue
types.
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensions
from VSCode's command palette - Find
TypeScript and JavaScript Language Features
, right click and selectDisable (Workspace)
- Run
- Reload the VSCode window by running
Developer: Reload Window
from the command palette.
To install all the dependencies run
npm install
To run the project locally run
npm run dev
To build the project run
npm run build
When deploying the application, the dist
folder is the only folder that needs to be deployed. The dist
folder contains all the files needed to run the application.
A thorough guide for deployment can be found in the Vite documentation.
On that page is a section for Azure Static Web Apps