community-apps/applications/home/app_home.js
Alezia Kurdis f0823de933
Change the fallback to tutorial
When there is no home bookmark already set, the Home app was redirecting to localhost. But since there is a possibility that no localhost could be up and running, we will instead redirect to tutorial rather than to localhost. (tutorial being always present.)
2023-08-18 14:41:17 -04:00

61 lines
1.7 KiB
JavaScript

"use strict";
//
// app_home.js
//
// Created by Alezia Kurdis, February 12th, 2022.
// Copyright 2022 Overte e.V.
//
// Fast go home button.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
(function() {
var jsMainFileName = "app_home.js";
var ROOT = Script.resolvePath('').split(jsMainFileName)[0];
var teleporterSoundFileUrl = ROOT + "tpsound.mp3";
var teleportSound = SoundCache.getSound(teleporterSoundFileUrl);
var APP_NAME = "HOME";
var APP_ICON_INACTIVE = ROOT + "appicon_i.png";
var APP_ICON_ACTIVE = ROOT + "appicon_a.png";
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
var button = tablet.addButton({
text: APP_NAME,
icon: APP_ICON_INACTIVE,
activeIcon: APP_ICON_ACTIVE,
sortOrder: 3
});
function clicked(){
button.editProperties({
isActive: true
});
playSound();
var timer = Script.setTimeout(function () {
if (LocationBookmarks.getHomeLocationAddress()) {
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
} else {
Window.location = "file:///~/serverless/tutorial.json";
}
button.editProperties({
isActive: false
});
}, 3000);
}
button.clicked.connect(clicked);
function cleanup() {
Script.scriptEnding.disconnect(cleanup);
tablet.removeButton(button);
}
function playSound() {
Audio.playSound(teleportSound, { volume: 0.3, localOnly: true });
};
Script.scriptEnding.connect(cleanup);
}());