diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-11-09 21:06:34 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-11-09 21:06:34 +0100 |
| commit | 51767eeabfb4f2fbddc2f1c9e6f83f3b9c01e754 (patch) | |
| tree | 7f78274e6837d2655b158b50c39e61ac6cf58eac /animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js | |
| parent | cdfec268837e3e1b6c06588658bce998cd1ff67e (diff) | |
artists animation
Diffstat (limited to 'animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js')
| -rw-r--r-- | animism-align/frontend/app/views/viewer/player/components.inline/inline.utility.js | 23 |
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> ) })} |
