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

preact-touchable-dock

v0.3.5

Published

A touch and drag and droppable dock for single page web applications.

Downloads

28

Readme

preact-touchable-dock

npm version

A touch and drag and droppable dock for single page web applications.

Mobile|Simulated Mobile :-------------------------:|:-------------------------: |

Installation

$ npm i --save preact-touchable-dock
# or
$ yarn add preact-touchable-dock

Usage

<!doctype html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title>Touchable Dock Demo</title>
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <script src="https://unpkg.com/[email protected]/dist/preact.min.js"></script>
    <script src="https://unpkg.com/[email protected]/dist/htm.js"></script>
    <script src="https://unpkg.com/jss/dist/jss.min.js"></script>
    <script src="https://unpkg.com/jss-preset-default/dist/jss-preset-default.min.js"></script>
    
    <script src="./TouchableDock.min.js"></script>
    <script type="module">
      const { h, Component, render, createRef } = preact;
      const htm = window.htm;

      const html = htm.bind(h);

      class ControllableDock extends Component {
        constructor(props) {
          super(props);

          this.dock = createRef();  
          this.state = {
            stage: "hide"
          }
        }

        render() {
          const { stage } = this.state;
          return html`
            <h1>Hello World</h1>
            <p>
              Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
            </p>
            <button onClick=${() => this.dock.current.setStage("hide")}>hide</button>
            <button onClick=${() => this.dock.current.setStage("hint")}>hint</button>
            <button onClick=${() => this.dock.current.setStage("full")}>full</button>
            <${TouchableDock}
              ref=${this.dock}
              onClose=${() => console.log("Dock was closed")}
              onClick=${() => console.log("Dock was clicked")}
              style=${{
                borderTop: "5px solid green",
                backgroundColor: "white"
              }}>
              <h2>This is a dock text</h2> 
            <//>
          `;
        }
      }

      render(html`<${ControllableDock} />`, document.body);
  </script>
  </head>
  <body>
  </body>
</html>

Notes

  • TouchableDock inserts inline classes via JSS. This allows users to customize its style by adjusting classes like .touchableDock and .touchableDockHandle.
  • Changing the dock's stage works by calling the setStage method through a ref. Possible values are ["hide", "hint", "full"].
  • props.onClose allows to listen for close events emitted from the dock.

Contributing

$ git clone [email protected]:TimDaub/preact-touchable-dock.git
$ cd preact-touchable-dock
$ npm i
$ npm run dev

Changelog

0.3.5

  • Bug fix: Don't allow scrolling of body in stage === full

0.3.4

  • Added onClick prop

0.3.3

  • Forgot to update the build lol

0.3.2

  • Bug fix: Uncaught ReferenceError: pageY is not defined

0.3.1

  • Bug fix: Allow other components to receive touch and mouse movement event by conditionally applying evt.preventDefault
  • Bug fix: Allow adjusting dock's height in scrolled position

0.3.0

  • Unmount children when component is in stage === "hide" to allow usage of componentWillUnmount in child

0.2.2

  • Add onClose prop to component for listening to close events.

0.2.1

  • Add closing action button

0.2.0

  • Deprecate changing stage through props and allow only through new method called setStage

0.1.0

  • Deliver CSS classes as JS-generated inline classes using JSS

0.0.1

  • Initial release