macopedia / nuxt-typo3-theme

TYPO3 Headless and PWA UI components and default theme

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nuxt-typo3-theme

Customizable UI theme for nuxt-typo3.

Features

✅ Mobile First

✅ UI for all content elements

✅ Storybook documentation

✅ TypeScript

✅ Unit test for content elements

Requirements

This module uses Nuxt+TypeScript - please setup it beforehand: https://typescript.nuxtjs.org/guide/setup

nuxt-typo3 is required to run this theme https://github.com/TYPO3-Initiatives/nuxt-typo3. Please remember to setup the tsconfig.json. More info here, and setup the nuxt-typo3 configuration including baseUrl and api baseUrl. Nuxt-typo3-theme requires sass and sass-loader <= ^10.1.1. Version 12 is not supported in Vue 2.X

yarn add --dev @nuxt/typescript-build @nuxt/types sass sass-loader@10.1.1
yarn add nuxt-typo3

edit nuxt.config.js

export default {
  buildModules: ['@nuxt/typescript-build']
}

Installation

yarn add nuxt-typo3-theme

edit nuxt.config.js:

  buildModules: [
    '@nuxt/typescript-build',
    'nuxt-typo3-theme',
    'nuxt-typo3'
  ],

⚠️ This module installs default layouts for you, so you may see warning in the console:

WARN  Duplicate layout registration, "default" has been registered as "./layouts.default.bc51ceba.vue"

If this happens, you can delete your layouts/default.vue file or disable layouts provided by the theme in nuxt.config.js:

  typo3theme: {
    layouts: false
  }

Customization

If you want to customize the layout, firstly disable default layout provided by nuxt-typo3-theme

  typo3theme: {
    layouts: false
  }

CSS

You can override CSS by SCSS or CSS variables:

if overriding CSS variables, do it on html:root tag

layouts/default.vue:

<style>
html:root {
    --color-primary: red;
    --color-bg-secondary: blue;
    --color-bg-primary: var(--color-primary);
    --font-family-primary: Helvetica;
}
</style>

If you want to override component specific CSS variables or classes, you have to register the component, as described here. You don't have to change anything else inside the registered component if you don't want to.

<script lang="ts" src="nuxt-typo3-theme/src/components/UiGrid/UiCol/UiCol.vue">
</script>

<style>
.order-1 {
 order: 2;
}
</style>

If you need to override SCSS variables, please use https://www.npmjs.com/package/@nuxtjs/style-resources to import them as global ones.

Override components

Some components are registered as a local components, for instance UiLogo in CwHeader. You can replace UiLogo by registering your own component as a global one.

components/UiLogo.vue

<template>
  <div>My logo</div>
</template>
<script>
export default {
  name: 'UiLogo'
}
</script>

plugins/components.js:

import Vue from 'vue'
import UiLogo from '../components/Logo.vue'

Vue.component('UiLogo', UiLogo)

Use components file as a plugin in nuxt.config.js

nuxt.config.js:

plugins: [
  '~plugins/components'
],

Resources

About

TYPO3 Headless and PWA UI components and default theme


Languages

Language:Vue 39.1%Language:TypeScript 37.0%Language:JavaScript 11.9%Language:SCSS 11.4%Language:HTML 0.6%Language:Shell 0.1%