-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update devapp1.yml New Release * Bump async from 2.6.3 to 2.6.4 in /ui/dashboard (#887) Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. - [Release notes](https://github.com/caolan/async/releases) - [Changelog](https://github.com/caolan/async/blob/v2.6.4/CHANGELOG.md) - [Commits](caolan/async@v2.6.3...v2.6.4) --- updated-dependencies: - dependency-name: async dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Issue 738 Stream replays (#888) * fix square frame/no frame video stream * stream catch up techniques * type safety * Issue 889 Video issue (#891) * modernize foyer * fix static video dragging issue * handle video load studio * on loaded metadata * Issue 882 System config interface (#893) * reorder sidebar & typo * email subject prefix saveable * load email subject prefix from db * config value instead of object * defualt rehearsal status (#896) * reload config after saving (#895) * Issue 873 Stage visibility on Foyer (#894) * stage visibility option * update foyer display rule * toggle and explaination (#899) * move button from green banner (#902) * fix broken stream url when broadcasting using obs (#905) * remove button hide (#904) * studio footer (#903) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hồng Phát <hongphat.js@gmail.com>
- Loading branch information
1 parent
8a15430
commit 00b8ef5
Showing
30 changed files
with
598 additions
and
487 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
VUE_APP_API_ENDPOINT=http://127.0.0.1:5000/api/ | ||
VUE_APP_GRAPHQL_ENDPOINT=http://127.0.0.1:5000/api/ | ||
VUE_APP_STATIC_ASSETS_ENDPOINT=https://dev-app1.upstage.live/static/assets/ | ||
VUE_APP_STATIC_ASSETS_ENDPOINT=https://upstage.live/static/assets/ | ||
VUE_APP_MQTT_NAMESPACE=dev | ||
VUE_APP_JITSI_ENDPOINT=https://streaming1.upstage.live/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
"@/*": [ | ||
"./src/*" | ||
] | ||
} | ||
}, | ||
"jsx": "preserve" | ||
}, | ||
"exclude": [ | ||
"node_modules", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<template> | ||
<div class="p-4"> | ||
<router-link :to="`/${stage.fileLocation}`" class="stage"> | ||
<img class="cover" :src="coverImage(stage.cover)" lazy> | ||
<PlayerAudienceCounter :stage-url="stage.fileLocation" class="counter" /> | ||
<span class="name">{{ stage.name }}</span> | ||
</router-link> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
import { defineProps } from 'vue'; | ||
import config from "@/../vue.config"; | ||
import PlayerAudienceCounter from "@/components/stage/PlayerAudienceCounter"; | ||
import { absolutePath } from '@/utils/common'; | ||
const props = defineProps({ | ||
stage: { | ||
type: Object, | ||
required: true, | ||
}, | ||
fallbackCover: { | ||
type: String, | ||
}, | ||
}); | ||
console.log(props.fallbackCover, `${config.publicPath}img/${props.fallbackCover}`); | ||
const coverImage = (src) => src ? absolutePath(src) : `${config.publicPath}img/${props.fallbackCover}`; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import "@/styles/bulma"; | ||
@import "@/styles/mixins"; | ||
.stage { | ||
@include textShadow; | ||
position: relative; | ||
font-weight: bold; | ||
font-size: 25px; | ||
border: 1px solid $black; | ||
border-top: 10px solid $primary; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
box-shadow: 10px 5px 0 0 $black; | ||
color: white; | ||
border-radius: 12px; | ||
overflow: hidden; | ||
.cover { | ||
width: 100%; | ||
height: 100%; | ||
min-height: 200px; | ||
background-size: cover; | ||
} | ||
.name { | ||
position: absolute; | ||
z-index: 10; | ||
padding: 2rem; | ||
} | ||
.counter { | ||
position: absolute; | ||
right: 10px; | ||
top: 10px; | ||
width: auto !important; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.