Merge branch 'gek/current-stream-duration'
This commit is contained in:
@@ -68,7 +68,7 @@ func IsStreamConnected() bool {
|
|||||||
|
|
||||||
// Kind of a hack. It takes a handful of seconds between a RTMP connection and when HLS data is available.
|
// Kind of a hack. It takes a handful of seconds between a RTMP connection and when HLS data is available.
|
||||||
// So account for that with an artificial buffer of four segments.
|
// So account for that with an artificial buffer of four segments.
|
||||||
timeSinceLastConnected := time.Since(_stats.LastConnectTime).Seconds()
|
timeSinceLastConnected := time.Since(_stats.LastConnectTime.Time).Seconds()
|
||||||
if timeSinceLastConnected < float64(config.Config.GetVideoSegmentSecondsLength()*4.0) {
|
if timeSinceLastConnected < float64(config.Config.GetVideoSegmentSecondsLength()*4.0) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import (
|
|||||||
"github.com/gabek/owncast/config"
|
"github.com/gabek/owncast/config"
|
||||||
"github.com/gabek/owncast/core/ffmpeg"
|
"github.com/gabek/owncast/core/ffmpeg"
|
||||||
"github.com/gabek/owncast/models"
|
"github.com/gabek/owncast/models"
|
||||||
|
"github.com/gabek/owncast/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
//GetStatus gets the status of the system
|
//GetStatus gets the status of the system
|
||||||
@@ -27,9 +28,9 @@ func GetStatus() models.Status {
|
|||||||
//SetStreamAsConnected sets the stream as connected
|
//SetStreamAsConnected sets the stream as connected
|
||||||
func SetStreamAsConnected() {
|
func SetStreamAsConnected() {
|
||||||
_stats.StreamConnected = true
|
_stats.StreamConnected = true
|
||||||
_stats.LastConnectTime = time.Now()
|
_stats.LastConnectTime = utils.NullTime{time.Now(), true}
|
||||||
|
|
||||||
timeSinceDisconnect := time.Since(_stats.LastDisconnectTime).Minutes()
|
timeSinceDisconnect := time.Since(_stats.LastDisconnectTime.Time).Minutes()
|
||||||
if timeSinceDisconnect > 15 {
|
if timeSinceDisconnect > 15 {
|
||||||
_stats.SessionMaxViewerCount = 0
|
_stats.SessionMaxViewerCount = 0
|
||||||
}
|
}
|
||||||
@@ -45,7 +46,7 @@ func SetStreamAsConnected() {
|
|||||||
//SetStreamAsDisconnected sets the stream as disconnected
|
//SetStreamAsDisconnected sets the stream as disconnected
|
||||||
func SetStreamAsDisconnected() {
|
func SetStreamAsDisconnected() {
|
||||||
_stats.StreamConnected = false
|
_stats.StreamConnected = false
|
||||||
_stats.LastDisconnectTime = time.Now()
|
_stats.LastDisconnectTime = utils.NullTime{time.Now(), true}
|
||||||
|
|
||||||
ffmpeg.ShowStreamOfflineState()
|
ffmpeg.ShowStreamOfflineState()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,15 +2,17 @@ package models
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/gabek/owncast/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
//Stats holds the stats for the system
|
//Stats holds the stats for the system
|
||||||
type Stats struct {
|
type Stats struct {
|
||||||
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
||||||
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
||||||
LastDisconnectTime time.Time `json:"lastDisconnectTime"`
|
LastDisconnectTime utils.NullTime `json:"lastDisconnectTime"`
|
||||||
|
|
||||||
StreamConnected bool `json:"-"`
|
StreamConnected bool `json:"-"`
|
||||||
LastConnectTime time.Time `json:"-"`
|
LastConnectTime utils.NullTime `json:"-"`
|
||||||
Clients map[string]time.Time `json:"-"`
|
Clients map[string]time.Time `json:"-"`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
import (
|
import "github.com/gabek/owncast/utils"
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
//Status represents the status of the system
|
//Status represents the status of the system
|
||||||
type Status struct {
|
type Status struct {
|
||||||
@@ -11,6 +9,6 @@ type Status struct {
|
|||||||
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
OverallMaxViewerCount int `json:"overallMaxViewerCount"`
|
||||||
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
SessionMaxViewerCount int `json:"sessionMaxViewerCount"`
|
||||||
|
|
||||||
LastConnectTime time.Time `json:"lastConnectTime"`
|
LastConnectTime utils.NullTime `json:"lastConnectTime"`
|
||||||
LastDisconnectTime time.Time `json:"lastDisconnectTime"`
|
LastDisconnectTime utils.NullTime `json:"lastDisconnectTime"`
|
||||||
}
|
}
|
||||||
|
|||||||
34
utils/nulltime.go
Normal file
34
utils/nulltime.go
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"database/sql/driver"
|
||||||
|
"fmt"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
type NullTime struct {
|
||||||
|
Time time.Time
|
||||||
|
Valid bool // Valid is true if Time is not NULL
|
||||||
|
}
|
||||||
|
|
||||||
|
// Scan implements the Scanner interface.
|
||||||
|
func (nt *NullTime) Scan(value interface{}) error {
|
||||||
|
nt.Time, nt.Valid = value.(time.Time)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// Value implements the driver Valuer interface.
|
||||||
|
func (nt NullTime) Value() (driver.Value, error) {
|
||||||
|
if !nt.Valid {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
|
return nt.Time, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (nt NullTime) MarshalJSON() ([]byte, error) {
|
||||||
|
if !nt.Valid {
|
||||||
|
return []byte("null"), nil
|
||||||
|
}
|
||||||
|
val := fmt.Sprintf("\"%s\"", nt.Time.Format(time.RFC3339))
|
||||||
|
return []byte(val), nil
|
||||||
|
}
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<main v-bind:class="{ online: isOnline }">
|
<main v-bind:class="{ online: playerOn }">
|
||||||
<div
|
<div
|
||||||
id="video-container"
|
id="video-container"
|
||||||
class="flex owncast-video-container bg-black"
|
class="flex owncast-video-container bg-black"
|
||||||
@@ -101,24 +101,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section id="chat-container-wrap" class="flex">
|
<section id="chat-container-wrap" class="flex">
|
||||||
|
|
||||||
<!-- <div v-if="layout !== 'desktop'" id="user-content-touch">
|
|
||||||
<user-details
|
|
||||||
v-bind:logo="logo"
|
|
||||||
v-bind:platforms="socialHandles"
|
|
||||||
v-bind:summary="summary"
|
|
||||||
v-bind:tags="tags"
|
|
||||||
>{{streamerName}}</user-details>
|
|
||||||
|
|
||||||
<div v-html="extraUserContent" class="extra-user-content">{{extraUserContent}}</div>
|
|
||||||
|
|
||||||
<owncast-footer v-bind:app-version="appVersion"></owncast-footer>
|
|
||||||
|
|
||||||
</div> -->
|
|
||||||
|
|
||||||
<div id="chat-container" class="bg-gray-800">
|
<div id="chat-container" class="bg-gray-800">
|
||||||
<div id="messages-container">
|
<div id="messages-container">
|
||||||
<div v-for="message in messages">
|
<div v-for="message in messages" v-cloak>
|
||||||
<div class="message flex">
|
<div class="message flex">
|
||||||
<img
|
<img
|
||||||
v-bind:src="message.image"
|
v-bind:src="message.image"
|
||||||
@@ -153,14 +138,9 @@
|
|||||||
> Chat
|
> Chat
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
class Owncast {
|
class Owncast {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.player;
|
this.player;
|
||||||
this.streamStatus = null;
|
|
||||||
|
|
||||||
this.websocket = null;
|
this.websocket = null;
|
||||||
this.configData;
|
this.configData;
|
||||||
@@ -14,10 +13,10 @@ class Owncast {
|
|||||||
this.offlineTimer = null;
|
this.offlineTimer = null;
|
||||||
this.statusTimer = null;
|
this.statusTimer = null;
|
||||||
this.disableChatTimer = null;
|
this.disableChatTimer = null;
|
||||||
|
this.streamDurationTimer = null;
|
||||||
|
|
||||||
// misc
|
// misc
|
||||||
this.streamIsOnline = false;
|
this.streamStatus = null;
|
||||||
this.lastDisconnectTime = null;
|
|
||||||
|
|
||||||
Vue.filter('plural', pluralize);
|
Vue.filter('plural', pluralize);
|
||||||
|
|
||||||
@@ -36,6 +35,7 @@ class Owncast {
|
|||||||
this.handlePlayerPlaying = this.handlePlayerPlaying.bind(this);
|
this.handlePlayerPlaying = this.handlePlayerPlaying.bind(this);
|
||||||
this.handlePlayerEnded = this.handlePlayerEnded.bind(this);
|
this.handlePlayerEnded = this.handlePlayerEnded.bind(this);
|
||||||
this.handlePlayerError = this.handlePlayerError.bind(this);
|
this.handlePlayerError = this.handlePlayerError.bind(this);
|
||||||
|
this.setCurrentStreamDuration = this.setCurrentStreamDuration.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
init() {
|
init() {
|
||||||
@@ -45,7 +45,7 @@ class Owncast {
|
|||||||
this.vueApp = new Vue({
|
this.vueApp = new Vue({
|
||||||
el: '#app-container',
|
el: '#app-container',
|
||||||
data: {
|
data: {
|
||||||
isOnline: false,
|
playerOn: false,
|
||||||
messages: [],
|
messages: [],
|
||||||
overallMaxViewerCount: 0,
|
overallMaxViewerCount: 0,
|
||||||
sessionMaxViewerCount: 0,
|
sessionMaxViewerCount: 0,
|
||||||
@@ -201,8 +201,32 @@ class Owncast {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// fetch chat history
|
||||||
|
getChatHistory() {
|
||||||
|
fetch(URL_CHAT_HISTORY)
|
||||||
|
.then(response => {
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error(`Network response was not ok ${response.ok}`);
|
||||||
|
}
|
||||||
|
return response.json();
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
const formattedMessages = data.map(function (message) {
|
||||||
|
return new Message(message);
|
||||||
|
})
|
||||||
|
this.vueApp.messages = formattedMessages.concat(this.vueApp.messages);
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
this.handleNetworkingError(`Fetch getChatHistory: ${error}`);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// handle UI things from stream status result
|
// handle UI things from stream status result
|
||||||
updateStreamStatus(status) {
|
updateStreamStatus(status = {}) {
|
||||||
|
if (!status) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
// update UI
|
// update UI
|
||||||
this.vueApp.streamStatus = status.online ? MESSAGE_ONLINE : MESSAGE_OFFLINE;
|
this.vueApp.streamStatus = status.online ? MESSAGE_ONLINE : MESSAGE_OFFLINE;
|
||||||
this.vueApp.viewerCount = status.viewerCount;
|
this.vueApp.viewerCount = status.viewerCount;
|
||||||
@@ -211,14 +235,25 @@ class Owncast {
|
|||||||
|
|
||||||
this.lastDisconnectTime = status.lastDisconnectTime;
|
this.lastDisconnectTime = status.lastDisconnectTime;
|
||||||
|
|
||||||
if (status.online && !this.streamIsOnline) {
|
if (!this.streamStatus) {
|
||||||
|
// display offline mode the first time we get status, and it's offline.
|
||||||
|
if (!status.online) {
|
||||||
|
this.handleOfflineMode();
|
||||||
|
} else {
|
||||||
|
this.handleOnlineMode();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (status.online && !this.streamStatus.online) {
|
||||||
// stream has just come online.
|
// stream has just come online.
|
||||||
this.handleOnlineMode();
|
this.handleOnlineMode();
|
||||||
} else if (!status.online && !this.streamStatus) {
|
} else if (!status.online && this.streamStatus.online) {
|
||||||
// stream has just gone offline.
|
// stream has just flipped offline.
|
||||||
// display offline mode the first time we get status, and it's offline.
|
|
||||||
this.handleOfflineMode();
|
this.handleOfflineMode();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// keep a local copy
|
||||||
|
this.streamStatus = status;
|
||||||
|
|
||||||
if (status.online) {
|
if (status.online) {
|
||||||
// only do this if video is paused, so no unnecessary img fetches
|
// only do this if video is paused, so no unnecessary img fetches
|
||||||
@@ -226,22 +261,30 @@ class Owncast {
|
|||||||
this.player.setPoster();
|
this.player.setPoster();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.streamStatus = status;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// update vueApp.streamStatus text when online
|
||||||
|
setCurrentStreamDuration() {
|
||||||
|
// Default to something
|
||||||
|
let streamDurationString = '';
|
||||||
|
|
||||||
|
if (this.streamStatus.lastConnectTime) {
|
||||||
|
const diff = (Date.now() - Date.parse(this.streamStatus.lastConnectTime)) / 1000;
|
||||||
|
streamDurationString = secondsToHMMSS(diff);
|
||||||
|
}
|
||||||
|
this.vueApp.streamStatus = `${MESSAGE_ONLINE} ${streamDurationString}.`
|
||||||
|
}
|
||||||
|
|
||||||
handleNetworkingError(error) {
|
handleNetworkingError(error) {
|
||||||
console.log(`>>> App Error: ${error}`)
|
console.log(`>>> App Error: ${error}`)
|
||||||
};
|
};
|
||||||
|
|
||||||
// basically hide video and show underlying "poster"
|
// stop status timer and disable chat after some time.
|
||||||
handleOfflineMode() {
|
handleOfflineMode() {
|
||||||
this.streamIsOnline = false;
|
clearInterval(this.streamDurationTimer);
|
||||||
this.vueApp.isOnline = false;
|
|
||||||
this.vueApp.streamStatus = MESSAGE_OFFLINE;
|
this.vueApp.streamStatus = MESSAGE_OFFLINE;
|
||||||
|
if (this.streamStatus) {
|
||||||
if (this.lastDisconnectTime) {
|
const remainingChatTime = TIMER_DISABLE_CHAT_AFTER_OFFLINE - (Date.now() - new Date(this.streamStatus.lastDisconnectTime));
|
||||||
const remainingChatTime = TIMER_DISABLE_CHAT_AFTER_OFFLINE - (Date.now() - new Date(this.lastDisconnectTime));
|
|
||||||
const countdown = (remainingChatTime < 0) ? 0 : remainingChatTime;
|
const countdown = (remainingChatTime < 0) ? 0 : remainingChatTime;
|
||||||
this.disableChatTimer = setTimeout(this.messagingInterface.disableChat, countdown);
|
this.disableChatTimer = setTimeout(this.messagingInterface.disableChat, countdown);
|
||||||
}
|
}
|
||||||
@@ -249,14 +292,16 @@ class Owncast {
|
|||||||
|
|
||||||
// play video!
|
// play video!
|
||||||
handleOnlineMode() {
|
handleOnlineMode() {
|
||||||
this.streamIsOnline = true;
|
this.vueApp.playerOn = true;
|
||||||
this.vueApp.isOnline = true;
|
|
||||||
this.vueApp.streamStatus = MESSAGE_ONLINE;
|
this.vueApp.streamStatus = MESSAGE_ONLINE;
|
||||||
|
|
||||||
this.player.startPlayer();
|
this.player.startPlayer();
|
||||||
clearTimeout(this.disableChatTimer);
|
clearTimeout(this.disableChatTimer);
|
||||||
this.disableChatTimer = null;
|
this.disableChatTimer = null;
|
||||||
this.messagingInterface.enableChat();
|
this.messagingInterface.enableChat();
|
||||||
|
|
||||||
|
this.streamDurationTimer =
|
||||||
|
setInterval(this.setCurrentStreamDuration, TIMER_STREAM_DURATION_COUNTER);
|
||||||
}
|
}
|
||||||
|
|
||||||
// when videojs player is ready, start polling for stream
|
// when videojs player is ready, start polling for stream
|
||||||
@@ -271,28 +316,15 @@ class Owncast {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
// likely called some time after stream status has gone offline.
|
||||||
|
// basically hide video and show underlying "poster"
|
||||||
handlePlayerEnded() {
|
handlePlayerEnded() {
|
||||||
// do something?
|
this.vueApp.playerOn = false;
|
||||||
this.handleOfflineMode();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
handlePlayerError() {
|
handlePlayerError() {
|
||||||
// do something?
|
// do something?
|
||||||
this.handleOfflineMode();
|
this.handleOfflineMode();
|
||||||
// stop timers?
|
this.handlePlayerEnded();
|
||||||
};
|
};
|
||||||
|
|
||||||
async getChatHistory() {
|
|
||||||
const url = "/chat";
|
|
||||||
const response = await fetch(url);
|
|
||||||
const data = await response.json();
|
|
||||||
const messages = data.map(function (message) {
|
|
||||||
return new Message(message);
|
|
||||||
})
|
|
||||||
this.setChatHistory(messages);
|
|
||||||
}
|
|
||||||
|
|
||||||
setChatHistory(messages) {
|
|
||||||
this.vueApp.messages = messages.concat(this.vueApp.messages);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -237,7 +237,7 @@ class MessagingInterface {
|
|||||||
disableChat() {
|
disableChat() {
|
||||||
if (this.formMessageInput) {
|
if (this.formMessageInput) {
|
||||||
this.formMessageInput.disabled = true;
|
this.formMessageInput.disabled = true;
|
||||||
this.formMessageInput.placeholder = "Chat is offline."
|
this.formMessageInput.placeholder = CHAT_PLACEHOLDER_OFFLINE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
enableChat() {
|
enableChat() {
|
||||||
@@ -248,11 +248,8 @@ class MessagingInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setChatPlaceholderText() {
|
setChatPlaceholderText() {
|
||||||
const firstMessageChatPlacholderText = "Type here to chat, no account necessary.";
|
|
||||||
const chatPlaceholderText = "Message"
|
|
||||||
|
|
||||||
const hasSentFirstChatMessage = getLocalStorage(KEY_CHAT_FIRST_MESSAGE_SENT);
|
const hasSentFirstChatMessage = getLocalStorage(KEY_CHAT_FIRST_MESSAGE_SENT);
|
||||||
this.formMessageInput.placeholder = hasSentFirstChatMessage ? chatPlaceholderText : firstMessageChatPlacholderText
|
this.formMessageInput.placeholder = hasSentFirstChatMessage ? CHAT_PLACEHOLDER_TEXT : CHAT_INITIAL_PLACEHOLDER_TEXT
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle Vue.js message display
|
// handle Vue.js message display
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ const LOCAL_TEST = window.location.href.indexOf('localhost:') >= 0;
|
|||||||
|
|
||||||
const URL_PREFIX = LOCAL_TEST ? 'http://localhost:8080' : '';
|
const URL_PREFIX = LOCAL_TEST ? 'http://localhost:8080' : '';
|
||||||
const URL_STATUS = `${URL_PREFIX}/status`;
|
const URL_STATUS = `${URL_PREFIX}/status`;
|
||||||
|
const URL_CHAT_HISTORY = `${URL_PREFIX}/chat`;
|
||||||
const URL_STREAM = `${URL_PREFIX}/hls/stream.m3u8`;
|
const URL_STREAM = `${URL_PREFIX}/hls/stream.m3u8`;
|
||||||
const URL_WEBSOCKET = LOCAL_TEST
|
const URL_WEBSOCKET = LOCAL_TEST
|
||||||
? 'wss://goth.land/entry'
|
? 'wss://goth.land/entry'
|
||||||
@@ -47,11 +48,16 @@ const KEY_CHAT_FIRST_MESSAGE_SENT = 'owncast_first_message_sent';
|
|||||||
const TIMER_STATUS_UPDATE = 5000; // ms
|
const TIMER_STATUS_UPDATE = 5000; // ms
|
||||||
const TIMER_WEBSOCKET_RECONNECT = 5000; // ms
|
const TIMER_WEBSOCKET_RECONNECT = 5000; // ms
|
||||||
const TIMER_DISABLE_CHAT_AFTER_OFFLINE = 5 * 60 * 1000; // 5 mins
|
const TIMER_DISABLE_CHAT_AFTER_OFFLINE = 5 * 60 * 1000; // 5 mins
|
||||||
|
const TIMER_STREAM_DURATION_COUNTER = 1000;
|
||||||
|
|
||||||
const TEMP_IMAGE = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
|
const TEMP_IMAGE = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
|
||||||
|
|
||||||
const MESSAGE_OFFLINE = 'Stream is offline.';
|
const MESSAGE_OFFLINE = 'Stream is offline.';
|
||||||
const MESSAGE_ONLINE = 'Stream is online.';
|
const MESSAGE_ONLINE = 'Stream is online';
|
||||||
|
|
||||||
|
const CHAT_INITIAL_PLACEHOLDER_TEXT = 'Type here to chat, no account necessary.';
|
||||||
|
const CHAT_PLACEHOLDER_TEXT = 'Message';
|
||||||
|
const CHAT_PLACEHOLDER_OFFLINE = 'Chat is offline.';
|
||||||
|
|
||||||
|
|
||||||
function getLocalStorage(key) {
|
function getLocalStorage(key) {
|
||||||
@@ -145,6 +151,21 @@ function generateUsername() {
|
|||||||
return `User ${(Math.floor(Math.random() * 42) + 1)}`;
|
return `User ${(Math.floor(Math.random() * 42) + 1)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function secondsToHMMSS(seconds = 0) {
|
||||||
|
const finiteSeconds = Number.isFinite(+seconds) ? Math.abs(seconds) : 0;
|
||||||
|
|
||||||
|
const hours = Math.floor(finiteSeconds / 3600);
|
||||||
|
const hoursString = hours ? `${hours}:` : '';
|
||||||
|
|
||||||
|
const mins = Math.floor((finiteSeconds / 60) % 60);
|
||||||
|
const minString = mins < 10 ? `0${mins}:` : `${mins}:`;
|
||||||
|
|
||||||
|
const secs = Math.floor(finiteSeconds % 60);
|
||||||
|
const secsString = secs < 10 ? `0${secs}` : `${secs}`;
|
||||||
|
|
||||||
|
return hoursString + minString + secsString;
|
||||||
|
}
|
||||||
|
|
||||||
function setVHvar() {
|
function setVHvar() {
|
||||||
var vh = window.innerHeight * 0.01;
|
var vh = window.innerHeight * 0.01;
|
||||||
// Then we set the value in the --vh custom property to the root of the document
|
// Then we set the value in the --vh custom property to the root of the document
|
||||||
|
|||||||
Reference in New Issue
Block a user