New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ember-links-with-follower

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-links-with-follower

An Ember component to render a set of links with a "follower" line underneath. The follower moves to the active link, matching size and position on the page.

  • 0.6.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9
decreased by-35.71%
Maintainers
2
Weekly downloads
 
Created
Source

CircleCI npm version Code Climate Dependency Status Ember Observer Score

Features

Provides a component that renders a set of links with a follower line underneath. The follower will animate to the position of the active link, and grow or shrink in size if needed. If no active links are found, the follower will hide.

This pattern is commonly used for navigation:

twitter

(from Twitter app)

linkedin

(from LinkedIn app)

Animation of the follower is done through CSS transition and transform using translate3d. The transitions duration will be set to 0 on window resize to avoid issues with animating while resizing.

Since Links with Follower hooks in to the Router's willTransition event, you can use link-to or transitionTo and the follower will still update properly.

Installation

ember install ember-links-with-follower

Usage

Render links with default behavior (links passed in the block are expected to be li's):

{{#links-with-follower class="my-nav"}}
  {{#link-to 'Home' tagName='li'}}Home{{/link-to}}
  {{#link-to 'Stuff' tagName='li'}}Stuff{{/link-to}}
{{/links-with-follower}}

Render custom tags, change the active selector, and animate slowly:

{{#links-with-follower
  containerTagName="section"
  linkTagName="div"
  activeSelector="selected"
  followerAnimationDuration=1000}}

  {{#link-to "Home" tagName="div"}}Home{{/link-to}}
  {{#link-to "Stuff" tagName="div"}}Stuff{{/link-to}}

{{/links-with-follower}}

Customize the follower with css:

.my-nav .link-follower {
  border-color: tomato;
  border-size: 3px;
}

How does this work?

A listener is added to the router's willTransition event. On willTransition, we look for an active link in the links provided to the component via block format.

An active link is defined by the activeSelector property, which defaults to 'li.active:not(li.ember-transitioning-out), li.ember-transitioning-in'. This allows us to eagerly transition the follower before the route has fully transitioned.

  • Demo

  • Changelog

  • Docs

Echobind LLC (c) 2016 @echobind Licensed under the MIT license

Keywords

FAQs

Package last updated on 11 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc