This is a custom Vue3 template written in TypeScript which is based on the idea of using BEM, CriticalCSS and a living styleguide while building mainly not a SPA but a set of components used inside a CMS like system.
If you're new on this project, please take your time and read carefully through this documentation and, if needed, through the linked documentations.
Please note, that there is also a package.md
file which contains additional information about the used NPM packages and available NPM scripts.
This template, in most parts, follows the default Vue conventions. Where this is not the case, you'll find documentation on the customizations in this readme.
Before you start working on this project, you MUST read the following documentations:
You MUST also be familiar with the following tools:
You SHOULD also know the following tools:
You MUST install the following tools globally, before you can use this template:
Please make sure your IDE is configured to apply ESLint, Stylelint and .editorconfig linting/settings.
Windows and Mac use different symbols for line endings in text files (crlf
and lf
). This can be an issue with GIT and/or the IDE you are using. This project ONLY uses lf
. We recommend to set the following global configuration to resolve this issue before cloning the repository:
git config --global core.autocrlf input
git config --global core.eol lf
NOTE: be aware that this might also effect other projects on your machine.
Note: to execute the following tasks, you may need to register an SSH key for your machine on the repository side. Ask your project manager about where you need to define it. On how you create/copy the SSH key you can read more here.
Make a local git clone of this project/template by using the following command:
$ git clone <repository-url> <[target-folder]>
# If you want a clean copy (no history) use the following command
$ git clone --depth 1 -b master <repository-url>
If you create a new project, based on this template, please make sure to change the path to the origin repository to your project repository, after cloning. If you cloned an existing project, this step is not needed.
$ git remote set-url origin <project-repository-url>
Before executing the following command, please make sure your Node and NPM version meet the requirements in package.json's engines
section. Changing the Node or NPM version later on can cause issues which force you to re-install the project.
# Print node version
$ node -v
# Print npm version
$ npm -v
Finally it's time to install the project dependencies and start developing!
$ npm ci
NOTE: always use npm ci
when setting up the project or updated the code base. Unlike npm install
, npm ci
will install only exactly the packages and versions which are defined in the package-lock.json
file. npm install
on the other hand will always check for updates, meeting the versioning criteria.
TODO: replace this section with project specific information.
Operating systems/Devices | Browser | Priority | Breakpoints |
---|---|---|---|
Windows 10 | Chrome (current) | high | all |
Windows 10 | Edge (current) | high | all |
Windows 10 | Firefox (current) | medium | all |
Windows 10 | IE11 | low | >= md |
Windows 7 | IE11 | low | >= md |
Mac OS X 10.15 | Chrome (current) | high | all |
Mac OS X 10.15 | Safari (current) | high | all |
Mac OS X 10.15 | Firefox (current) | medium | all |
iPhone X (current iOS) | Safari (current) | low | <= md |
iPhone 11 (current iOS) | Safari (current) | low | <= md |
Galaxy S20 (current Android) | Chrome Mobile (current) | low | <= md |
iPad Pro 4th (current iOS) | Safari Mobile (current) | low | sm, md, lg |
iPad 7th (current iOS) | Safari Mobile (current) | low | sm, md, lg |
Please make sure, that the list above is also represented in the browserslist configuration, which is used to determine the required code parsing for CSS and JS to support older browsers.
To check which browsers are currently targeted, run the following command:
npx browserslist
Excluding unsupported browsers can have a big impact on the build size. When removing older webkit versions in a test run we were able to reduce the CSS size by almost 25%!
See the browserslist documentation on how to define the query.
The browserslist relies on up to date caniuse-lite information. To update this dependency you can run:
npx browserslist@latest --update-db
A complete list of available NPM scripts can be found in package.md.
Please make sure to always run Node/NPM tasks trough an NPM script. Installing NPM packages globally in calling them directly is bad practice and can cause inconsistency because of version differences (e.g. install vitejs
as a project dependency and then create an NPM script, which runs this project related vitejs
instead of a global one).
To start developing you only need to execute the dev
script from your console:
$ npm run dev
The app should now run on http://localhost:8080
If you need to integrate this repository into an other project (e.g. a backend repository) we recommend to use git subtree
. This will create a copy of a certain branch and allow updates later on while not changing the other projects git setup. For more information see Atlassian Blog and Git subtree.
WARNING: Please don't commit anything from inside the parent repository into the vue-template repository!
Note: The following scripts need to be executed in the root folder of the parent git repository.
Note: the target-folder
shall not exist and we be crated during pull. --squash
will flatten the change history.
git subtree add --prefix <target-folder> <source> <branch> --squash
git subtree pull --prefix assets/vue https://github.com/valantic/vue-template.git master --squash -m "Merges vue-template @ version x.x.x into project"
|- src Main folder of the application
. |- assets Assets for the application
. |- components Components for the application
. |- directives Custom Vue directives
. |- helpers Helper functions which can be used to handle certain tasks
. |- mixins Vue mixins
. |- plugins Self maintained plugins
. |- setup Configuration and setup of the application
. |- stores Pinia stores
. |- styleguide Assets, components, mock data and routes for the stylguide
. |- translations Translations for the application
|- blueprints File blueprints
|- (dist) Build folder
|- (node_modules) Node modules used by this project
|- static Static files which will be copied to `dist` during build
|- tests Jest tests
. |- unit Unit tests
. . |- specs Test definitions
We heavily use the BEM methodology to define our style classes and component names. It's mandatory that you understand the concept behind it before starting to develop or fixing existing code.
Please note, that this template/project uses namespaced BEM to distinguish components and styles. The namespace is placed before the custom block name (but is also part of the block). This also is a workaround for the custom HTML element restriction which tells us they must have at least one dash in the name.
c-
Marks an ordinary component which can contain other components and/or elements and can be part of an other component.
e-
Marks an element "component" which itself doesn't contain an other component/element (except for scoped ones) but can be part of an other component.
l-
Marks a layout "component" and therefore the most outer wrapper of the application. It can not be contained within an other component but can contain components and/or elements.
s-
This are components, which are only used in the styleguide. Make sure to keep them all inside /app/styleguide/components
.
We added the vue-bem-cn plugin for Vue to improve the handling of BEM classes and especially modifiers in Vue components. Just use :class="b(<customConfiguration>)"
on any template element to add blocks, elements and modifiers. Make sure your component has a name
property, since it is mandatory for this plugin.
Always keep in mind, that it often makes more sense to create multiple components instead of a really big one with multiple modifiers, complex condition driven templates, deep HTML encapsulation. This also makes it easier to use a component in different locations.
Some components, like banners, teasers, navigations, will most likely have many variants. Instead of creating complex, conditional templates and functionality it's better to create new numbered components that are easier to handle.
.banner-1
.banner-2
.banner-3
.navigation-1
.navigation-2
.navigation-3
For the case of the navigation it would also be appropriate to kind of categorize them since it can be necessary to build completely different navigation for different screen-sizes. E.g.:
.navigation
.service-navigation-1
.service-navigation-2
.service-navigation-3
When nesting components, always add a wrapper element around the nested component even if you don't need to apply any styles (yet). The wrapper can be used to define size, position and spacings of the nested component.
When working with BEM, it usually makes no sense to create class less HTML elements. Even if you need no class now, its good practice to create a completely named template. Apply styles with element selectors (e.g. .my-component p) is almost always recognized as bad practice.
Still, on some rare occasions, it can be useful to style bare HTML elements, if the component will wrap around user or CMS generated content to be more flexible and you don't want to enforce an endless list of element classes on the author.
Never style a encapsulated component by it's parent component. This prevents the reuse of the encapsulated component style and creates an unnecessary dependency.
Work with modifiers instead.
Complex components have the need to encapsulate elements. In this case it's good practice to keep to one element depth. Moving elements around and reuse selectors in different places (inside the component) becomes easier.
In other words: selectors like .c-card__header__title
and .c-card__body__text__link
should not be used. Use .c-card__header-title
and .c-card__body-text-link
or .c-card__link
instead.
At first it seems like a big down side, when starting object oriented css coding, that you have to apply a huge amount of classes to almost every element. But in the end the disadvantage is quite small. The classes also will help you to recognize what is going on and which styles should be applied. So yes, it is OK to sprinkle your code with many classes.
Pseudo selector classes can be used (mainly :first-child / :last-child). But be careful when using pseudo selector classes (especially the numbered ones :nth-child()) in combination with responsive layouts. Depending on the viewport size they may not behave as intended.
&
We don't use global state classes like .is-active
or .is-open
, only modifiers. For some specific cases we use global classes like .invisible
you can see them in the styleguide (core/global-styles) or setup/scss/_globals.scss
Vendor prefixes are automatically applied according to the browserslist
in package.json
. You don't need to write them yourself.
To name a dynamic set of SCSS variables we use a number system with a range from 0
to 1000
. Using specific names often turns out to become hard to extend and handle in the future (e.g. lightGray, lighterGray, lightestGray).
Vue.js (commonly referred to as Vue; pronounced /vjuː/, like view) is an open-source JavaScript framework for building user interfaces and single page applications. Wikipedia
For information about best practices read the following guides:
kebab-case
for Single-file component filename casing, Component name casing in JS/JSX and Component name casing in templates .e-
for (native) element component names.We build Vue components as single file components. All production components are placed within /src/components
(styleguide only components in /src/styleguide/components
).
To have the types working for Vue SFC, they need to be defined as
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({});
</script>
To fully benefit from the power of TypeScript, define the types according to the following examples:
For Primitive Types, TypeScript is able to detect the type based on the Vue Prop Type definition:
myProp: {
type: String,
required: true,
},
When using arrays or objects without further typings, TypeScript treats a prop as any[]
or any
. To have proper
typing, you can define your array / object props like this:
myArrayProp: {
type: Array as PropType<string[]>,
default: () => [],
},
When defining a Prop with a validator, it's important to use the arrow function style to prevent random typescript errors:
color: {
type: String,
default: 'yellow',
validator: (value: string) => [
'red',
'yellow',
'blue',
'white',
].includes(value),
},
When Using Code from another File (Composition based) or accessing Component Elements via ref, the code needs to be defined in the Setup Method. The setup Method needs to have a proper Return Type:
import { Ref, defineComponent, ref } from 'vue';
import useFormStates, { FormStates } from '@/compositions/form-states';
type Setup = FormStates & {
input: Ref<HTMLInputElement | null>;
slot: Ref<HTMLSpanElement | null>;
};
export default defineComponent({
setup(props): Setup {
const input = ref();
const slot = ref();
return {
...useFormStates(toRefs(props).state),
input,
slot,
};
},
});
To fully benefit from TypeScript, please define your Data function with a Type like this:
type Data = {
myDataProperty: string;
};
export default defineComponent({
data(): Data {
return {
myDataProperty: 'Hello World',
};
},
});
To prevent random TypeScript errors in your component, make sure, to always type your computed return types and method signatures!
ComponentPublicInstance
as Type if you don't know the type of the componentRef<InstanceType<typeof yourComponent>
to access a property of a ref being a componentTo see Type errors in your editor, make sure to enable TypeScript Language Support in your IDE. For PHP Storm, you can follow this Instructions.
With the update to Vue-3 and TypeScript, some basic things have changed. The most notable are listed here:
export default defineComponent({ ... })
to define your componentshims-xxx
filesemits
property
read morev-model
works, has been changed
read moreis
attribute works, has changed
read moreFor more information about the migration, read the migration page
During switching to Vue-3 and TypeScript, the following decisions had to be made:
ts-loader
and output browser ready js directly or just use the ts-loader
to compile TypeScript to JavaScript and then continue with e.g. babel-loader
. Although the latter uses two loaders and
is potentially slower, we decided to use it, to have browser list support for the end result.eslintrc
extends @vue/typescript
, which is a vue optimized ESLint config
read more
The alternative would be to use plugin:@typescript-eslint/recommended
, which is stricterThe following issues arisen during the switch and are still open:
tsc --noEmit
does not work for TypeScript code in Vue sfc
filesPinia is a state management pattern + library for Vue.js applications. It serves as a centralized store for all the components in an application, with rules ensuring that the state can only be mutated in a predictable fashion.
Pinia is modular by design and let us divide our project into multiple stores.
stores
|- session.ts
|- notification.ts
|- breadcrumb.ts
Note: the module name MUST be written in singular.
We defined several prefixes you should use on Pinia getters and actions, so they can be better distinguished when used in the components.
Add the get
prefix to all getters. This way it's clear in the component, that the used value is coming from Pinia.
Add the set
prefix to all setters. This way it is easier to identify setter actions from Pinia inside components.
Use this prefix for all actions, that trigger an Ajax request. This way it is easier to identify code that triggers a server request from components.
Add this prefix to actions, that handle initial data. See next section.
To inject initial data into the Pinia store, we decided to use the setup method which is available on each Pinia store.
The data is exchanged via a global JS object.
NOTE: make sure that initial data is SANITIZED and DOES NOT contain closing script tags!
See also /index.html
as an example.
<html>
<body>
<script>
window.initialData = {
breadcrumb: {}
};
</script>
...
<script>
window.initialData.breadcrumb.items = { /* ... */ };
</script>
<script src="https://github.com/valantic/vue-template/raw/main/vue-app.js"></script>
</body>
</html>
This approach should only be used sparingly.
If data is only needed by one specific component and most likely will not be modified during runtime, it's ok to use props to hand over data.
<html>
<body>
<c-component title="{{ data.title }}"></c-component>
</body>
</html>
This approach should only be used sparingly.
In cases where HTML is pre-rendered by twig, slots can be used to give the HTML output to a component.
<html>
<body>
<l-content-25-75>
<ul slot="sidebar">
<li>Foo</li>
<li>Baa</li>
</ul>
{% if data.children is empty %}
<h1>No items</h1>
{% else %}
<h1>We found {{ data.amount }} items.</h1>
{% endif %}
</l-content-25-75>
</body>
</html>
All text which is defined in frontend MUST be placed trough translations. There should NOT be any hard coded inline text in the component templates or JavaScript.
We use the vue-i18n plugin to handle translations. This tool also allows us to handle localizations (e.g. number or date formats). The documentation can be found here.
We discovered that the provided directive v-t
accelerates the memory leak issue in IE11 since it creates copies of the translation JSON for each use (as of v8.15.3). For this reason, please use the {{$t()}}
method.
Translations should be marked with a specific translation key. Don't use English text as ab identifier key, since it might interfere with other uses in the application or can simply have different meanings in other languages, that need to be distinguished.
The key should always be namespaced with the components name. E.g. c-component.specificKey
// Bad
this.$t('Some translateable text.');
// Good
this.$t('e-button.defaultLabel');
vue-i18n allows the usage of placeholders. This means you should add dynamic parts with a placeholder to the translation and not concatenate them in the component template or JavaScript.
Be aware that vue-i18n also supports a pluralization syntax. So you should not define multiple translations and then switch them in templates.
If you need to use translations outside of a component or Vue instance, where the utilities are injected, you can use the vue-i18n instance which is exported from setup/i18n.js
.
import { i18n } from '@/setup/i18n';
const translation = i18n.global.t('c-add-to-cart.notLoggedInTitle');
In the /blueprints
folder you'll find templates for several tasks like a new component, test or styleguide entry. Please always base new files on this blueprints and not on an empty or copied existing file.
TBD
We have several possibilities/tools to optimize the size and speed of our application. This section will give you a few hints how to tweak it.
Vue allows us to also create functional components
, which are basically just stateless functions and meant for a single render. Therefore the rendering itself is much faster while no components instance is cluttering the browser cache.
You can read more about this practice here.
In large applications, we may need to divide the app into smaller chunks and only load a component from the server when it's needed. To make that possible, Vue has a defineAsyncComponent
function. Async Components are described here.
You can find more about how to use this with Vue components here.
Vite automatically rewrites code-split dynamic import calls with a preload step. Find more infos here.
Delivering critical CSS to the browser trough the HTML head can drastically decrease the time until first render. As long as the HTML file itself is gziped still below 14kb. Therefore we decided to add a manual possibility to define critical CSS styles, which will be extracted in a separate *.critical.css
file during the build.
You can read more about critical CSS here and the tool we're using here
Check svg files delivered from designers and remove unnecessary attributes like "title" (because title attribute will displayed on hover-state)
Theme styles are delivered seperatly in a *.css file. In this files are the global css-vars defined which can be used in every vue component.
app/setup/scss/themes/theme-**.scss
app/mixins/themes.js
app/store/modules/session/index.js
$color-primary--1,...
, the mapping of the SASS variable will handle the usage of a CSS variable, BUT: you have to use the --rgb SASS variable for a rgba() use caseUsage example:
.c-class {
color: $color-primary--1;
background: linear-gradient(to right, $color-gradient--2-0, $color-gradient--2-1);
background-color: rgba($color-primary--1--rgb, 0.5);
}
The living styleguide is defined in two parts: one is documenting all available Vue components of the project, in the second one you can create example pages to test and share the design with the client or developer.
Please note, that the living styleguide has its on section in /app/styleguide
where you can find components
, routes
and anything else, which is only related to the living styleguide. This makes it more easy to identify and split out unneeded code during the build.
Vite is pre-configured to support CSS @import inlining via postcss-import. Vite aliases are also respected for CSS @import. In addition, all CSS url() references, even if the imported files are in different directories, are always automatically rebased to ensure correctness.
Thanks to this feature, you don't need to define relative paths when importing one JavaScript file into an other. The @
alias stands for the application root (/app
). So for example you can just write import options from '@/setup/options'
in any file to import the options.js
file from the setup
folder without caring about relative path resolving.
The build chain uses a combined solution of TypeScript and Rollup and optional Babel:
Please see the separate package.md.
The configuration file for the Babel compiler. Please note, that the browser version configuration is taken from the browserslist
section in package.json
.
The .editorconfig
file in the project root defines project defaults for your IDE like indent and type of line-breaks. Please make sure that your IDE is configured to read this file. Help and plugins can be found here.
Defines the folders/files which should not be linted by ESLint.
ESLint setup for the current project.
Tells git which folders/files should not be part of the repository.
NPM configuration. By default npm
will install new packages with the version info prefix ^
, which means, that minor version updates can be installed automatically. Past projects have shown, that this behaviour can lead to problems, since minor updates are often not backwards compatible. Therefore we replace the prefix with ~
which by default only allows patch updates and therefore gives us less headache during development.
PostCSS configuration. PostCSS is used for browser prefixing, minification and critical CSS splitting of the style definitions.
Stylelint setup for the current project.
TypeScript configuration for the current project.
If you get a warning about Using stale package data
, try to clear your npm cache before installing the packages:
$ npm cache clean --force
git+
or ssh+
removes other packagesThis seems to be a bug in older npm version. Please make sure to at least use npm 5.7.1.
see https://github.com/npm/npm/issues/17379
If you should get the following error when installing mozjpeg on MacOS
Command failed: autoreconf -fiv
Try to fix it by installing the following brew packages:
$ brew install automake autoconf libtool
If you get the following errors when installing mozjpeg on MacOS
./configure: line 13758: syntax error near unexpected token `libpng,'
./configure: line 13758: `PKG_CHECK_MODULES(libpng, libpng, HAVE_LIBPNG=1,'
Install or update pkg-config
:
$ brew install pkg-config
# OR
$ brew upgrade pkg-config
If you get the following errors when installing mozjpeg on MacOS
configure: error: installation or configuration problem: assembler cannot create object files.
Install or update nasm
:
$ brew install nasm
# OR
$ brew upgrade nasm
Copyright (c) 2017-present, valantic CEC Schweiz AG