webamp/js/components/PlaylistWindow/MiscOptionsContextMenu.tsx
Jordan Eldredge f2e317bf5b I'm a moron
2018-10-15 19:10:08 -07:00

30 lines
857 B
TypeScript

import React from "react";
import { connect } from "react-redux";
import { Node } from "../ContextMenu";
import ContextMenuTarget from "../ContextMenuTarget";
import { Dispatch } from "../../types";
import { downloadHtmlPlaylist } from "../../actionCreators";
interface DispatchProps {
downloadHtmlPlaylist: () => void;
}
const MiscOptionsContextMenu = (props: DispatchProps) => (
<ContextMenuTarget
style={{ width: "100%", height: "100%" }}
top
handle={<div />}
>
<Node onClick={props.downloadHtmlPlaylist} label="Generate HTML playlist" />
</ContextMenuTarget>
);
const mapDispatchToProps = (dispatch: Dispatch): DispatchProps => {
return {
downloadHtmlPlaylist: () => dispatch(downloadHtmlPlaylist())
};
};
export const ConnectedMiscOptionsContextMenu = connect(
null,
mapDispatchToProps
)(MiscOptionsContextMenu);