Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
dashboard
Commits
db687d32
Commit
db687d32
authored
10 months ago
by
Konrad Mohrfeldt
Browse files
Options
Downloads
Patches
Plain Diff
fix: don’t throw unhandled errors
parent
0b9f9269
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/playlist/APlaylistEditor.vue
+12
-9
12 additions, 9 deletions
src/components/playlist/APlaylistEditor.vue
with
12 additions
and
9 deletions
src/components/playlist/APlaylistEditor.vue
+
12
−
9
View file @
db687d32
...
...
@@ -138,20 +138,20 @@
</div>
<APermissionGuard
show-permissions=
"program.add__stream"
>
<GetStreamUrl
v-slot=
"{ resolve
, reject
}"
>
<AStreamURLDialog
@
save=
"resolve($event)"
@
close=
"re
ject(undefined
)"
/>
<GetStreamUrl
v-slot=
"{ resolve }"
>
<AStreamURLDialog
@
save=
"resolve($event)"
@
close=
"re
solve(null
)"
/>
</GetStreamUrl>
</APermissionGuard>
<APermissionGuard
show-permissions=
"program.add__import"
>
<GetFileImportUrl
v-slot=
"{ resolve
, reject
}"
>
<AFileUrlDialog
@
save=
"resolve($event)"
@
close=
"re
ject(undefined
)"
/>
<GetFileImportUrl
v-slot=
"{ resolve }"
>
<AFileUrlDialog
@
save=
"resolve($event)"
@
close=
"re
solve(null
)"
/>
</GetFileImportUrl>
</APermissionGuard>
<APermissionGuard
show-permissions=
"program.add__line"
>
<GetInputUrl
v-slot=
"{ resolve
, reject
}"
>
<AInputUrlDialog
@
save=
"resolve($event)"
@
close=
"re
ject(undefined
)"
/>
<GetInputUrl
v-slot=
"{ resolve }"
>
<AInputUrlDialog
@
save=
"resolve($event)"
@
close=
"re
solve(null
)"
/>
</GetInputUrl>
</APermissionGuard>
</template>
...
...
@@ -198,9 +198,9 @@ const { t } = useI18n()
const
fileStore
=
useFilesStore
()
const
playlistStore
=
usePlaylistStore
()
const
GetStreamUrl
=
createTemplatePromise
<
string
>
()
const
GetFileImportUrl
=
createTemplatePromise
<
string
>
()
const
GetInputUrl
=
createTemplatePromise
<
string
>
()
const
GetStreamUrl
=
createTemplatePromise
<
string
|
null
>
()
const
GetFileImportUrl
=
createTemplatePromise
<
string
|
null
>
()
const
GetInputUrl
=
createTemplatePromise
<
string
|
null
>
()
const
entries
=
useCopy
(()
=>
props
.
playlist
?.
entries
??
[],
{
save
:
()
=>
updatePlaylistEntries
(),
...
...
@@ -287,6 +287,7 @@ async function uploadFiles(files: File[]) {
async
function
importFileFromURL
()
{
const
fileUrl
=
await
GetFileImportUrl
.
start
()
if
(
!
fileUrl
)
return
const
tankFile
=
await
fileStore
.
importFileURL
(
fileUrl
,
props
.
show
,
{
onDone
:
(
tankFile
)
=>
uploadedFiles
.
value
.
delete
(
tankFile
.
id
),
onCreate
:
(
tankFile
)
=>
{
...
...
@@ -313,11 +314,13 @@ async function addFileToPlaylist(...files: TankFile[]) {
async
function
addStreamToPlaylist
()
{
const
streamURL
=
await
GetStreamUrl
.
start
()
if
(
!
streamURL
)
return
await
updatePlaylistEntries
({
uri
:
streamURL
})
}
async
function
addInputToPlaylist
()
{
const
inputUrl
=
await
GetInputUrl
.
start
()
if
(
!
inputUrl
)
return
await
updatePlaylistEntries
({
uri
:
inputUrl
})
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment