summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/player/components.inline
diff options
context:
space:
mode:
Diffstat (limited to 'animism-align/frontend/app/views/viewer/player/components.inline')
-rw-r--r--animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js23
1 files changed, 11 insertions, 12 deletions
diff --git a/animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js b/animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js
index 17d0990..59d1ff5 100644
--- a/animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js
+++ b/animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js
@@ -47,13 +47,12 @@ const ScheduleComponent = ({ episodes }) => {
<i>Animism</i>
{' on '}
<a href="https://e-flux.com/">e-flux.com</a>
- {' is the ninth iteration of the exhibition and overall '}
- {'research project presented at Museum of Contemporary Art Antwerp (M HKA) and Extra City, '}
- {'Antwerp, 2010, Kunsthalle Bern, 2010, '}
- {'Generali Foundation, Vienna, 2011, Haus der Kulturen der Welt, '}
- {'Berlin, 2012, e-flux, New York, 2012, OCT Contemporary Art Terminal (OCAT) Shenzhen, 2013, '}
- {'Ilmin Museum of Art, Seoul, 2013, '}
- {'and Ashkal Alwan, Beirut, 2014.'}
+ {' '}
+ {'is the ninth iteration of the exhibition and overall research project presented at Museum of '}
+ {'Contemporary Art Antwerp (M HKA) and Extra City, Antwerp, 2010; Kunsthalle Bern, 2010; Generali '}
+ {'Foundation, Vienna, 2011; Haus der Kulturen der Welt, Berlin, 2012; e-flux, New York, 2012; OCT '}
+ {'Contemporary Art Terminal (OCAT) Shenzhen, 2013; Ilmin Museum of Art, Seoul, 2013; and Ashkal '}
+ {'Alwan, Beirut, 2014.'}
<br/><br/>
{'Presented here in its digital iteration, '}
{'the exhibition will be released in four episodes starting October 2020.'}
@@ -63,6 +62,7 @@ const ScheduleComponent = ({ episodes }) => {
{episodes.order.map(id => {
const episode = episodes.lookup[id]
const isOpen = episode.id === open
+ const hasTitle = !!episode.title && episode.title !== "TBD"
let className = 'schedule-row'
if (episode.is_live) {
className += ' active'
@@ -82,14 +82,13 @@ const ScheduleComponent = ({ episodes }) => {
{episode.release_date}
</div>
<div className='schedule-title'>
- {'Episode '}{episode.episode_number}{': '}
- <i>{episode.title}</i>
+ {'Episode '}{episode.episode_number}
+ {hasTitle && ': '}
+ {hasTitle && <i>{episode.title}</i>}
</div>
{episode.is_live && <Arrow type={isOpen ? 'up' : 'down'} />}
</div>
- {isOpen &&
- <ArtistColumns artists={episode.settings.artists} />
- }
+ <ArtistColumns artists={episode.settings.artists} />
</div>
)
})}