1.26.0 • Published 5 days ago

@synergy-design-system/vue v1.26.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 days ago

@synergy-design-system/vue

This package provides vue.js wrappers for Synergy Web Components.

This package aims to provide an improved developer experience in Vue applications:

  • Provides two way data binding and v-model
  • Autocompletion and Types
  • Better custom event handling of synergy events

Getting started

1. Package installation

Run the following steps to install the required packages.

# Install the base library and required css files
npm install --save @synergy-design-system/vue @synergy-design-system/tokens

# Optional: if icons shall be used, install the assets package
npm install --save @synergy-design-system/assets

⚠️ Note we do not ship Vue in this package. You will have to install it by yourself first!

2. Add the desired theme to your application

The components will not display correctly without the needed theme. Please include either light or dark theme in your application, for example in a newly installed Vue application:

// src/main.ts
// Add this line to enable the light theme for your application
import "@synergy-design-system/tokens/themes/light.css";

import { createApp } from "vue";
import App from "./App.vue";

createApp(App).mount("#app");

3. Importing and rendering components

You may now use the components by importing them from the @synergy-design-system/vue package and rendering them in your own Vue components.

<script setup lang="ts">
  // Note the name includes Vue here.
  // This is done because it would
  // clash with our native components otherwise
  import { SynVueButton } from "@synergy-design-system/vue";
</script>

<template>
  <SynVueButton type="submit"> Submit me </SynVueButton>
</template>

4. Usage of the components

All information about which components exist as well as the available properties, events and usage of a component, can be found at components in our documentation. The documentation is written for no specific web framework but only vanilla html and javascript.

An example demo repository with the usage of the Vue wrapper components can be found here.

The naming of the components for Vue changes from kebab-case to PascalCase with an appended Vue after the syn. syn-button becomes SynVueButton:

<!-- Webcomponents example -->
<syn-button> My Button </syn-button>
<!-- Vue wrapper example -->
<SynVueButton> My Button </SynVueButton>

5. Usage of attributes

The attribute naming of the components are the same as in the documentation.

<!-- Webcomponents example -->
<syn-input
  label="Nickname"
  help-text="What would you like people to call you?"
  required
></syn-input>
<!-- Vue wrapper example -->
<SynVueInput
  label="Nickname"
  help-text="What would you like people to call you?"
  required
/>

6. Usage of events

Custom events are named in the documentation as following: syn-change, syn-clear, ... They stay the same for the Vue components:

<SynVueButton
  @syn-blur="handleBlur"
  @syn-focus="handleFocus"
  @syn-invalid="handleInvalid"
>
  My Button
</SynVueButton>

If typescript is used, you can get the correct types for components and events from the @synergy-design-system/components package.

An example for how these types can be used in case of event handling, is shown below:

<script setup lang="ts">
  import { SynVueInput } from "@synergy-design-system/vue";
  import type {
    SynChangeEvent,
    SynInput,
  } from "@synergy-design-system/components";

  const synChange = (e: SynChangeEvent) => {
    const input = e.target as SynInput;
    // Now we get access to all properties, methods etc. of the syn-input
    const surname = input.value;
    doSomething(surname);
  };
</script>

<template>
  <SynVueInput label="Surname" @syn-change="synChange" />
</template>

7.1. Usage of methods (DEPRECATED)

⛔️ This feature is deprecated, the methods defined below will not be available in the next major version of @synergy-design-system/vue! If you need to call methods on elements, please obtain a reference to the native element as shown below and call the method on the native element itself!

Components can have methods (like focus, click, stepUp, etc. ), which trigger an action, if they are called.

In Vue they can be used by prefixing each method name with call.

focus -> callFocus, click-> callClick, ...

An example for calling such a method in a Vue component is shown here:

<script setup lang="ts">
  import { SynVueInput, SynVueButton } from "@synergy-design-system/vue";
  import { ref } from "vue";

  const count = ref<InstanceType<typeof SynVueInput> | null>(null);

  const handleClick = () => {
    // Increment the count via calling the method
    count.value?.callStepUp();
  };
</script>

