Noah Petherbridge
e728644a77
This commit makes an initial port of the front-end over to a proper Vue CLI application. It seems to work from surface level testing. Changes made: * Rename web/static to public/static to place it into the Vue build path * Notes: web/static/js/BareRTC.js and web/templates/chat.html are now deprecated * Rename web/static/js/sounds.js into src/lib/sounds.js making it a proper JavaScript module with exports. * Fill out initial src/App.vue by copying and updating web/templates/chat.html and web/static/js/BareRTC.js into this module.
46 lines
810 B
JavaScript
46 lines
810 B
JavaScript
// Available sound effects.
|
|
const SoundEffects = [
|
|
{
|
|
name: "Quiet",
|
|
filename: null
|
|
},
|
|
{
|
|
name: "Trill",
|
|
filename: "beep-6-96243.mp3"
|
|
},
|
|
{
|
|
name: "Beep",
|
|
filename: "beep-sound-8333.mp3"
|
|
},
|
|
{
|
|
name: "Bird",
|
|
filename: "bird-3-f-89236.mp3"
|
|
},
|
|
{
|
|
name: "Ping",
|
|
filename: "ping-82822.mp3"
|
|
},
|
|
{
|
|
name: "Sonar",
|
|
filename: "sonar-ping-95840.mp3"
|
|
},
|
|
{
|
|
name: "Up Chime",
|
|
filename: "notification-6175-up.mp3"
|
|
},
|
|
{
|
|
name: "Down Chime",
|
|
filename: "notification-6175-down.mp3"
|
|
},
|
|
];
|
|
|
|
// Defaults
|
|
var DefaultSounds = {
|
|
Chat: "Quiet",
|
|
DM: "Trill",
|
|
Enter: "Quiet",
|
|
Leave: "Quiet",
|
|
Watch: "Quiet",
|
|
Unwatch: "Quiet",
|
|
};
|