mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 05:18:34 +03:00
Use tag arrays in events, no longer strings
This commit is contained in:
@@ -19,7 +19,7 @@ function SourceOverlay ({ source, onCancel }) {
|
||||
<Img
|
||||
className='source-image'
|
||||
src={path}
|
||||
loader={<Spinner />}
|
||||
loader={<div style={{ width: '400px', height: '400px' }}><Spinner /></div>}
|
||||
unloader={<NoSource failedUrls={source.paths} />}
|
||||
/>
|
||||
</div>
|
||||
@@ -107,8 +107,8 @@ function SourceOverlay ({ source, onCancel }) {
|
||||
return (
|
||||
<div>
|
||||
{img ? img : ''}
|
||||
{vid ? `, ${vid}`: ''}
|
||||
{txt ? `, ${txt}`: ''}
|
||||
{(img && vid) ? `, ${vid}`: (vid || '')}
|
||||
{((img || vid) && txt) ? `, ${txt}`: (txt || '')}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -145,6 +145,7 @@ function SourceOverlay ({ source, onCancel }) {
|
||||
<div className="mo-box">
|
||||
{title? <p><b>{title}</b></p> : null}
|
||||
<div>{_renderCounts(counts)}</div>
|
||||
<hr />
|
||||
{type ? <h4>Media type</h4> : null}
|
||||
{type ? <p><i className="material-icons left">perm_media</i>{type}</p> : null}
|
||||
{date ? <h4>Date</h4> : null}
|
||||
|
||||
@@ -22,7 +22,7 @@ class TagListPanel extends React.Component {
|
||||
|
||||
onClickCheckbox(tag) {
|
||||
tag.active = !tag.active
|
||||
this.props.filter(tag);
|
||||
this.props.onFilter(tag);
|
||||
}
|
||||
|
||||
createNodeComponent (node, depth) {
|
||||
|
||||
@@ -81,7 +81,7 @@ class Toolbar extends React.Component {
|
||||
categories={this.props.categories}
|
||||
tagFilters={this.props.tagFilters}
|
||||
categoryFilters={this.props.categoryFilters}
|
||||
filter={this.props.filter}
|
||||
onFilter={this.props.methods.onFilter}
|
||||
language={this.props.language}
|
||||
/>
|
||||
</TabPanel>
|
||||
@@ -90,13 +90,13 @@ class Toolbar extends React.Component {
|
||||
return '';
|
||||
}
|
||||
|
||||
renderToolbarTab(_selected, label) {
|
||||
renderToolbarTab(_selected, label, icon_key) {
|
||||
const isActive = (this.state._selected === _selected);
|
||||
let classes = (isActive) ? 'toolbar-tab active' : 'toolbar-tab';
|
||||
|
||||
return (
|
||||
<div className={classes} onClick={() => { this.selectTab(_selected); }}>
|
||||
<i className="material-icons">timeline</i>
|
||||
<i className="material-icons">{icon_key}</i>
|
||||
<div className="tab-caption">{label}</div>
|
||||
</div>
|
||||
);
|
||||
@@ -104,7 +104,7 @@ class Toolbar extends React.Component {
|
||||
|
||||
renderToolbarTabs() {
|
||||
const title = copy[this.props.language].toolbar.title;
|
||||
const isTags = this.props.tags && (this.props.tags.children > 0);
|
||||
const isTags = this.props.tags && (Object.keys(this.props.tags.children) > 0);
|
||||
|
||||
return (
|
||||
<div className="toolbar">
|
||||
@@ -125,7 +125,7 @@ class Toolbar extends React.Component {
|
||||
{this.renderClosePanel()}
|
||||
<Tabs selectedIndex={this.state._selected}>
|
||||
{this.renderToolbarNarrativePanel()}
|
||||
{/* {this.renderToolbarTagPanel()} */}
|
||||
{this.renderToolbarTagPanel()}}
|
||||
</Tabs>
|
||||
</div>
|
||||
)
|
||||
@@ -150,15 +150,15 @@ class Toolbar extends React.Component {
|
||||
|
||||
renderToolbarTabs() {
|
||||
const title = copy[this.props.language].toolbar.title;
|
||||
const isTags = this.props.tags && (this.props.tags.children > 0);
|
||||
const isTags = this.props.tags && this.props.tags.children;
|
||||
|
||||
return (
|
||||
<div className="toolbar">
|
||||
<div className="toolbar-header"><p>{title}</p></div>
|
||||
<div className="toolbar-tabs">
|
||||
{/*this.renderToolbarTab(0, 'search')*/}
|
||||
{this.renderToolbarTab(0, 'Narratives')}
|
||||
{(isTags) ? this.renderToolbarTab(1, 'Explore by tag') : ''}
|
||||
{this.renderToolbarTab(0, 'Narratives', 'timeline')}
|
||||
{(isTags) ? this.renderToolbarTab(1, 'Explore by tag', 'style') : ''}
|
||||
</div>
|
||||
<ToolbarBottomActions
|
||||
sites={{
|
||||
|
||||
@@ -13,7 +13,7 @@ const eventSchema = Joi.object().keys({
|
||||
category: Joi.string().required(),
|
||||
narratives: Joi.array(),
|
||||
sources: Joi.array(),
|
||||
tags: Joi.string().allow(''),
|
||||
tags: Joi.array().allow(''),
|
||||
comments: Joi.string().allow(''),
|
||||
timestamp: Joi.string().required(),
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@ $panel-width: 800px;
|
||||
$panel-height: 700px;
|
||||
$vimeo-width: $panel-width - 100;
|
||||
$vimeo-height: $panel-height / 2;
|
||||
|
||||
$padding: 20px;
|
||||
$header-inset: 10px;
|
||||
|
||||
@@ -21,7 +20,6 @@ $header-inset: 10px;
|
||||
}
|
||||
|
||||
.mo-container {
|
||||
background-color: rgba(239, 239, 239, 0.9);
|
||||
// max-width: $panel-width;
|
||||
// min-width: $panel-width;
|
||||
// max-height: $panel-height;
|
||||
@@ -29,7 +27,7 @@ $header-inset: 10px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
height: 80vh;
|
||||
max-height: 80vh;
|
||||
max-width: 90vw;
|
||||
box-shadow: 0 19px 19px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
|
||||
|
||||
@@ -37,8 +35,35 @@ $header-inset: 10px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
.mo-header {
|
||||
min-height: 42px;
|
||||
max-height: 42px;
|
||||
margin-bottom: 2px;
|
||||
border-radius: 2px;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
background-color: black;
|
||||
color: white;
|
||||
|
||||
.mo-header-close {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-left: $header-inset + 8px;
|
||||
}
|
||||
|
||||
.mo-header-text {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
padding-right: $padding;
|
||||
font-family: "Lato", Helvetica, sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -69,6 +94,7 @@ $header-inset: 10px;
|
||||
}
|
||||
|
||||
.mo-media-container {
|
||||
background-color: rgba(239, 239, 239, 0.9);
|
||||
box-sizing: border-box;
|
||||
min-width: 100%;
|
||||
max-height: 60vh;
|
||||
@@ -93,6 +119,13 @@ $header-inset: 10px;
|
||||
}
|
||||
|
||||
.mo-meta-container {
|
||||
background-color: rgba(239, 239, 239, 0.9);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
min-height: 100px;
|
||||
min-width: $panel-width;
|
||||
max-width: $panel-height;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
@@ -191,9 +224,8 @@ $header-inset: 10px;
|
||||
}
|
||||
|
||||
.source-image-container, .source-text-container {
|
||||
padding: 0 10em;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
padding: $padding;
|
||||
display: inline-block;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
|
||||
@@ -198,6 +198,10 @@
|
||||
stroke-dasharray: 1px 2px;
|
||||
}
|
||||
|
||||
.datetime {
|
||||
/*transition: transform 0.2s ease;*/
|
||||
}
|
||||
|
||||
.event {
|
||||
cursor: pointer;
|
||||
opacity: .7;
|
||||
@@ -212,6 +216,7 @@
|
||||
stroke: $offwhite;
|
||||
stroke-width: 2;
|
||||
stroke-dasharray: 5px 2px;
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
.coevent {
|
||||
|
||||
@@ -33,8 +33,7 @@ export const getTimeRange = state => state.app.filters.timerange
|
||||
*/
|
||||
function isTaggedIn(event, tagFilters) {
|
||||
if (event.tags) {
|
||||
const tagsInEvent = event.tags.split(",")
|
||||
const isTagged = tagsInEvent.some((tag) => {
|
||||
const isTagged = event.tags.some((tag) => {
|
||||
return tagFilters.find(tF => (tF.key === tag && tF.active))
|
||||
})
|
||||
return isTagged
|
||||
|
||||
Reference in New Issue
Block a user