<template>
  <SynVueInput ref="count" label="My count" type="number" value="5" />
  <SynVueButton @click="handleClick"> Increment </SynVueButton>
</template>

7.2. Obtaining a reference to the underlying native element

Sometimes, there is a need to interact directly with the underlying native web-component. For this reason, the library exposes a nativeElement property for all vue components.

<script setup lang="ts">
  import { SynVueInput, SynVueButton } from "@synergy-design-system/vue";
  import { ref } from "vue";

  const count = ref<InstanceType<typeof SynVueInput> | null>(null);

  const handleClick = () => {
    // Increment the count via calling the method
    count.value?.nativeElement?.stepUp();
  };
</script>

<template>
  <SynVueInput ref="count" label="My count" type="number" value="5" />
  <SynVueButton @click="handleClick"> Increment </SynVueButton>
</template>

8. Using two way databinding

We support Vue two way data binding for form components out of the box. You may use it in one of the following ways:

<script setup lang="ts">
  import { ref } from "vue";
  import {
    SynVueButton,
    SynVueCheckbox,
    SynVueTextarea,
    SynVueInput,
  } from "@synergy-design-system/vue";

  const formValues = ref({
    checkboxValue: false,
    inputValue: "",
    textAreaValue: "",
  });

  const submit = (e: Event) => {
    e.preventDefault();
    e.stopPropagation();
    const target = e.target as HTMLFormElement;

    const isValid = target.reportValidity();
    if (isValid) {
      const data = [...new FormData(target)]
        .map(v => {
          return `${v[0]}: ${v[1]}`;
        })
        .join(",\n")
        .trim();
      // Do something with the data
      console.log(data);
    }
  };
</script>

<template>
  <form @submit="submit">
    <SynVueInput
      label="Input Example"
      name="inputValue"
      required
      v-model="formValues.inputValue"
    />
    <SynVueTextarea v-model="formValues.textAreaValue" name="textAreaValue" />
    <SynVueCheckbox
      v-model="formValues.checkboxValue"
      required
      name="checkboxValue"
      >Agree</SynVueCheckbox
    >
  </form>
</template>

Development

To create a new version of this package, proceed in the following way:

  1. Check out the Synergy Design System Repository.
  2. Run pnpm i -r to install all dependencies.
  3. Build the @synergy-design-system/components package (or run pnpm build in the project root to build everything).
  4. Move to to packages/_private/vue-demo and use pnpm start to spin up a local vite project using Vue and typescript to validate the build.

⚠️ The build process will always try to sync this packages package.json.version field with the latest version from @synergy-design-system/components! Therefore, it is best to not alter the version string

1.25.0

6 days ago

1.24.1

6 days ago

1.26.0

5 days ago

1.24.0

7 days ago

1.23.0

13 days ago

1.23.1

13 days ago

1.22.0

22 days ago

1.21.0

25 days ago

1.20.2

25 days ago

1.19.0

27 days ago

1.17.2

28 days ago

1.18.0

27 days ago

1.17.1

28 days ago

1.20.1

27 days ago

1.20.0

27 days ago

1.17.0

1 month ago

1.16.0

1 month ago

1.15.0

1 month ago

1.14.0

2 months ago

1.13.0

2 months ago

1.12.0

2 months ago

1.11.0

2 months ago

1.10.1

2 months ago

1.9.0

3 months ago

1.10.0

3 months ago

1.8.0

3 months ago

1.7.0

3 months ago

1.6.1

3 months ago

1.6.0

4 months ago

1.5.1

4 months ago

1.5.0

4 months ago

1.4.1

4 months ago

1.4.0

4 months ago

1.3.0

4 months ago

1.2.2

4 months ago

1.2.1

4 months ago

1.2.0

4 months ago

1.1.0

4 months ago

1.0.2

5 months ago

1.0.1

6 months ago

1.0.0

6 months ago

1.0.0-main.20

6 months ago

1.0.0-main.18

6 months ago

1.0.0-main.19

6 months ago

1.0.0-main.17

6 months ago

1.0.0-main.16

6 months ago

1.0.0-main.15

6 months ago

0.1.0

6 months ago