Skip to content

[Review] Flatten configuration #150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 31, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions draft-js-dnd-plugin/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,10 @@ const uploadPlugin = (config = {}) => {
};

return {
pluginProps: {
onChange: cleanupEmpty,
blockRendererFn: blockRendererFn(blockRendererConfig),
handleDroppedFiles: onDropFile(blockRendererConfig),
handleDrop: onDropBlock(blockRendererConfig),
},
onChange: cleanupEmpty,
blockRendererFn: blockRendererFn(blockRendererConfig),
handleDroppedFiles: onDropFile(blockRendererConfig),
handleDrop: onDropBlock(blockRendererConfig),
addListener: emitter.addListener,
removeListener: emitter.removeListener,
};
Expand Down
80 changes: 39 additions & 41 deletions draft-js-emoji-plugin/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,50 +56,48 @@ const emojiPlugin = (config = {}) => {
theme,
};
return {
pluginProps: {
decorators: [
{
strategy: emojiStrategy,
component: decorateComponentWithProps(Emoji, { theme }),
},
{
strategy: emojiSearchStrategy,
component: decorateComponentWithProps(EmojiSearch, emojiSearchProps),
},
],

getEditorProps: () => {
const ariaHasPopup = ariaProps.ariaHasPopup.some((entry) => entry);
const ariaExpanded = ariaProps.ariaExpanded.some((entry) => entry);
return {
role: 'combobox',
ariaAutoComplete: 'list',
ariaHasPopup: ariaHasPopup ? 'true' : 'false',
ariaExpanded: ariaExpanded ? 'true' : 'false',
ariaActiveDescendantID: ariaProps.ariaActiveDescendantID.first(),
ariaOwneeID: ariaProps.ariaOwneeID.first(),
};
decorators: [
{
strategy: emojiStrategy,
component: decorateComponentWithProps(Emoji, { theme }),
},
{
strategy: emojiSearchStrategy,
component: decorateComponentWithProps(EmojiSearch, emojiSearchProps),
},
],

onDownArrow: (keyboardEvent) => callbacks.onDownArrow.forEach((onDownArrow) => onDownArrow(keyboardEvent)),
onTab: (keyboardEvent) => callbacks.onTab.forEach((onTab) => onTab(keyboardEvent)),
onUpArrow: (keyboardEvent) => callbacks.onUpArrow.forEach((onUpArrow) => onUpArrow(keyboardEvent)),
onEscape: (keyboardEvent) => callbacks.onEscape.forEach((onEscape) => onEscape(keyboardEvent)),
handleReturn: (keyboardEvent) => (
callbacks.handleReturn
.map((handleReturn) => handleReturn(keyboardEvent))
.find((result) => result === true)
),
onChange: (editorState) => {
let newEditorState = editorState;
if (callbacks.onChange.size !== 0) {
callbacks.onChange.forEach((onChange) => {
newEditorState = onChange(editorState);
});
}
getEditorProps: () => {
const ariaHasPopup = ariaProps.ariaHasPopup.some((entry) => entry);
const ariaExpanded = ariaProps.ariaExpanded.some((entry) => entry);
return {
role: 'combobox',
ariaAutoComplete: 'list',
ariaHasPopup: ariaHasPopup ? 'true' : 'false',
ariaExpanded: ariaExpanded ? 'true' : 'false',
ariaActiveDescendantID: ariaProps.ariaActiveDescendantID.first(),
ariaOwneeID: ariaProps.ariaOwneeID.first(),
};
},

return newEditorState;
},
onDownArrow: (keyboardEvent) => callbacks.onDownArrow.forEach((onDownArrow) => onDownArrow(keyboardEvent)),
onTab: (keyboardEvent) => callbacks.onTab.forEach((onTab) => onTab(keyboardEvent)),
onUpArrow: (keyboardEvent) => callbacks.onUpArrow.forEach((onUpArrow) => onUpArrow(keyboardEvent)),
onEscape: (keyboardEvent) => callbacks.onEscape.forEach((onEscape) => onEscape(keyboardEvent)),
handleReturn: (keyboardEvent) => (
callbacks.handleReturn
.map((handleReturn) => handleReturn(keyboardEvent))
.find((result) => result === true)
),
onChange: (editorState) => {
let newEditorState = editorState;
if (callbacks.onChange.size !== 0) {
callbacks.onChange.forEach((onChange) => {
newEditorState = onChange(editorState);
});
}

return newEditorState;
},
};
};
Expand Down
14 changes: 6 additions & 8 deletions draft-js-hashtag-plugin/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ const hashtagPlugin = (config = {}) => {
// breaking change. 1px of an increased padding can break a whole layout.
const theme = config.theme ? config.theme : defaultTheme;
return {
pluginProps: {
decorators: [
{
strategy: hashtagStrategy,
component: decorateComponentWithProps(Hashtag, { theme }),
},
],
},
decorators: [
{
strategy: hashtagStrategy,
component: decorateComponentWithProps(Hashtag, { theme }),
},
],
};
};

Expand Down
14 changes: 6 additions & 8 deletions draft-js-linkify-plugin/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,12 @@ const linkPlugin = (config = {}) => {
// breaking change. 1px of an increased padding can break a whole layout.
const theme = config.theme ? config.theme : defaultTheme;
return {
pluginProps: {
decorators: [
{
strategy: linkStrategy,
component: decorateComponentWithProps(Link, { theme }),
},
],
},
decorators: [
{
strategy: linkStrategy,
component: decorateComponentWithProps(Link, { theme }),
},
],
};
};

Expand Down
78 changes: 38 additions & 40 deletions draft-js-mention-plugin/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,49 +53,47 @@ const mentionPlugin = (config = {}) => {
theme,
};
return {
pluginProps: {
decorators: [
{
strategy: mentionStrategy,
component: decorateComponentWithProps(Mention, { theme }),
},
{
strategy: mentionSearchStrategy,
component: decorateComponentWithProps(MentionSearch, mentionSearchProps),
},
],
getEditorProps: () => {
const ariaHasPopup = ariaProps.ariaHasPopup.some((entry) => entry);
const ariaExpanded = ariaProps.ariaExpanded.some((entry) => entry);
return {
role: 'combobox',
ariaAutoComplete: 'list',
ariaHasPopup: ariaHasPopup ? 'true' : 'false',
ariaExpanded: ariaExpanded ? 'true' : 'false',
ariaActiveDescendantID: ariaProps.ariaActiveDescendantID.first(),
ariaOwneeID: ariaProps.ariaOwneeID.first(),
};
decorators: [
{
strategy: mentionStrategy,
component: decorateComponentWithProps(Mention, { theme }),
},
{
strategy: mentionSearchStrategy,
component: decorateComponentWithProps(MentionSearch, mentionSearchProps),
},
],
getEditorProps: () => {
const ariaHasPopup = ariaProps.ariaHasPopup.some((entry) => entry);
const ariaExpanded = ariaProps.ariaExpanded.some((entry) => entry);
return {
role: 'combobox',
ariaAutoComplete: 'list',
ariaHasPopup: ariaHasPopup ? 'true' : 'false',
ariaExpanded: ariaExpanded ? 'true' : 'false',
ariaActiveDescendantID: ariaProps.ariaActiveDescendantID.first(),
ariaOwneeID: ariaProps.ariaOwneeID.first(),
};
},

onDownArrow: (keyboardEvent) => callbacks.onDownArrow.forEach((onDownArrow) => onDownArrow(keyboardEvent)),
onTab: (keyboardEvent) => callbacks.onTab.forEach((onTab) => onTab(keyboardEvent)),
onUpArrow: (keyboardEvent) => callbacks.onUpArrow.forEach((onUpArrow) => onUpArrow(keyboardEvent)),
onEscape: (keyboardEvent) => callbacks.onEscape.forEach((onEscape) => onEscape(keyboardEvent)),
handleReturn: (keyboardEvent) => (
callbacks.handleReturn
.map((handleReturn) => handleReturn(keyboardEvent))
.find((result) => result === true)
),
onChange: (editorState) => {
let newEditorState = editorState;
if (callbacks.onChange.size !== 0) {
callbacks.onChange.forEach((onChange) => {
newEditorState = onChange(editorState);
});
}
onDownArrow: (keyboardEvent) => callbacks.onDownArrow.forEach((onDownArrow) => onDownArrow(keyboardEvent)),
onTab: (keyboardEvent) => callbacks.onTab.forEach((onTab) => onTab(keyboardEvent)),
onUpArrow: (keyboardEvent) => callbacks.onUpArrow.forEach((onUpArrow) => onUpArrow(keyboardEvent)),
onEscape: (keyboardEvent) => callbacks.onEscape.forEach((onEscape) => onEscape(keyboardEvent)),
handleReturn: (keyboardEvent) => (
callbacks.handleReturn
.map((handleReturn) => handleReturn(keyboardEvent))
.find((result) => result === true)
),
onChange: (editorState) => {
let newEditorState = editorState;
if (callbacks.onChange.size !== 0) {
callbacks.onChange.forEach((onChange) => {
newEditorState = onChange(editorState);
});
}

return newEditorState;
},
return newEditorState;
},
};
};
Expand Down
7 changes: 1 addition & 6 deletions draft-js-plugins-editor/src/Editor/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,10 @@ import moveToStartOfSelectedBlock from '../modifiers/moveToStartOfSelectedBlock'
import { List } from 'immutable';

export default class PluginEditor extends Component {

// TODO add flow types & propTypes - since it's a library and people might not use flow we want to have both

constructor(props) {
super(props);
this.plugins = List(props.plugins)
.filter((plugin) => plugin.pluginProps !== undefined)
.map((plugin) => plugin.pluginProps)
.toArray();
this.plugins = List(props.plugins).toArray();
const compositeDecorator = createCompositeDecorator(this.plugins, this.getEditorState, this.onChange);

// TODO consider triggering an onChange here to make sure the editorState is in sync
Expand Down
6 changes: 2 additions & 4 deletions draft-js-sticker-plugin/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,8 @@ const stickerPlugin = (config = {}) => {
Sticker: decorateComponentWithProps(Sticker, stickerProps),
};
return {
pluginProps: {
blockRendererFn: blockRendererFn(blockRendererConfig),
onChange: cleanupEmptyStickers,
},
blockRendererFn: blockRendererFn(blockRendererConfig),
onChange: cleanupEmptyStickers,
add: addSticker,
remove: removeSticker,
StickerSelect: decorateComponentWithProps(StickerSelect, stickerSelectProps),
Expand Down