add rightclick context menu events on tags
This commit is contained in:
		@@ -70,7 +70,7 @@ class PopupBase extends React.Component<props> {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Alert if clicked on outside of element
 | 
			
		||||
     * handle click on outside of element
 | 
			
		||||
     */
 | 
			
		||||
    handleClickOutside(event: MouseEvent): void {
 | 
			
		||||
        if (this.wrapperRef && this.wrapperRef.current && !this.wrapperRef.current.contains(event.target as Node)) {
 | 
			
		||||
 
 | 
			
		||||
@@ -72,7 +72,7 @@ class Preview extends React.Component<PreviewProps, PreviewState> {
 | 
			
		||||
 | 
			
		||||
    popupvisible(): JSX.Element {
 | 
			
		||||
        if (this.state.optionsvisible)
 | 
			
		||||
            return (<QuickActionPop>heeyyho</QuickActionPop>);
 | 
			
		||||
            return (<QuickActionPop position={{x: 50, y: 50}} onHide={(): void => this.setState({optionsvisible: false})}>heeyyho</QuickActionPop>);
 | 
			
		||||
        else
 | 
			
		||||
            return <></>;
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
@@ -1,24 +1,50 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import style from './QuickActionPopup.module.css'
 | 
			
		||||
import React, {RefObject} from 'react';
 | 
			
		||||
import style from './QuickActionPopup.module.css';
 | 
			
		||||
 | 
			
		||||
interface props {
 | 
			
		||||
 | 
			
		||||
    position: {
 | 
			
		||||
        x: number,
 | 
			
		||||
        y: number
 | 
			
		||||
    },
 | 
			
		||||
    onHide: () => void
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
class QuickActionPop extends React.Component<props> {
 | 
			
		||||
    private readonly wrapperRef: RefObject<HTMLDivElement>;
 | 
			
		||||
 | 
			
		||||
    constructor(props: props) {
 | 
			
		||||
        super(props);
 | 
			
		||||
 | 
			
		||||
        this.state = {};
 | 
			
		||||
        this.wrapperRef = React.createRef();
 | 
			
		||||
 | 
			
		||||
        this.handleClickOutside = this.handleClickOutside.bind(this);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    componentDidMount(): void {
 | 
			
		||||
        document.addEventListener('mousedown', this.handleClickOutside);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    componentWillUnmount(): void {
 | 
			
		||||
        document.removeEventListener('mousedown', this.handleClickOutside);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    render(): JSX.Element {
 | 
			
		||||
        return (
 | 
			
		||||
            <div className={style.quickaction}>
 | 
			
		||||
                <div onClick={():void => {console.log('clicked');}}>testi</div>testi
 | 
			
		||||
            <div ref={this.wrapperRef} className={style.quickaction} style={{top: this.props.position.y, left: this.props.position.x}}>
 | 
			
		||||
                {this.props.children}
 | 
			
		||||
            </div>
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * trigger hide if we click outside the div
 | 
			
		||||
     */
 | 
			
		||||
    handleClickOutside(event: MouseEvent): void {
 | 
			
		||||
        if (this.wrapperRef && this.wrapperRef.current && !this.wrapperRef.current.contains(event.target as Node)) {
 | 
			
		||||
            this.props.onHide();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default QuickActionPop;
 | 
			
		||||
 
 | 
			
		||||
@@ -4,5 +4,4 @@
 | 
			
		||||
    height: 120px;
 | 
			
		||||
    z-index: 2;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,18 +1,33 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import React, {SyntheticEvent} from 'react';
 | 
			
		||||
 | 
			
		||||
import styles from './Tag.module.css';
 | 
			
		||||
import {Link} from 'react-router-dom';
 | 
			
		||||
import {TagType} from '../../types/VideoTypes';
 | 
			
		||||
 | 
			
		||||
interface props {
 | 
			
		||||
    onclick?: (_: string) => void
 | 
			
		||||
    tagInfo: TagType
 | 
			
		||||
    onclick?: (_: string) => void;
 | 
			
		||||
    tagInfo: TagType;
 | 
			
		||||
    onContextMenu?: (pos: {x: number, y: number}) => void
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
interface state {
 | 
			
		||||
    contextVisible: boolean
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * A Component representing a single Category tag
 | 
			
		||||
 */
 | 
			
		||||
class Tag extends React.Component<props> {
 | 
			
		||||
class Tag extends React.Component<props, state> {
 | 
			
		||||
    constructor(props: Readonly<props> | props) {
 | 
			
		||||
        super(props);
 | 
			
		||||
 | 
			
		||||
        this.state = {
 | 
			
		||||
            contextVisible: false
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        this.contextmenu = this.contextmenu.bind(this);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    render(): JSX.Element {
 | 
			
		||||
        if (this.props.onclick) {
 | 
			
		||||
            return this.renderButton();
 | 
			
		||||
@@ -27,7 +42,9 @@ class Tag extends React.Component<props> {
 | 
			
		||||
 | 
			
		||||
    renderButton(): JSX.Element {
 | 
			
		||||
        return (
 | 
			
		||||
            <button className={styles.tagbtn} onClick={(): void => this.TagClick()}
 | 
			
		||||
            <button className={styles.tagbtn}
 | 
			
		||||
                    onClick={(): void => this.TagClick()}
 | 
			
		||||
                    onContextMenu={this.contextmenu}
 | 
			
		||||
                    data-testid='Test-Tag'>{this.props.tagInfo.tag_name}</button>
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
@@ -42,6 +59,20 @@ class Tag extends React.Component<props> {
 | 
			
		||||
            return;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * handle a custom contextmenu for this item
 | 
			
		||||
     * @param e
 | 
			
		||||
     * @private
 | 
			
		||||
     */
 | 
			
		||||
    private contextmenu(e: SyntheticEvent): void {
 | 
			
		||||
        if (!this.props.onContextMenu) return;
 | 
			
		||||
 | 
			
		||||
        const event = e as unknown as PointerEvent;
 | 
			
		||||
        event.preventDefault();
 | 
			
		||||
        this.props.onContextMenu({x: event.clientX, y: event.clientY});
 | 
			
		||||
        // this.setState({contextVisible: true});
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default Tag;
 | 
			
		||||
 
 | 
			
		||||
@@ -12,7 +12,7 @@ import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
 | 
			
		||||
import {faPlusCircle} from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import AddActorPopup from '../../elements/Popups/AddActorPopup/AddActorPopup';
 | 
			
		||||
import ActorTile from '../../elements/ActorTile/ActorTile';
 | 
			
		||||
import {withRouter} from 'react-router-dom';
 | 
			
		||||
import {Link, withRouter} from 'react-router-dom';
 | 
			
		||||
import {callAPI, getBackendDomain} from '../../utils/Api';
 | 
			
		||||
import {RouteComponentProps} from 'react-router';
 | 
			
		||||
import {GeneralSuccess} from '../../types/GeneralTypes';
 | 
			
		||||
@@ -20,6 +20,7 @@ import {ActorType, TagType} from '../../types/VideoTypes';
 | 
			
		||||
import PlyrJS from 'plyr';
 | 
			
		||||
import {Button} from '../../elements/GPElements/Button';
 | 
			
		||||
import {VideoTypes} from '../../types/ApiTypes';
 | 
			
		||||
import QuickActionPop from '../../elements/QuickActionPop/QuickActionPop';
 | 
			
		||||
 | 
			
		||||
interface myprops extends RouteComponentProps<{ id: string }> {}
 | 
			
		||||
 | 
			
		||||
@@ -34,7 +35,8 @@ interface mystate {
 | 
			
		||||
    suggesttag: TagType[],
 | 
			
		||||
    popupvisible: boolean,
 | 
			
		||||
    actorpopupvisible: boolean,
 | 
			
		||||
    actors: ActorType[]
 | 
			
		||||
    actors: ActorType[],
 | 
			
		||||
    tagContextMenu: boolean
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
@@ -42,7 +44,7 @@ interface mystate {
 | 
			
		||||
 * and actions such as tag adding and liking
 | 
			
		||||
 */
 | 
			
		||||
export class Player extends React.Component<myprops, mystate> {
 | 
			
		||||
    options: PlyrJS.Options = {
 | 
			
		||||
    private options: PlyrJS.Options = {
 | 
			
		||||
        controls: [
 | 
			
		||||
            'play-large', // The large play button in the center
 | 
			
		||||
            'play', // Play/pause playback
 | 
			
		||||
@@ -59,10 +61,13 @@ export class Player extends React.Component<myprops, mystate> {
 | 
			
		||||
        ]
 | 
			
		||||
    };
 | 
			
		||||
 | 
			
		||||
    private contextpos = {x: 0, y: 0};
 | 
			
		||||
 | 
			
		||||
    constructor(props: myprops) {
 | 
			
		||||
        super(props);
 | 
			
		||||
 | 
			
		||||
        this.state = {
 | 
			
		||||
            tagContextMenu: false,
 | 
			
		||||
            movie_id: -1,
 | 
			
		||||
            movie_name: '',
 | 
			
		||||
            likes: 0,
 | 
			
		||||
@@ -148,7 +153,10 @@ export class Player extends React.Component<myprops, mystate> {
 | 
			
		||||
                <Line/>
 | 
			
		||||
                <SideBarTitle>Tags:</SideBarTitle>
 | 
			
		||||
                {this.state.tags.map((m: TagType) => (
 | 
			
		||||
                    <Tag tagInfo={m}/>
 | 
			
		||||
                    <Tag tagInfo={m} onContextMenu={(pos): void => {
 | 
			
		||||
                        this.setState({tagContextMenu: true});
 | 
			
		||||
                        this.contextpos = pos;
 | 
			
		||||
                    }}/>
 | 
			
		||||
                ))}
 | 
			
		||||
                <Line/>
 | 
			
		||||
                <SideBarTitle>Tag Quickadd:</SideBarTitle>
 | 
			
		||||
@@ -232,6 +240,8 @@ export class Player extends React.Component<myprops, mystate> {
 | 
			
		||||
                            this.setState({actorpopupvisible: false});
 | 
			
		||||
                        }} movie_id={this.state.movie_id}/> : null
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                {this.renderContextMenu()}
 | 
			
		||||
            </>
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
@@ -319,6 +329,23 @@ export class Player extends React.Component<myprops, mystate> {
 | 
			
		||||
            this.setState({actors: result});
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * render the Tag context menu
 | 
			
		||||
     */
 | 
			
		||||
    private renderContextMenu(): JSX.Element {
 | 
			
		||||
        if (this.state.tagContextMenu) {
 | 
			
		||||
            return (
 | 
			
		||||
                <QuickActionPop onHide={(): void => this.setState({tagContextMenu: false})}
 | 
			
		||||
                                position={this.contextpos}>
 | 
			
		||||
                    <Button title='Delete'
 | 
			
		||||
                            color={{backgroundColor: 'red'}}
 | 
			
		||||
                            onClick={(): void => {}}/>
 | 
			
		||||
                </QuickActionPop>);
 | 
			
		||||
        } else {
 | 
			
		||||
            return <></>;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default withRouter(Player);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user