npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@terrahq/vue-core

v0.0.3

Published

`vue-core` is a collection of core Vue.js components designed to streamline asset management and simplify form creation in your Vue projects. These components provide a flexible, powerful set of tools for handling images, videos, form fields, buttons, anc

Downloads

184

Readme

Vue Core

vue-core is a collection of core Vue.js components designed to streamline asset management and simplify form creation in your Vue projects. These components provide a flexible, powerful set of tools for handling images, videos, form fields, buttons, anchor, external links, etc.

Installation

npm install @terrahq/vue-core

Globally import

Refer to the individual component sections below for detailed usage instructions.

Vanilla Vue Project

To use a component in a standard Vue project, import it as follows:

import { Asset } from '@terrahq/vue-core';

const imageExamplePayload = ref({
  type: 'Image',
  url: 'https://example.com/image.png',
  alt: 'Placeholder Image',
  customClass: 'my-custom-image-class',
  attributes: {
    width: 800,
    height: 600
  }
});

<Asset :payload="imagePayload" />

Astro Project with Vue

For projects using Astro with embedded Vue, create a file named \_app.ts and include the following code:

import type { App } from "vue";
import Asset from "@terrahq/vue-core";
// Imports for the rest of the components you want to use 

export default (app: App) => {
    app.use(Asset);
    // Rest of app.use(component)
};

Then, integrate the file in your astro.config.mjs specifying the path to your file:

export default defineConfig({
    integrations: [
        vue({ appEntrypoint: "/src/pages/_app" }),
    ],
});

Now, you can use the components in any .vue file.

Components

Asset

The Asset component dynamically renders different media types (Image, Video, or Lottie animations) based on the type property provided in the payload.

Props

payload (Object, required): An object defining the type and settings of the asset. Example properties are listed below.

  • Common Properties

    • type (String): The type of asset to render. Options: "Image", "Video", "Lottie".
    • customClass (String, optional): Custom CSS class for styling.
  • Image Specific Properties

    • url (String, required): URL of the image.
    • alt (String, optional): Alternative text for the image.
    • lazy (Boolean, optional): Enables lazy loading.
    • attributes (Object, optional): Additional HTML attributes (e.g., width, height).
    • decodingAsync (Boolean, optional): If true, sets the decoding attribute to "async".
    • fetchPriority (Boolean, optional): If true, sets the fetchpriority attribute to "high".
  • Video Specific Properties

    • video_url (String): URL of the video if embedded from YouTube or Vimeo.
    • video_file (String): Path to the video file if self-hosted.
    • format (String, optional): Video format (e.g., "mp4").
    • poster_url (String, optional): URL of the video poster image.
    • video_type (String): Specifies video type ("url" or "file").
    • isBoostify (Boolean, optional): If true, renders custom Boostify structure.
    • hasPosterImg (Boolean, optional): If true, enables poster image display.
    • boostifyClass (String, optional): CSS class specific to Boostify videos.
  • Lottie Animation Properties

    • url (String, required): Path to the Lottie JSON file.
    • loop (Boolean, optional): If true, animation loops by default.
    • autoplay (Boolean, optional): If true, animation plays automatically.
    • animType (String, optional): Animation type, usually "svg".

:warning: For lotties use dependency @terrahq/helpers.

Image Asset Example

<template>
  <Asset :payload="imagePayload" />
</template>

<script setup>
const imagePayload = {
  type: 'Image',
  url: 'https://example.com/image.png',
  alt: 'Example Image',
  customClass: 'image-class',
  attributes: {
    width: 800,
    height: 600,
  },
};
</script>

Video Asset Example

<template>
  <Asset :payload="videoPayload" />
</template>

<script setup>
const videoPayload = {
  type: 'Video',
  video_type: 'url', // or 'file' for video file
  video_url: 'https://www.youtube.com/watch?v=example', // or path to video file
  customClass: 'video-class',
  isBoostify: false,
};
</script>

Lottie Asset example

<template>
  <Asset :payload="lottiePayload" />
</template>

<script setup>
const lottiePayload = {
  type: 'Lottie',
  url: 'https://example.com/animation.json',
  customClass: 'lottie-class',
  loop: true,
  autoplay: true,
  animType: 'svg',
};
</script>

ButtonLink

The ButtonLink component is a flexible utility for creating links, buttons, or scrollable elements based on a configuration object. It supports multiple behaviors such as navigating to internal or external links, scrolling to sections, and opening modals.

Props

  • payload (Object, required): Configuration object defining the behavior and settings of the component.
  • href (String, optional): URL for the link (used for internal or external links).
  • label (String, optional): Text label for the element (used if no content is passed via slot).
  • option (String, optional): Determines the type of element to render. Supported values:
    • 'internal_link': Renders an <a> tag pointing to an internal URL.
    • 'external_link': Renders an <a> tag pointing to an external URL (opens in a new tab).
    • 'scroll_to_section': Renders a <button> for scrolling to a specific section.
    • 'open_modal': Renders a <button> for triggering a modal.
    • 'button': Renders a generic <button>.
  • section_id (String, optional): ID of the section to scroll to (used with scroll_to_section).
  • modal_id (String, optional): ID of the modal to open (used with open_modal).
  • customClass (String or Array, optional): Custom CSS class or classes to apply.
  • ariaLabel (String, optional): Accessibility label for the element.

Internal Link Example

<template>
  <ButtonLink :payload="internalLinkPayload" />
</template>

<script setup>
// NOTE: For Sanity projects, use getURL() helper function for internal links. See src/utilities/astro/getUrl.js  on Terra front repository for reference.
const internalLinkPayload = {
  href: '/about-us',
  option: 'internal_link',
  label: 'About Us',
  customClass: 'link-class',
};
</script>

External Link Example

<template>
  <ButtonLink :payload="externalLinkPayload" />
</template>

<script setup>
const externalLinkPayload = {
  href: 'https://example.com',
  option: 'external_link',
  label: 'Visit Example',
  customClass: 'external-link-class',
};
</script>

Scroll to Section Example

<template>
  <ButtonLink :payload="scrollPayload" />
</template>

<script setup>
const scrollPayload = {
  option: 'scroll_to_section',
  label: 'Scroll Down',
  section_id: 'section-id',
  customClass: 'scroll-button-class',
};
</script>

Open Modal Example

<template>
  <ButtonLink :payload="modalPayload" />
</template>

<script setup>
const modalPayload = {
  option: 'open_modal',
  label: 'Open Modal',
  modal_id: 'modal-id',
  customClass: 'modal-button-class',
};
</script>

Default Element Example

<template>
  <ButtonLink :payload="defaultPayload" />
</template>

<script setup>
const defaultPayload = {
  label: 'Default Content',
};
</script>