fitbit-core

0.0.7 • Public • Published

fitbit-core

Travis branch Coveralls branch npm badge

🌑 A library to handle core functionality for building Fitbit OS watchface

Note, this is still a work in progress

The purpose of this library is to provide a simple interface to abstract the basic core functionality of a Fitbit watchface (date and time). As a result, you'll be able to manage and render the time and date, all within 2 lines code, allowing you to focus mainly on styling and superset features.

Functionality

  • Manage and Display Date including i18n / multi-language support
  • Manage and Display Time including user's format preferences and updating on ticks.
  • Simple interface
  • Support custom font through FitFont Rendering

Future Roadmap

  • multi-line time (hour / minutes)
  • Support seconds

Usage

Create a Text or FitFont element in your .view. Provide that ID to the core class caller, and initialize the core.

const TimeConfiguration = { timeId: 'time' };
const DateConfiguration = { dateId: 'date' };

const core = new Core(TimeConfiguration, DateConfiguration);
core.initialize();

Example: Coloring Elements

const core = new Core({ timeId: 'time', dateId: 'date' });
core.initialize();

if (user.clicked) {
    core.time.setColor('deepbluesky');
    core.date.setColor('plum');
}

Example: Fitfont
index.view: View GUI File

    <svg>
        <use href="#fitfont" id="time">
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
        </use>
        <use href="#fitfont" id="date">
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
            <use href="#fitfont-char"/>
        </use>
    </svg>

your.js: Clockface JS File

const CustomDateFont = {
    dateId: 'date',
    font: 'Roboto_30',
    halign: 'middle',
    valign: 'start',
    letterspacing: 0
};

const CustomTimeFont = {
    dateId: 'time',
    font: 'Roboto_70',
    halign: 'middle',
    valign: 'start',
    letterspacing: 1
};

const core = new Core(CustomTimeFont, CustomDateFont);
// Time and Date Displayed
core.initialize();

if (someCondition) {
    const TimeElement = core.time.get();
    TimeElement.letterspacing = 3;
    TimeElement.halign = 'end';
}

fitbit-core/app

Core(TimeConfiguration, DateConfiguration)

Type: class
Usage: new Core(TimeConfiguration, DateConfiguration)

TimeConfiguration

Type: object
Configuration for the element used to display the time.

timeId (required)

Type: string
ID of the Time Element

fitfont

Type: object
Fitfont configuration, this will render the element as a Fitfont element instead. ID will be populated with the timeId.

format

Type: enum ("12h"/"24h")
Configure which format will the clock display.

onTick

Type: function
Register a callback that will be executed upon tick (clock update) events.

DateConfiguration

Type: object
Configuration for the element used to display the date.

dateId (required)

Type: string
ID of the Date Element

fitfont

Type: object
Fitfont configuration, this will render the element as a Fitfont element instead. ID will be populated with the dateId.

i18n

Type: boolean
Set to true to automatically reference your PO files for translations. Days are all lowercase.

Note: fitbit-core will use these msgid to map across your i18n/po files: ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']

Core Instance API

core.date

Type: Class Instance

core.date.set(dateObject)

Parses the date object and sets the element text value to the date.

core.date.setColor(colorString)

Sets the Date element color to the value inputted.

core.time

Type: Class Instance

core.time.set(dateObject)

Parses the date object and sets element text value to the time.

core.time.setColor(colorString)

Sets the Time element color to the value inputted.

core.time.onTick(onTickHandler)

Configure a onTick handler to be called when the time ticks

Relevant

This library works well in conjunction with:

License

MIT © Brandon Him

Package Sidebar

Install

npm i fitbit-core

Weekly Downloads

0

Version

0.0.7

License

MIT

Unpacked Size

16.5 kB

Total Files

3

Last publish

Collaborators

  • brh55