app
controllers
helpers
javascript
fonts
images
mastodon
actions
components
containers
features
account
account_gallery
account_timeline
blocks
community_timeline
compose
favourited_statuses
favourites
follow_requests
followers
following
generic_not_found
getting_started
hashtag_timeline
home_timeline
mutes
notifications
public_timeline
reblogs
report
status
ui
components
boost_modal.js
column.js
column_header.js
column_link.js
column_subheading.js
columns_area.js
confirmation_modal.js
image_loader.js
media_modal.js
modal_root.js
onboarding_modal.js
tabs_bar.js
upload_area.js
video_modal.js
containers
util
index.js
locales
middleware
reducers
selectors
store
.gitkeep
api.js
base_polyfills.js
emoji.js
extra_polyfills.js
is_mobile.js
link_header.js
load_polyfills.js
main.js
performance.js
rtl.js
scroll.js
stream.js
uuid.js
packs
styles
lib
mailers
models
policies
presenters
services
validators
views
workers
bin
config
db
docs
lib
log
nanobox
public
spec
storybook
streaming
vendor
.babelrc
.buildpacks
.codeclimate.yml
.dockerignore
.editorconfig
.env.nanobox
.env.production.sample
.env.test
.env.vagrant
.eslintignore
.eslintrc.yml
.foreman
.gitignore
.haml-lint.yml
.nanoignore
.nvmrc
.postcssrc.yml
.profile
.rspec
.rubocop.yml
.ruby-version
.scss-lint.yml
.slugignore
.travis.yml
Aptfile
CONTRIBUTING.md
Capfile
Dockerfile
Gemfile
Gemfile.lock
ISSUE_TEMPLATE.md
LICENSE
Procfile
Procfile.dev
README.md
Rakefile
Vagrantfile
app.json
boxfile.yml
config.ru
docker-compose.yml
docker_entrypoint.sh
package.json
scalingo.json
yarn.lock
* Add react/no-string-refs ESLint rule * Add react/jsx-boolean-value ESLint rule * Add react/jsx-closing-bracket-location ESLint rule * Add react/jsx-indent ESLint rule * Add react/jsx-curly-spacing ESLint rule * Add react/jsx-equals-spacing ESLint rule * Add react/jsx-first-prop-new-line ESLint rule * Add react/jsx-no-duplicate-props ESLint rule * Add react/jsx-tag-spacing ESLint rule
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import ColumnHeader from './column_header';
|
|
import PropTypes from 'prop-types';
|
|
import { debounce } from 'lodash';
|
|
import scrollTop from '../../../scroll';
|
|
|
|
class Column extends React.PureComponent {
|
|
|
|
static propTypes = {
|
|
heading: PropTypes.string,
|
|
icon: PropTypes.string,
|
|
children: PropTypes.node,
|
|
active: PropTypes.bool,
|
|
hideHeadingOnMobile: PropTypes.bool,
|
|
};
|
|
|
|
handleHeaderClick = () => {
|
|
const scrollable = this.node.querySelector('.scrollable');
|
|
|
|
if (!scrollable) {
|
|
return;
|
|
}
|
|
|
|
this._interruptScrollAnimation = scrollTop(scrollable);
|
|
}
|
|
|
|
handleScroll = debounce(() => {
|
|
if (typeof this._interruptScrollAnimation !== 'undefined') {
|
|
this._interruptScrollAnimation();
|
|
}
|
|
}, 200)
|
|
|
|
setRef = (c) => {
|
|
this.node = c;
|
|
}
|
|
|
|
render () {
|
|
const { heading, icon, children, active, hideHeadingOnMobile } = this.props;
|
|
|
|
let columnHeaderId = null;
|
|
let header = '';
|
|
|
|
if (heading) {
|
|
columnHeaderId = heading.replace(/ /g, '-');
|
|
header = <ColumnHeader icon={icon} active={active} type={heading} onClick={this.handleHeaderClick} hideOnMobile={hideHeadingOnMobile} columnHeaderId={columnHeaderId} />;
|
|
}
|
|
return (
|
|
<div
|
|
ref={this.setRef}
|
|
role='region'
|
|
aria-labelledby={columnHeaderId}
|
|
className='column'
|
|
onScroll={this.handleScroll}
|
|
>
|
|
{header}
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
export default Column;
|