bigbuffet-rw/app/soapbox/features/import_data/index.js

57 lines
2.1 KiB
JavaScript
Raw Normal View History

import React from 'react';
2020-09-27 10:24:38 -07:00
import { defineMessages, injectIntl } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
import PropTypes from 'prop-types';
import Column from '../ui/components/column';
import {
2020-09-27 10:24:38 -07:00
importFollows,
importBlocks,
// importMutes,
} from 'soapbox/actions/import_data';
import CSVImporter from './components/csv_importer';
const messages = defineMessages({
2020-09-27 09:18:25 -07:00
heading: { id: 'column.import_data', defaultMessage: 'Import data' },
2020-09-27 10:24:38 -07:00
submit: { id: 'import_data.actions.import', defaultMessage: 'Import' },
});
2020-09-27 10:24:38 -07:00
const followMessages = defineMessages({
input_label: { id: 'import_data.follows_label', defaultMessage: 'Follows' },
input_hint: { id: 'import_data.hints.follows', defaultMessage: 'CSV file containing a list of followed accounts' },
submit: { id: 'import_data.actions.import_follows', defaultMessage: 'Import follows' },
});
const blockMessages = defineMessages({
input_label: { id: 'import_data.blocks_label', defaultMessage: 'Blocks' },
input_hint: { id: 'import_data.hints.blocks', defaultMessage: 'CSV file containing a list of blocked accounts' },
submit: { id: 'import_data.actions.import_blocks', defaultMessage: 'Import blocks' },
});
// Not yet supported by Pleroma stable, in develop branch
// const muteMessages = defineMessages({
// input_label: { id: 'import_data.mutes_label', defaultMessage: 'Mutes' },
// input_hint: { id: 'import_data.hints.mutes', defaultMessage: 'CSV file containing a list of muted accounts' },
// submit: { id: 'import_data.actions.import_mutes', defaultMessage: 'Import mutes' },
// });
export default @injectIntl
2020-09-27 09:18:25 -07:00
class ImportData extends ImmutablePureComponent {
static propTypes = {
intl: PropTypes.object.isRequired,
};
render() {
const { intl } = this.props;
return (
2020-09-27 09:18:25 -07:00
<Column icon='cloud-upload' heading={intl.formatMessage(messages.heading)} backBtnSlim>
2020-09-27 10:24:38 -07:00
<CSVImporter action={importFollows} messages={followMessages} />
<CSVImporter action={importBlocks} messages={blockMessages} />
{/* <CSVImporter action={importMutes} messages={muteMessages} /> */}
</Column>
);
}
}