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

ember-rl-week-picker

v0.3.0

Published

Ember week picker component using moment.js.

Downloads

23

Readme

Ember-rl-week-picker

Ember week picker component using moment.js.

Build Status

See also:

Demo

Demo avialable here.

Installation

npm install ember-rl-week-picker --save-dev
ember generate ember-moment

This addon does not automatically import a stylesheet into your application. Run the following command to generate a stylesheet you can use as a base:

ember generate rl-picker-css
ember generate rl-week-picker-css

This will create 2 css files: one containing the base css for rl-picker at app/styles/rl-picker/_rl-picker.css, and one containing some css specific for the week picker at app/styles/rl-picker/_rl-week-picker.css. You can include these stylesheets into your application's sass or less files (you may have to change the file extensions them to .scss or .less).

Usage

{{rl-week-picker year=currentYear weekNumber=currentWeek}}

<!-- You can also use a week string instead of a year and week number -->
{{rl-week-picker week="2015-W36"}}

Bind the year and weekNumber properties to properties on your controller. Ember's two-way bindings will keep the value updated. If you don't need the year and week number separately, you can also bind a string to the week property, formatted as {year}-W{weekNumber} (e.g. 2015-W36 for 2015, week 36).

The following properties can be set to customize the month picker:

  • weekPlaceholderText (default: 'Week'): the text displayed on the picker toggle button when the weekNumber value is null.
  • flatMode (default: false): when set to true, only the picker is shown (see demo).
  • monthLabels (default: 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'): the labels used for the months, separated by commas, or bound to an Ember property containing an array or strings.
  • dayLabels (default: 'Mo,Tu,We,Th,Fr,Sa,Su'): the labels used for the days, separated by commas, or bound to an Ember property containing an array or strings.
  • yearsPerPage (default: 12): the number of years shown on a page.
  • minWeek (default: null): the minimum week that can be selected. Takes a string formatted as {year}-W{weekNumber} (e.g. 2015-W36 for 2015, week 36).
  • maxWeek (default: null): the maximum week that can be selected. Takes a string formatted as {year}-W{weekNumber} (e.g. 2015-W36 for 2015, week 36).
  • decreaseButtonText (default: '<'): the text on the decrease year button. Set for example to "<i class='fa fa-chevron-left'></i>" to work with Font Awesome.
  • increaseButtonText (default: '>'): the text on the decrease year button. Set for example to "<i class='fa fa-chevron-right'></i>" to work with Font Awesome.
  • previousPageButtonText (default: '<'): the text on the previous page button. Set for example to "<i class='fa fa-chevron-left'></i>" to work with Font Awesome.
  • nextPageButtonText (default: '>'): : the text on the next page button. Set for example to "<i class='fa fa-chevron-right'></i>" to work with Font Awesome.
  • weekColumnHeader (default: 'W#'): the text rendered above the column that numbers the weeks.

If you want to set different defaults for all week pickers in your application, extend the component and override the defaults with your own:

// app/components/rl-week-picker.js
import RlWeekPickerComponent from 'ember-rl-week-picker/components/rl-week-picker';

export default RlWeekPickerComponent.extend({
  decreaseButtonText: "<i class='fa fa-chevron-left'></i>",

  increaseButtonText: "<i class='fa fa-chevron-right'></i>",

  previousPageButtonText: "<i class='fa fa-chevron-left'></i>",

  nextPageButtonText: "<i class='fa fa-chevron-right'></i>"
});