commit
ef925f31a6
File diff suppressed because it is too large
Load Diff
@ -1,63 +0,0 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
|
||||
export default class ExtendedVideoPlayer extends React.PureComponent { |
||||
|
||||
static propTypes = { |
||||
src: PropTypes.string.isRequired, |
||||
alt: PropTypes.string, |
||||
width: PropTypes.number, |
||||
height: PropTypes.number, |
||||
time: PropTypes.number, |
||||
controls: PropTypes.bool.isRequired, |
||||
muted: PropTypes.bool.isRequired, |
||||
onClick: PropTypes.func, |
||||
}; |
||||
|
||||
handleLoadedData = () => { |
||||
if (this.props.time) { |
||||
this.video.currentTime = this.props.time; |
||||
} |
||||
} |
||||
|
||||
componentDidMount () { |
||||
this.video.addEventListener('loadeddata', this.handleLoadedData); |
||||
} |
||||
|
||||
componentWillUnmount () { |
||||
this.video.removeEventListener('loadeddata', this.handleLoadedData); |
||||
} |
||||
|
||||
setRef = (c) => { |
||||
this.video = c; |
||||
} |
||||
|
||||
handleClick = e => { |
||||
e.stopPropagation(); |
||||
const handler = this.props.onClick; |
||||
if (handler) handler(); |
||||
} |
||||
|
||||
render () { |
||||
const { src, muted, controls, alt } = this.props; |
||||
|
||||
return ( |
||||
<div className='extended-video-player'> |
||||
<video |
||||
ref={this.setRef} |
||||
src={src} |
||||
autoPlay |
||||
role='button' |
||||
tabIndex='0' |
||||
aria-label={alt} |
||||
title={alt} |
||||
muted={muted} |
||||
controls={controls} |
||||
loop={!controls} |
||||
onClick={this.handleClick} |
||||
/> |
||||
</div> |
||||
); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,75 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
|
||||
export default class GIFV extends React.PureComponent { |
||||
|
||||
static propTypes = { |
||||
src: PropTypes.string.isRequired, |
||||
alt: PropTypes.string, |
||||
width: PropTypes.number, |
||||
height: PropTypes.number, |
||||
onClick: PropTypes.func, |
||||
}; |
||||
|
||||
state = { |
||||
loading: true, |
||||
}; |
||||
|
||||
handleLoadedData = () => { |
||||
this.setState({ loading: false }); |
||||
} |
||||
|
||||
componentWillReceiveProps (nextProps) { |
||||
if (nextProps.src !== this.props.src) { |
||||
this.setState({ loading: true }); |
||||
} |
||||
} |
||||
|
||||
handleClick = e => { |
||||
const { onClick } = this.props; |
||||
|
||||
if (onClick) { |
||||
e.stopPropagation(); |
||||
onClick(); |
||||
} |
||||
} |
||||
|
||||
render () { |
||||
const { src, width, height, alt } = this.props; |
||||
const { loading } = this.state; |
||||
|
||||
return ( |
||||
<div className='gifv' style={{ position: 'relative' }}> |
||||
{loading && ( |
||||
<canvas |
||||
width={width} |
||||
height={height} |
||||
role='button' |
||||
tabIndex='0' |
||||
aria-label={alt} |
||||
title={alt} |
||||
onClick={this.handleClick} |
||||
/> |
||||
)} |
||||
|
||||
<video |
||||
src={src} |
||||
width={width} |
||||
height={height} |
||||
role='button' |
||||
tabIndex='0' |
||||
aria-label={alt} |
||||
title={alt} |
||||
muted |
||||
loop |
||||
autoPlay |
||||
playsInline |
||||
onClick={this.handleClick} |
||||
onLoadedData={this.handleLoadedData} |
||||
style={{ position: loading ? 'absolute' : 'static', top: 0, left: 0 }} |
||||
/> |
||||
</div> |
||||
); |
||||
} |
||||
|
||||
} |
@ -1,17 +1,24 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
import { FormattedMessage } from 'react-intl'; |
||||
import illustration from 'flavours/glitch/images/elephant_ui_disappointed.svg'; |
||||
import classNames from 'classnames'; |
||||
|
||||
const MissingIndicator = () => ( |
||||
<div className='regeneration-indicator missing-indicator'> |
||||
<div> |
||||
<div className='regeneration-indicator__figure' /> |
||||
const MissingIndicator = ({ fullPage }) => ( |
||||
<div className={classNames('regeneration-indicator', { 'regeneration-indicator--without-header': fullPage })}> |
||||
<div className='regeneration-indicator__figure'> |
||||
<img src={illustration} alt='' /> |
||||
</div> |
||||
|
||||
<div className='regeneration-indicator__label'> |
||||
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' /> |
||||
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' /> |
||||
</div> |
||||
<div className='regeneration-indicator__label'> |
||||
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' /> |
||||
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' /> |
||||
</div> |
||||
</div> |
||||
); |
||||
|
||||
MissingIndicator.propTypes = { |
||||
fullPage: PropTypes.bool, |
||||
}; |
||||
|
||||
export default MissingIndicator; |
||||
|
@ -0,0 +1,18 @@ |
||||
import React from 'react'; |
||||
import { FormattedMessage } from 'react-intl'; |
||||
import illustration from 'flavours/glitch/images/elephant_ui_working.svg'; |
||||
|
||||
const MissingIndicator = () => ( |
||||
<div className='regeneration-indicator'> |
||||
<div className='regeneration-indicator__figure'> |
||||
<img src={illustration} alt='' /> |
||||
</div> |
||||
|
||||
<div className='regeneration-indicator__label'> |
||||
<FormattedMessage id='regeneration_indicator.label' tagName='strong' defaultMessage='Loading…' /> |
||||
<FormattedMessage id='regeneration_indicator.sublabel' defaultMessage='Your home feed is being prepared!' /> |
||||
</div> |
||||
</div> |
||||
); |
||||
|
||||
export default MissingIndicator; |
@ -1,63 +0,0 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
|
||||
export default class ExtendedVideoPlayer extends React.PureComponent { |
||||
|
||||
static propTypes = { |
||||
src: PropTypes.string.isRequired, |
||||
alt: PropTypes.string, |
||||
width: PropTypes.number, |
||||
height: PropTypes.number, |
||||
time: PropTypes.number, |
||||
controls: PropTypes.bool.isRequired, |
||||
muted: PropTypes.bool.isRequired, |
||||
onClick: PropTypes.func, |
||||
}; |
||||
|
||||
handleLoadedData = () => { |
||||
if (this.props.time) { |
||||
this.video.currentTime = this.props.time; |
||||
} |
||||
} |
||||
|
||||
componentDidMount () { |
||||
this.video.addEventListener('loadeddata', this.handleLoadedData); |
||||
} |
||||
|
||||
componentWillUnmount () { |
||||
this.video.removeEventListener('loadeddata', this.handleLoadedData); |
||||
} |
||||
|
||||
setRef = (c) => { |
||||
this.video = c; |
||||
} |
||||
|
||||
handleClick = e => { |
||||
e.stopPropagation(); |
||||
const handler = this.props.onClick; |
||||
if (handler) handler(); |
||||
} |
||||
|
||||
render () { |
||||
const { src, muted, controls, alt } = this.props; |
||||
|
||||
return ( |
||||
<div className='extended-video-player'> |
||||
<video |
||||
ref={this.setRef} |
||||
src={src} |
||||
autoPlay |
||||
role='button' |
||||
tabIndex='0' |
||||
aria-label={alt} |
||||
title={alt} |
||||
muted={muted} |
||||
controls={controls} |
||||
loop={!controls} |
||||
onClick={this.handleClick} |
||||
/> |
||||
</div> |
||||
); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,75 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
|
||||
export default class GIFV extends React.PureComponent { |
||||
|
||||
static propTypes = { |
||||
src: PropTypes.string.isRequired, |
||||
alt: PropTypes.string, |
||||
width: PropTypes.number, |
||||
height: PropTypes.number, |
||||
onClick: PropTypes.func, |
||||
}; |
||||
|
||||
state = { |
||||
loading: true, |
||||
}; |
||||
|
||||
handleLoadedData = () => { |
||||
this.setState({ loading: false }); |
||||
} |
||||
|
||||
componentWillReceiveProps (nextProps) { |
||||
if (nextProps.src !== this.props.src) { |
||||
this.setState({ loading: true }); |
||||
} |
||||
} |
||||
|
||||
handleClick = e => { |
||||
const { onClick } = this.props; |
||||
|
||||
if (onClick) { |
||||
e.stopPropagation(); |
||||
onClick(); |
||||
} |
||||
} |
||||
|
||||
render () { |
||||
const { src, width, height, alt } = this.props; |
||||
const { loading } = this.state; |
||||
|
||||
return ( |
||||
<div className='gifv' style={{ position: 'relative' }}> |
||||
{loading && ( |
||||
<canvas |
||||
width={width} |
||||
height={height} |
||||
role='button' |
||||
tabIndex='0' |
||||
aria-label={alt} |
||||
title={alt} |
||||
onClick={this.handleClick} |
||||
/> |
||||
)} |
||||
|
||||
<video |
||||
src={src} |
||||
width={width} |
||||
height={height} |
||||
role='button' |
||||
tabIndex='0' |
||||
aria-label={alt} |
||||
title={alt} |
||||
muted |
||||
loop |
||||
autoPlay |
||||
playsInline |
||||
onClick={this.handleClick} |
||||
onLoadedData={this.handleLoadedData} |
||||
style={{ position: loading ? 'absolute' : 'static', top: 0, left: 0 }} |
||||
/> |
||||
</div> |
||||
); |
||||
} |
||||
|
||||
} |
@ -1,17 +1,24 @@ |
||||
import React from 'react'; |
||||
import PropTypes from 'prop-types'; |
||||
import { FormattedMessage } from 'react-intl'; |
||||
import illustration from 'mastodon/../images/elephant_ui_disappointed.svg'; |
||||
import classNames from 'classnames'; |
||||
|
||||
const MissingIndicator = () => ( |
||||
<div className='regeneration-indicator missing-indicator'> |
||||
<div> |
||||
<div className='regeneration-indicator__figure' /> |
||||
const MissingIndicator = ({ fullPage }) => ( |
||||
<div className={classNames('regeneration-indicator', { 'regeneration-indicator--without-header': fullPage })}> |
||||
<div className='regeneration-indicator__figure'> |
||||
<img src={illustration} alt='' /> |
||||
</div> |
||||
|
||||
<div className='regeneration-indicator__label'> |
||||
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' /> |
||||
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' /> |
||||
</div> |
||||
<div className='regeneration-indicator__label'> |
||||
<FormattedMessage id='missing_indicator.label' tagName='strong' defaultMessage='Not found' /> |
||||
<FormattedMessage id='missing_indicator.sublabel' defaultMessage='This resource could not be found' /> |
||||
</div> |
||||
</div> |
||||
); |
||||
|
||||
MissingIndicator.propTypes = { |
||||
fullPage: PropTypes.bool, |
||||
}; |
||||
|
||||
export default MissingIndicator; |
||||
|
@ -0,0 +1,18 @@ |
||||
import React from 'react'; |
||||
import { FormattedMessage } from 'react-intl'; |
||||
import illustration from 'mastodon/../images/elephant_ui_working.svg'; |
||||
|
||||
const MissingIndicator = () => ( |
||||
<div className='regeneration-indicator'> |
||||
<div className='regeneration-indicator__figure'> |
||||
<img src={illustration} alt='' /> |
||||
</div> |
||||
|
||||
<div className='regeneration-indicator__label'> |
||||
<FormattedMessage id='regeneration_indicator.label' tagName='strong' defaultMessage='Loading…' /> |
||||
<FormattedMessage id='regeneration_indicator.sublabel' defaultMessage='Your home feed is being prepared!' /> |
||||
</div> |
||||
</div> |
||||
); |
||||
|
||||
export default MissingIndicator; |
@ -1,3 +1,4 @@ |
||||
# frozen_string_literal: true |
||||
|
||||
require_relative '../../lib/json_ld/security' |
||||
require_relative '../../lib/json_ld/identity' |
||||
|
@ -0,0 +1,11 @@ |
||||
class UpdatePtLocales < ActiveRecord::Migration[5.2] |
||||
disable_ddl_transaction! |
||||
|
||||
def up |
||||
User.where(locale: 'pt').in_batches.update_all(locale: 'pt-PT') |
||||
end |
||||
|
||||
def down |
||||
User.where(locale: 'pt-PT').in_batches.update_all(locale: 'pt') |
||||
end |
||||
end |
@ -0,0 +1,87 @@ |
||||
# -*- encoding: utf-8 -*- |
||||
# frozen_string_literal: true |
||||
# This file generated automatically from http://w3id.org/identity/v1 |
||||
require 'json/ld' |
||||
class JSON::LD::Context |
||||
add_preloaded("http://w3id.org/identity/v1") do |
||||
new(term_definitions: { |
||||
"Credential" => TermDefinition.new("Credential", id: "https://w3id.org/credentials#Credential", simple: true), |
||||
"CryptographicKey" => TermDefinition.new("CryptographicKey", id: "https://w3id.org/security#Key", simple: true), |
||||
"CryptographicKeyCredential" => TermDefinition.new("CryptographicKeyCredential", id: "https://w3id.org/credentials#CryptographicKeyCredential", simple: true), |
||||
"EncryptedMessage" => TermDefinition.new("EncryptedMessage", id: "https://w3id.org/security#EncryptedMessage", simple: true), |
||||
"GraphSignature2012" => TermDefinition.new("GraphSignature2012", id: "https://w3id.org/security#GraphSignature2012", simple: true), |
||||
"Group" => TermDefinition.new("Group", id: "https://www.w3.org/ns/activitystreams#Group", simple: true), |
||||
"Identity" => TermDefinition.new("Identity", id: "https://w3id.org/identity#Identity", simple: true), |
||||
"LinkedDataSignature2015" => TermDefinition.new("LinkedDataSignature2015", id: "https://w3id.org/security#LinkedDataSignature2015", simple: true), |
||||
"Organization" => TermDefinition.new("Organization", id: "http://schema.org/Organization", simple: true), |
||||
"Person" => TermDefinition.new("Person", id: "http://schema.org/Person", simple: true), |
||||
"PostalAddress" => TermDefinition.new("PostalAddress", id: "http://schema.org/PostalAddress", simple: true), |
||||
"about" => TermDefinition.new("about", id: "http://schema.org/about", type_mapping: "@id"), |
||||
"accessControl" => TermDefinition.new("accessControl", id: "https://w3id.org/permissions#accessControl", type_mapping: "@id"), |
||||
"address" => TermDefinition.new("address", id: "http://schema.org/address", type_mapping: "@id"), |
||||
"addressCountry" => TermDefinition.new("addressCountry", id: "http://schema.org/addressCountry", simple: true), |
||||
"addressLocality" => TermDefinition.new("addressLocality", id: "http://schema.org/addressLocality", simple: true), |
||||
"addressRegion" => TermDefinition.new("addressRegion", id: "http://schema.org/addressRegion", simple: true), |
||||
"cipherAlgorithm" => TermDefinition.new("cipherAlgorithm", id: "https://w3id.org/security#cipherAlgorithm", simple: true), |
||||
"cipherData" => TermDefinition.new("cipherData", id: "https://w3id.org/security#cipherData", simple: true), |
||||
"cipherKey" => TermDefinition.new("cipherKey", id: "https://w3id.org/security#cipherKey", simple: true), |
||||
"claim" => TermDefinition.new("claim", id: "https://w3id.org/credentials#claim", type_mapping: "@id"), |
||||
"comment" => TermDefinition.new("comment", id: "http://www.w3.org/2000/01/rdf-schema#comment", simple: true), |
||||
"created" => TermDefinition.new("created", id: "http://purl.org/dc/terms/created", type_mapping: "http://www.w3.org/2001/XMLSchema#dateTime"), |
||||
"creator" => TermDefinition.new("creator", id: "http://purl.org/dc/terms/creator", type_mapping: "@id"), |
||||
"cred" => TermDefinition.new("cred", id: "https://w3id.org/credentials#", simple: true, prefix: true), |
||||
"credential" => TermDefinition.new("credential", id: "https://w3id.org/credentials#credential", type_mapping: "@id"), |
||||
"dc" => TermDefinition.new("dc", id: "http://purl.org/dc/terms/", simple: true, prefix: true), |
||||
"description" => TermDefinition.new("description", id: "http://schema.org/description", simple: true), |
||||
"digestAlgorithm" => TermDefinition.new("digestAlgorithm", id: "https://w3id.org/security#digestAlgorithm", simple: true), |
||||
"digestValue" => TermDefinition.new("digestValue", id: "https://w3id.org/security#digestValue", simple: true), |
||||
"domain" => TermDefinition.new("domain", id: "https://w3id.org/security#domain", simple: true), |
||||
"email" => TermDefinition.new("email", id: "http://schema.org/email", simple: true), |
||||
"expires" => TermDefinition.new("expires", id: "https://w3id.org/security#expiration", type_mapping: "http://www.w3.org/2001/XMLSchema#dateTime"), |
||||
"familyName" => TermDefinition.new("familyName", id: "http://schema.org/familyName", simple: true), |
||||
"givenName" => TermDefinition.new("givenName", id: "http://schema.org/givenName", simple: true), |
||||
"id" => TermDefinition.new("id", id: "@id", simple: true), |
||||
"identity" => TermDefinition.new("identity", id: "https://w3id.org/identity#", simple: true, prefix: true), |
||||
"identityService" => TermDefinition.new("identityService", id: "https://w3id.org/identity#identityService", type_mapping: "@id"), |
||||
"idp" => TermDefinition.new("idp", id: "https://w3id.org/identity#idp", type_mapping: "@id"), |
||||
"image" => TermDefinition.new("image", id: "http://schema.org/image", type_mapping: "@id"), |
||||
"initializationVector" => TermDefinition.new("initializationVector", id: "https://w3id.org/security#initializationVector", simple: true), |
||||
"issued" => TermDefinition.new("issued", id: "https://w3id.org/credentials#issued", type_mapping: "http://www.w3.org/2001/XMLSchema#dateTime"), |
||||
"issuer" => TermDefinition.new("issuer", id: "https://w3id.org/credentials#issuer", type_mapping: "@id"), |
||||
"label" => TermDefinition.new("label", id: "http://www.w3.org/2000/01/rdf-schema#label", simple: true), |
||||
"member" => TermDefinition.new("member", id: "http://schema.org/member", type_mapping: "@id"), |
||||
"memberOf" => TermDefinition.new("memberOf", id: "http://schema.org/memberOf", type_mapping: "@id"), |
||||
"name" => TermDefinition.new("name", id: "http://schema.org/name", simple: true), |
||||
"nonce" => TermDefinition.new("nonce", id: "https://w3id.org/security#nonce", simple: true), |
||||
"normalizationAlgorithm" => TermDefinition.new("normalizationAlgorithm", id: "https://w3id.org/security#normalizationAlgorithm", simple: true), |
||||
"owner" => TermDefinition.new("owner", id: "https://w3id.org/security#owner", type_mapping: "@id"), |
||||
"password" => TermDefinition.new("password", id: "https://w3id.org/security#password", simple: true), |
||||
"paymentProcessor" => TermDefinition.new("paymentProcessor", id: "https://w3id.org/payswarm#processor", simple: true), |
||||
"perm" => TermDefinition.new("perm", id: "https://w3id.org/permissions#", simple: true, prefix: true), |
||||
"postalCode" => TermDefinition.new("postalCode", id: "http://schema.org/postalCode", simple: true), |
||||
"preferences" => TermDefinition.new("preferences", id: "https://w3id.org/payswarm#preferences", type_mapping: "@vocab"), |
||||
"privateKey" => TermDefinition.new("privateKey", id: "https://w3id.org/security#privateKey", type_mapping: "@id"), |
||||
"privateKeyPem" => TermDefinition.new("privateKeyPem", id: "https://w3id.org/security#privateKeyPem", simple: true), |
||||
"ps" => TermDefinition.new("ps", id: "https://w3id.org/payswarm#", simple: true, prefix: true), |
||||
"publicKey" => TermDefinition.new("publicKey", id: "https://w3id.org/security#publicKey", type_mapping: "@id"), |
||||
"publicKeyPem" => TermDefinition.new("publicKeyPem", id: "https://w3id.org/security#publicKeyPem", simple: true), |
||||
"publicKeyService" => TermDefinition.new("publicKeyService", id: "https://w3id.org/security#publicKeyService", type_mapping: "@id"), |
||||
"rdf" => TermDefinition.new("rdf", id: "http://www.w3.org/1999/02/22-rdf-syntax-ns#", simple: true, prefix: true), |
||||
"rdfs" => TermDefinition.new("rdfs", id: "http://www.w3.org/2000/01/rdf-schema#", simple: true, prefix: true), |
||||
"recipient" => TermDefinition.new("recipient", id: "https://w3id.org/credentials#recipient", type_mapping: "@id"), |
||||
"revoked" => TermDefinition.new("revoked", id: "https://w3id.org/security#revoked", type_mapping: "http://www.w3.org/2001/XMLSchema#dateTime"), |
||||
"schema" => TermDefinition.new("schema", id: "http://schema.org/", simple: true, prefix: true), |
||||
"sec" => TermDefinition.new("sec", id: "https://w3id.org/security#", simple: true, prefix: true), |
||||
"signature" => TermDefinition.new("signature", id: "https://w3id.org/security#signature", simple: true), |
||||
"signatureAlgorithm" => TermDefinition.new("signatureAlgorithm", id: "https://w3id.org/security#signatureAlgorithm", simple: true), |
||||
"signatureValue" => TermDefinition.new("signatureValue", id: "https://w3id.org/security#signatureValue", simple: true), |
||||
"streetAddress" => TermDefinition.new("streetAddress", id: "http://schema.org/streetAddress", simple: true), |
||||
"title" => TermDefinition.new("title", id: "http://purl.org/dc/terms/title", simple: true), |
||||
"type" => TermDefinition.new("type", id: "@type", simple: true), |
||||
"url" => TermDefinition.new("url", id: "http://schema.org/url", type_mapping: "@id"), |
||||
"writePermission" => TermDefinition.new("writePermission", id: "https://w3id.org/permissions#writePermission", type_mapping: "@id"), |
||||
"xsd" => TermDefinition.new("xsd", id: "http://www.w3.org/2001/XMLSchema#", simple: true, prefix: true) |
||||
}) |
||||
end |
||||
alias_preloaded("https://w3id.org/identity/v1", "http://w3id.org/identity/v1") |
||||
end |
Loading…
Reference in new issue