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

@justeat/f-mega-modal

v7.7.1

Published

Fozzie Mega Modal – A Vue.js modal component

Downloads

26

Readme

f-mega-modal

A Vue.js modal component


npm version CircleCI


Usage

Installation

Install the module using NPM or Yarn:

yarn add @justeat/f-mega-modal
npm install @justeat/f-mega-modal

The package also has dependencies that need to be installed by consuming components/applications:

| Dependency | Command to install | Styles to include | | ----- | ----- | ----- | | f-button | yarn add @justeat/f-button | import '@justeat/f-button/dist/f-button.css'; |

Vue Applications

You can import it in your Vue SFC like this (please note that styles have to be imported separately):

import MegaModal from '@justeat/f-mega-modal';
import '@justeat/f-mega-modal/dist/f-mega-modal.css';

export default {
    components: {
        MegaModal
    }
}

If you are using Webpack, you can import the component dynamically to separate the mega-modal bundle from the main bundle.client.js:

import '@justeat/f-mega-modal/dist/f-mega-modal.css';

export default {
    components: {
// …
        MegaModal: () => import(/* webpackChunkName: "mega-modal" */ '@justeat/f-mega-modal')
    }
}

Non-Vue Applications

This module can be ran as a micro front-end for applications that don't make use of the Vue framework.

The following rudimentary example can be used as a guide for implementing this component in an existing static application:

<!doctype html>
<html lang="en">
<head>
    <title>Mega Modal Example</title>
    <link rel="stylesheet" href="https://unpkg.com/@justeat/f-mega-modal/dist/f-mega-modal.css">
</head>
<body>
    <div data-app>
        <mega-modal is-open>
          <p>Modal content</p>
        </mega-modal>
    </div>
    <script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
    <script src="https://unpkg.com/@justeat/f-mega-modal/dist/f-mega-modal.umd.min.js"></script>
    <script>
        (function() {
            if (typeof Vue === 'undefined') return null;

            Vue.config.devtools = false;
            Vue.config.productionTip = false;

            return new Vue({
                el: '[data-app]'
            });
    	})();
    </script>
</body>
</html>

Configuration

Props

f-mega-modal has a number of props that allow you to customise its functionality.

The props that can be defined are as follows:

| Prop | Type | Default | Description | |------------------------|-----------|-----------------|----------------------------------------------------------------------------------------------------------------------------------------| | is-open | Boolean | false | Sets the modal to open or closed state. | | is-narrow | Boolean | false | Use the narrow visual style. | | is-wide | Boolean | false | Use the wide visual style. | | is-flush | Boolean | false | Removes passing around the modal content. | | is-full-height | Boolean | false | Sets the modal content to full height of the screen.Note this only applies to small screen devices. | | is-scrollable | Boolean | false | Makes the modal content scrollable. | | is-close-fixed | Boolean | false | Sets the modal close button position to fixed. | | is-positioned-bottom | Boolean | false | Sets the modal position to the bottom of the viewport for all screen widths. | | has-overlay | Boolean | true | Controls whether or not to display an overlay behind the modal. | | close-button-style | String | cross | Controls the style of the button. Accepts cross & chevron. | | close-on-blur | Boolean | true | Controls whether or not to close the modal when the user clicks outside of the modal. | | close-button-copy | String | "Close modal" | Sets the hidden text value for the close button which is used by screen-readers. | | title | String | '' | When set, will add a title to the top of the component. If you need to define a custom heading, ignore this prop. | | titleHtmlTag | String | h3 | Sets the tag for the component's title.Allowed values are h1, h2, h3, and h4 | | isModeRightToLeft | Boolean | false | Controls whether or not to display the modal elements in a right to left direction. |

CSS Classes

The modal has its own styles which are scoped to the component using CSS modules to prevent conflicts with existing styles on the page.

In addition to this, the modal exposes some classes which you can target in your application.

| Class | Description | | ----- | ----------- | | c-megaModal | Can be used to target the modal wrapper element. | | c-megaModal-content | Can be used to target the modal content element. | | c-megaModal-content--visible | Can be used to target the modal content element when it is visible. | | c-megaModal-document | Can be used to target the modal document element. | | c-megaModal-document--scrollable | Can be used to target the modal document element when it is scrollable. | | c-megaModal-closeBtn | Can be used to target the modal close button element. |

The modal is also using utility css styles from fozzie package. You need to make sure to @include trumps-utilities(); mixin to your application styles if you use beta version of fozzie package (>= v5.0.0-beta.0). If you are using main version (v4.X.X) styles should come out of the box.

Events

| Event | Description | | ----- | ----------- | | open | This event is emitted when the modal is opened. | | close | This event is emitted when the modal is closed. |

You can add event listeners for these like so

<template>
  <mega-modal
    @open="onModalOpen"
    @close="onModalClose">
    <p>Modal content</p>
  </mega-modal>
</template>

<script>
export default {
  methods: {
    onModalOpen () {
      // Do stuff here
    },

    onModalClose () {
      // Do stuff here
    }
  }
}
</script>

Development

Start by cloning the repository and installing the required dependencies:

$ git clone [email protected]:justeat/fozzie-components.git
$ cd fozzie-components
$ yarn

Change directory to the f-mega-modal package:

$ cd packages/components/molecules/f-mega-modal

Testing

Unit, Integration and Contract

To test all components, run from root directory. To test only f-form-field, run from the ./fozzie-components/packages/f-form-field directory.

yarn test

Running storybook

Storybook can be used to develop new and existing components.

To start storybook:

From the root directory run:

$ yarn storybook:serve

This will build and serve storybook at http://localhost:6006.