Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
play
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
play
Commits
a37f462f
Commit
a37f462f
authored
2 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
feat: optionally render link in programme table
parent
aa4dcf1d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/Programme.svelte
+2
-0
2 additions, 0 deletions
src/components/Programme.svelte
src/paper/ProgrammePaper.svelte
+18
-15
18 additions, 15 deletions
src/paper/ProgrammePaper.svelte
with
20 additions
and
15 deletions
src/components/Programme.svelte
+
2
−
0
View file @
a37f462f
...
...
@@ -19,6 +19,7 @@
export
let
refreshTime
=
'
60
'
export
let
view
=
'
card
'
// 'card' or 'paper'
/* Nested Component Props */
export
let
renderLinks
=
true
export
let
renderhtml
=
false
// Attention: to avoid XSS attack vectors use with trusted API sources only
export
let
displayCatTitle
=
false
export
let
displayCatIcons
=
false
...
...
@@ -131,6 +132,7 @@
{
programme
}
{
urlEpisodeDetail
}
{
urlShowDetail
}
{
renderLinks
}
{
renderhtml
}
/>
</div>
{
:
else
}
...
...
This diff is collapsed.
Click to expand it.
src/paper/ProgrammePaper.svelte
+
18
−
15
View file @
a37f462f
...
...
@@ -7,6 +7,7 @@
export
let
programme
=
undefined
export
let
urlEpisodeDetail
=
undefined
export
let
urlShowDetail
=
undefined
export
let
renderLinks
=
true
export
let
renderhtml
=
false
</script>
...
...
@@ -22,16 +23,17 @@
background-color
:
var
(
--mdc-theme-primary
);
color
:
var
(
--mdc-theme-text-secondary-on-background
);
}
.episode.active
a
{
color
:
var
(
--mdc-theme-text-primary-on-background
);
}
.episode.active
>
.episode-time
:after
{
content
:
'NOW'
;
font-weight
:
bold
;
}
/*
SMUI
components need to be selected via global namespace */
/*
sub-
components need to be selected via global namespace */
:global
(
.episode.active
a
)
{
color
:
var
(
--mdc-theme-text-primary-on-background
);
}
*
:global
(
.episode.active
>
.episode-time
.time-start
)
{
display
:
none
;
}
...
...
@@ -60,20 +62,21 @@
<div
class=
"details-wrapper"
>
<div
class=
"episode-title"
>
{
#if
episode
.
customUrl
}
<a
href=
{
episode
.
customUrl
}
>
<Display
value=
{
episode
.
note_title
}
{
renderhtml
}
/>
</a>
<Display
value=
{
episode
.
note_title
}
url=
{
renderLinks
?
episode
.
customUrl
:
null
}
{
renderhtml
}
/>
{
:else
if
hasEpisodeTitle
(
episode
)
}
<!-- #FIXME "emmission_ID" should be "timeslot_id", "episode_id" or "id" only -->
<a
href=
{
urlEpisodeDetail
+
episode
.
emission_ID
}
>
<Display
value=
{
episode
.
title
}
{
renderhtml
}
/>
</a>
<Display
value=
{
episode
.
title
}
url=
{
renderLinks
?
urlEpisodeDetail
+
episode
.
emission_ID
:
null
}
{
renderhtml
}
/>
{
:
else
}
<a
href=
{
urlShowDetail
+
episode
.
show
.
slug
}
>
<Display
value=
{
episode
.
show
?
episode
.
show
.
name
:
''
}
{
renderhtml
}
/>
</a>
<Display
value=
{
episode
.
show
?
episode
.
show
.
name
:
''
}
url=
{
renderLinks
?
urlShowDetail
+
episode
.
show
.
slug
:
null
}
{
renderhtml
}
/>
{
/if
}
</div>
<div
class=
"episode-tagline"
>
...
...
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