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

vue-cookie-info

v1.0.0

Published

A basic information container about the usage of cookies on the website

Downloads

4

Readme

#A Basic Cookie Usage Info Component

Shows a simple information box on the bottom of the page, with a given text (usually stating that the current website uses cookies) and displays a button (usually an "OK" button).

As long as the user doesn't click the button, the info box will be displayed every time the page loads / refreshes.

When the user clicks the button, a cookie is set and the info box is not displayed anymore.

Use this component for basic GDPR compliance.

At the moment, this component has hardcoded styling. In future versions, the styling might be customizable.

This component is served as a single file vue component and is not built. You need a compiler / builder to consume SFCs.

##Install

$ npm install vue-cookie-info

or

$ yarn add vue-cookie-info

##Usage

In a Vue file:

import VueCookieInfo from 'vue-cookie-info';

export default {
	components: {
        'cookie-info': VueCookieInfo,
	},

    //...
}

In a js file (like Laravel's app.js):

window.Vue = require('vue');

Vue.component('cookie-info', require('./components/CookieInfo').default);

const app = new Vue({
    el: '#app',
});

###Parameters

  • text - (mandatory) The text to be shown in the info box
  • button - (optional - default: "OK") The label of the button
  • cookie-name - (optional - default: "cookie-policy-accepted") the name of the cookie to be set when clicking the button in the info box

###Styling

By default the component comes with a specific styling, but if you provide any class to the component, the default styling is removed, so that you can define your own styling.

e.g. This will have the default styling:

<cookie-info></cookie-info>

e.g. Adding a class will remove the default styling and use only the "my-custom-class" styling:

<cookie-info class="cookie-info-custom-class"></cookie-info>

You can use this css structure to style the component (in CSS):

.cookie-info-custom-class{   //from the example above
    //... custom styling of the container
}

.cookie-info-custom-class .vci-text{
    //... custom styling of the text (it's a paragraph)
}

.cookie-info-custom-class .vci-button{
    //... custom styling of the button (it's a simple button element)
}

Remember: if you use custom styling for the container element, you must style the text and the button yourself, the default styling of the text and the button is strictly linked with the default styling of the containing element