Giter VIP home page Giter VIP logo

preact-touchable-dock's Introduction

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

preact-touchable-dock's People

Contributors

dependabot[bot] avatar timdaub avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

preact-touchable-dock's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.