Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Npm package #1

Merged
merged 6 commits into from
Jun 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules*
Empty file added .npmignore
Empty file.
147 changes: 0 additions & 147 deletions countdown.js

This file was deleted.

15 changes: 0 additions & 15 deletions example.html

This file was deleted.

4 changes: 4 additions & 0 deletions examples/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import autoStartCountown from "../lib/autoStartCountown";

// The page have divs for auto start countdowns
autoStartCountown();
45 changes: 45 additions & 0 deletions examples/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<div autoCountdown countdown-duration='10' countdown-format='hh:m:s'></div>

<hr>

<div autoCountdown countdown-duration='13' countdown-format='mm:ss' countdown-handler="reload"></div>

<hr>

<div autoCountdown countdown-duration='5828' countdown-format='hh:ss' countdown-handler="reload"></div>

<hr>

<div>24h</div>
<div autoCountdown countdown-duration='86400' countdown-format='hh:mm:ss' countdown-tick-size='2s'
countdown-handler="reload">
</div>

<hr>

<div>48h</div>
<div autoCountdown countdown-duration='172800' countdown-format='hh:mm:ss' countdown-tick-size='2s'
countdown-handler="reload">
</div>

<hr>

<div>1 day</div>
<div autoCountdown countdown-duration='86400' countdown-format='d:hh:mm:ss' countdown-tick-size='2s'
countdown-handler="reload">
</div>

<hr>

<div>~40 days</div>
<div autoCountdown countdown-duration='3455950' countdown-format='d hh:mm:ss' countdown-tick-size='3s'
countdown-handler="reload">
</div>

<script>
function reload() {
location.reload();
}
</script>

<script src='/examples/index.js' defer></script>
1 change: 1 addition & 0 deletions examples/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions lib/Countdown.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
"use strict";

import Tick from "./Tick";
import Timer from "./Timer";

export default class Countdown {
/**
*
* @param {HTMLElement} el
*/
constructor(el) {
this.timer = new Timer(el.getAttribute("countdown-duration"));
this.tick = new Tick(el.getAttribute("countdown-tick-size") || "1s");
this.element = el;
this.actionName = el.getAttribute("countdown-handler");
this.format = el.getAttribute("countdown-format");

// init
this.render();

setInterval(() => {
if (this.timer.getRemainingSeconds() <= 0) {
this.actionName ? window[this.actionName]() : "do nothing";
return;
}

this.render();
}, this.tick.getSizeInMilliSeconds());
}

render() {
this.element.innerHTML = this.timer.getFormattedRemainingTime(
this.format
);
}

// TODO
abort() {}
}
54 changes: 54 additions & 0 deletions lib/Formatter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
"use strict";

export default class Formatter {
/**
*
* @param {number} duration Interger in seconds
* @param {string} format
*/
constructor(duration, format) {
this.duration = duration;
this.format = format;

this.mapper = {
d: 24 * 60 * 60,
hh: 60 * 60,
h: 60 * 60,
mm: 60,
m: 60,
ss: 1,
s: 1,
};
}

get(format = this.format) {
this.format = format;

for (const [key, value] of Object.entries(this.mapper)) {
if (this._formatHas(key)) {
this._replace(key);
}
}

return this.format;
}

/**
*
* @param {string} key
* @returns {boolean}
*/
_formatHas(key) {
return this.format.indexOf(key) !== -1;
}

_replace(key) {
let value = Math.floor(this.duration / this.mapper[key]);

if (key.length === 2 && value < 10) value = "0" + value;

this.duration -= value * this.mapper[key];

this.format = this.format.replace(key, value);
}
}
33 changes: 33 additions & 0 deletions lib/Tick.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
"use strict";

export default class Tick {
/**
*
* @param {string} timespanStr [<two-digits>h][<two-digits>m][<two-digits>s]
*/
constructor(timespanStr) {
this.timespanStr = timespanStr.toLowerCase();

this._parseTimespan();
this._setTotalSeconds();
}

_parseTimespan() {
const HMS = this.timespanStr.match(
/(?:(?<h>\d{0,2})h)?(?:(?<m>\d{0,2})m)?(?:(?<s>\d{0,2})s)?/
);

this.hours = parseInt(HMS.groups.h) || 0;
this.minutes = parseInt(HMS.groups.m) || 0;
this.seconds = parseInt(HMS.groups.s) || 0;
}

_setTotalSeconds() {
this.totalSeconds =
this.hours * 3600 + this.minutes * 60 + this.seconds;
}

getSizeInMilliSeconds() {
return this.totalSeconds * 1000;
}
}
40 changes: 40 additions & 0 deletions lib/Timer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
"use strict";

import Formatter from "./Formatter";

export default class Timer {
/**
*
* @param {number} duration in seconds
*/
constructor(duration) {
this.duration = duration;

this._setTargetTimestamp();
}

/**
*
* @param {number} remainingSeconds
*/
_setTargetTimestamp() {
this.targetTimestamp = Date.now() + parseInt(this.duration) * 1000;
}

getRemainingSeconds() {
return (this.targetTimestamp - Date.now()) / 1000;
}

getRemainingMilliSeconds() {
return this.targetTimestamp - Date.now();
}

/**
*
* @param {string} format
*/
getFormattedRemainingTime(format) {
const formatter = new Formatter(this.getRemainingSeconds(), format);
return formatter.get();
}
}
Loading