Compare commits
	
		
			11 Commits
		
	
	
		
			gallery
			...
			threedotso
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 20f29d9df6 | |||
| c13e758301 | |||
| 032b90a93d | |||
| 6b4267b50b | |||
| 219124c843 | |||
| 4de39ab471 | |||
| b5220634a2 | |||
| d59980460f | |||
| 4e52688ff9 | |||
| 009f21390e | |||
| 62d3e02645 | 
							
								
								
									
										84
									
								
								api/src/handlers/Tags.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										84
									
								
								api/src/handlers/Tags.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,84 @@
 | 
			
		||||
<?php
 | 
			
		||||
require_once 'RequestBase.php';
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Class Tags
 | 
			
		||||
 * backend to handle Tag database interactions
 | 
			
		||||
 */
 | 
			
		||||
class Tags extends RequestBase {
 | 
			
		||||
    function initHandlers() {
 | 
			
		||||
        $this->addToDB();
 | 
			
		||||
        $this->getFromDB();
 | 
			
		||||
        $this->delete();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private function addToDB() {
 | 
			
		||||
        /**
 | 
			
		||||
         * creates a new tag
 | 
			
		||||
         * query requirements:
 | 
			
		||||
         * * tagname -- name of the new tag
 | 
			
		||||
         */
 | 
			
		||||
        $this->addActionHandler("createTag", function () {
 | 
			
		||||
            // skip tag create if already existing
 | 
			
		||||
            $query = "INSERT IGNORE INTO tags (tag_name) VALUES ('" . $_POST['tagname'] . "')";
 | 
			
		||||
 | 
			
		||||
            if ($this->conn->query($query) === TRUE) {
 | 
			
		||||
                $this->commitMessage('{"result":"success"}');
 | 
			
		||||
            } else {
 | 
			
		||||
                $this->commitMessage('{"result":"' . $this->conn->error . '"}');
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        /**
 | 
			
		||||
         * adds a new tag to an existing video
 | 
			
		||||
         *
 | 
			
		||||
         * query requirements:
 | 
			
		||||
         * * movieid  -- the id of the video to add the tag to
 | 
			
		||||
         * * id -- the tag id which tag to add
 | 
			
		||||
         */
 | 
			
		||||
        $this->addActionHandler("addTag", function () {
 | 
			
		||||
            $movieid = $_POST['movieid'];
 | 
			
		||||
            $tagid = $_POST['id'];
 | 
			
		||||
 | 
			
		||||
            // skip tag add if already assigned
 | 
			
		||||
            $query = "INSERT IGNORE INTO video_tags(tag_id, video_id) VALUES ('$tagid','$movieid')";
 | 
			
		||||
 | 
			
		||||
            if ($this->conn->query($query) === TRUE) {
 | 
			
		||||
                $this->commitMessage('{"result":"success"}');
 | 
			
		||||
            } else {
 | 
			
		||||
                $this->commitMessage('{"result":"' . $this->conn->error . '"}');
 | 
			
		||||
            }
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private function getFromDB() {
 | 
			
		||||
        /**
 | 
			
		||||
         * returns all available tags from database
 | 
			
		||||
         */
 | 
			
		||||
        $this->addActionHandler("getAllTags", function () {
 | 
			
		||||
            $query = "SELECT tag_name,tag_id from tags";
 | 
			
		||||
            $result = $this->conn->query($query);
 | 
			
		||||
 | 
			
		||||
            $rows = array();
 | 
			
		||||
            while ($r = mysqli_fetch_assoc($result)) {
 | 
			
		||||
                array_push($rows, $r);
 | 
			
		||||
            }
 | 
			
		||||
            $this->commitMessage(json_encode($rows));
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private function delete() {
 | 
			
		||||
        /**
 | 
			
		||||
         * delete a Tag from a video
 | 
			
		||||
         */
 | 
			
		||||
        $this->addActionHandler("deleteVideoTag", function () {
 | 
			
		||||
            $movieid = $_POST['video_id'];
 | 
			
		||||
            $tagid = $_POST['tag_id'];
 | 
			
		||||
 | 
			
		||||
            // skip tag add if already assigned
 | 
			
		||||
            $query = "DELETE FROM video_tags WHERE tag_id=$tagid AND video_id=$movieid";
 | 
			
		||||
 | 
			
		||||
            $this->commitMessage($this->conn->query($query) ? '{"result":"success"}' : '{"result":"' . $this->conn->error . '"}');
 | 
			
		||||
        });
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -44,9 +44,11 @@ func getVideoHandlers() {
 | 
			
		||||
			likes  = iota
 | 
			
		||||
			random = iota
 | 
			
		||||
			names  = iota
 | 
			
		||||
			length = iota
 | 
			
		||||
		)
 | 
			
		||||
 | 
			
		||||
		var SortClause string
 | 
			
		||||
		// if wrong number passed no sorting is performed
 | 
			
		||||
		var SortClause = ""
 | 
			
		||||
		switch args.Sort {
 | 
			
		||||
		case date:
 | 
			
		||||
			SortClause = "ORDER BY create_date DESC, movie_name"
 | 
			
		||||
@@ -60,6 +62,9 @@ func getVideoHandlers() {
 | 
			
		||||
		case names:
 | 
			
		||||
			SortClause = "ORDER BY movie_name"
 | 
			
		||||
			break
 | 
			
		||||
		case length:
 | 
			
		||||
			SortClause = "ORDER BY length DESC"
 | 
			
		||||
			break
 | 
			
		||||
		}
 | 
			
		||||
 | 
			
		||||
		var query string
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										32
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								package.json
									
									
									
									
									
								
							@@ -12,14 +12,14 @@
 | 
			
		||||
    "@fortawesome/free-regular-svg-icons": "^5.15.1",
 | 
			
		||||
    "@fortawesome/free-solid-svg-icons": "^5.15.1",
 | 
			
		||||
    "@fortawesome/react-fontawesome": "^0.1.13",
 | 
			
		||||
    "bootstrap": "^5.0.1",
 | 
			
		||||
    "bootstrap": "^5.0.2",
 | 
			
		||||
    "plyr-react": "^3.0.7",
 | 
			
		||||
    "react": "^17.0.1",
 | 
			
		||||
    "react-bootstrap": "^1.4.0",
 | 
			
		||||
    "react-dom": "^17.0.1",
 | 
			
		||||
    "react-router": "^5.2.0",
 | 
			
		||||
    "react-router-dom": "^5.2.0",
 | 
			
		||||
    "typescript": "^4.1.3"
 | 
			
		||||
    "typescript": "^4.3.5"
 | 
			
		||||
  },
 | 
			
		||||
  "scripts": {
 | 
			
		||||
    "start": "react-scripts start",
 | 
			
		||||
@@ -53,30 +53,30 @@
 | 
			
		||||
    ]
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@testing-library/jest-dom": "^5.11.6",
 | 
			
		||||
    "@testing-library/react": "^11.2.2",
 | 
			
		||||
    "@testing-library/user-event": "^13.1.9",
 | 
			
		||||
    "@types/jest": "^26.0.19",
 | 
			
		||||
    "@types/node": "^15.12.2",
 | 
			
		||||
    "@types/react": "^17.0.2",
 | 
			
		||||
    "@types/react-dom": "^17.0.1",
 | 
			
		||||
    "@types/react-router": "5.1.15",
 | 
			
		||||
    "@types/react-router-dom": "^5.1.6",
 | 
			
		||||
    "@typescript-eslint/eslint-plugin": "^4.17.0",
 | 
			
		||||
    "@typescript-eslint/parser": "^4.17.0",
 | 
			
		||||
    "@testing-library/jest-dom": "^5.14.1",
 | 
			
		||||
    "@testing-library/react": "^12.0.0",
 | 
			
		||||
    "@testing-library/user-event": "^13.2.1",
 | 
			
		||||
    "@types/jest": "^26.0.24",
 | 
			
		||||
    "@types/node": "^16.4.7",
 | 
			
		||||
    "@types/react": "^17.0.15",
 | 
			
		||||
    "@types/react-dom": "^17.0.9",
 | 
			
		||||
    "@types/react-router": "5.1.16",
 | 
			
		||||
    "@types/react-router-dom": "^5.1.8",
 | 
			
		||||
    "@typescript-eslint/eslint-plugin": "^4.28.5",
 | 
			
		||||
    "@typescript-eslint/parser": "^4.28.5",
 | 
			
		||||
    "apidoc": "^0.28.1",
 | 
			
		||||
    "enzyme": "^3.11.0",
 | 
			
		||||
    "enzyme-adapter-react-16": "^1.15.5",
 | 
			
		||||
    "eslint": "^7.22.0",
 | 
			
		||||
    "eslint": "^7.31.0",
 | 
			
		||||
    "eslint-config-prettier": "^8.1.0",
 | 
			
		||||
    "eslint-formatter-gitlab": "^2.2.0",
 | 
			
		||||
    "eslint-plugin-eslint-comments": "^3.2.0",
 | 
			
		||||
    "eslint-plugin-jest": "^24.3.1",
 | 
			
		||||
    "eslint-plugin-jest": "^24.4.0",
 | 
			
		||||
    "eslint-plugin-prettier": "^3.3.1",
 | 
			
		||||
    "eslint-plugin-react": "^7.22.0",
 | 
			
		||||
    "eslint-plugin-react-hooks": "^4.2.0",
 | 
			
		||||
    "jest-junit": "^12.0.0",
 | 
			
		||||
    "prettier": "^2.2.1",
 | 
			
		||||
    "prettier": "^2.3.2",
 | 
			
		||||
    "prettier-config": "^1.0.0",
 | 
			
		||||
    "react-scripts": "4.0.3"
 | 
			
		||||
  },
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,11 @@ class ActorTile extends React.Component<Props> {
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    renderActorTile(customclickhandler: (actor: ActorType) => void): JSX.Element {
 | 
			
		||||
    /**
 | 
			
		||||
     * render the Actor Tile with its pic
 | 
			
		||||
     * @param customclickhandler a custom click handler to be called onclick instead of Link
 | 
			
		||||
     */
 | 
			
		||||
    private renderActorTile(customclickhandler: (actor: ActorType) => void): JSX.Element {
 | 
			
		||||
        return (
 | 
			
		||||
            <div className={style.actortile} onClick={(): void => customclickhandler(this.props.actor)}>
 | 
			
		||||
                <div className={style.actortile_thumbnail}>
 | 
			
		||||
 
 | 
			
		||||
@@ -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)) {
 | 
			
		||||
 
 | 
			
		||||
@@ -6,6 +6,29 @@
 | 
			
		||||
    text-align: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.videopreview:hover .quickactions {
 | 
			
		||||
    background-color: rgba(0, 0, 0, 0.8);
 | 
			
		||||
    border-radius: 50%;
 | 
			
		||||
 | 
			
		||||
    color: lightgrey;
 | 
			
		||||
    display: block;
 | 
			
		||||
 | 
			
		||||
    height: 35px;
 | 
			
		||||
    opacity: 0.7;
 | 
			
		||||
    padding-top: 5px;
 | 
			
		||||
 | 
			
		||||
    position: absolute;
 | 
			
		||||
 | 
			
		||||
    right: 5px;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
    top: 5px;
 | 
			
		||||
    width: 35px;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.quickactions {
 | 
			
		||||
    display: none;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.previewpic {
 | 
			
		||||
    height: 80%;
 | 
			
		||||
    min-height: 150px;
 | 
			
		||||
@@ -38,6 +61,7 @@
 | 
			
		||||
    margin-left: 25px;
 | 
			
		||||
    margin-top: 25px;
 | 
			
		||||
    opacity: 0.85;
 | 
			
		||||
    position: relative;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.videopreview:hover {
 | 
			
		||||
 
 | 
			
		||||
@@ -5,6 +5,8 @@ import {Link} from 'react-router-dom';
 | 
			
		||||
import GlobalInfos from '../../utils/GlobalInfos';
 | 
			
		||||
import {FontAwesomeIcon} from '@fortawesome/react-fontawesome';
 | 
			
		||||
import {faPhotoVideo} from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import {faEllipsisV} from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import QuickActionPop, {ContextItem} from '../QuickActionPop/QuickActionPop';
 | 
			
		||||
 | 
			
		||||
interface PreviewProps {
 | 
			
		||||
    name: string;
 | 
			
		||||
@@ -15,6 +17,7 @@ interface PreviewProps {
 | 
			
		||||
 | 
			
		||||
interface PreviewState {
 | 
			
		||||
    picLoaded: boolean | null;
 | 
			
		||||
    optionsvisible: boolean;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
@@ -29,7 +32,8 @@ class Preview extends React.Component<PreviewProps, PreviewState> {
 | 
			
		||||
        super(props);
 | 
			
		||||
 | 
			
		||||
        this.state = {
 | 
			
		||||
            picLoaded: null
 | 
			
		||||
            picLoaded: null,
 | 
			
		||||
            optionsvisible: false
 | 
			
		||||
        };
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@@ -56,6 +60,23 @@ class Preview extends React.Component<PreviewProps, PreviewState> {
 | 
			
		||||
            <div
 | 
			
		||||
                className={style.videopreview + ' ' + themeStyle.secbackground + ' ' + themeStyle.preview}
 | 
			
		||||
                onClick={this.props.onClick}>
 | 
			
		||||
                <div
 | 
			
		||||
                    className={style.quickactions}
 | 
			
		||||
                    onClick={(e): void => {
 | 
			
		||||
                        this.setState({optionsvisible: true});
 | 
			
		||||
                        e.stopPropagation();
 | 
			
		||||
                        e.preventDefault();
 | 
			
		||||
                    }}>
 | 
			
		||||
                    <FontAwesomeIcon
 | 
			
		||||
                        style={{
 | 
			
		||||
                            verticalAlign: 'middle',
 | 
			
		||||
                            fontSize: '25px'
 | 
			
		||||
                        }}
 | 
			
		||||
                        icon={faEllipsisV}
 | 
			
		||||
                        size='1x'
 | 
			
		||||
                    />
 | 
			
		||||
                </div>
 | 
			
		||||
                {this.popupvisible()}
 | 
			
		||||
                <div className={style.previewtitle + ' ' + themeStyle.lighttextcolor}>{this.props.name}</div>
 | 
			
		||||
                <div className={style.previewpic}>
 | 
			
		||||
                    {this.state.picLoaded === false ? (
 | 
			
		||||
@@ -79,6 +100,19 @@ class Preview extends React.Component<PreviewProps, PreviewState> {
 | 
			
		||||
            </div>
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    popupvisible(): JSX.Element {
 | 
			
		||||
        if (this.state.optionsvisible) {
 | 
			
		||||
            return (
 | 
			
		||||
                <QuickActionPop position={{x: 350, y: 45}} onHide={(): void => this.setState({optionsvisible: false})}>
 | 
			
		||||
                    <ContextItem title='Delete' onClick={(): void => {}} />
 | 
			
		||||
                    <ContextItem title='Delete' onClick={(): void => {}} />
 | 
			
		||||
                </QuickActionPop>
 | 
			
		||||
            );
 | 
			
		||||
        } else {
 | 
			
		||||
            return <></>;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										65
									
								
								src/elements/QuickActionPop/QuickActionPop.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								src/elements/QuickActionPop/QuickActionPop.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,65 @@
 | 
			
		||||
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.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 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();
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
interface Itemprops {
 | 
			
		||||
    title: string;
 | 
			
		||||
    onClick: () => void;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export const ContextItem = (props: Itemprops): JSX.Element => (
 | 
			
		||||
    <div
 | 
			
		||||
        onClick={(e): void => {
 | 
			
		||||
            e.preventDefault();
 | 
			
		||||
            props.onClick();
 | 
			
		||||
        }}
 | 
			
		||||
        className={style.ContextItem}>
 | 
			
		||||
        {props.title}
 | 
			
		||||
    </div>
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
export default QuickActionPop;
 | 
			
		||||
							
								
								
									
										17
									
								
								src/elements/QuickActionPop/QuickActionPopup.module.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								src/elements/QuickActionPop/QuickActionPopup.module.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,17 @@
 | 
			
		||||
.quickaction {
 | 
			
		||||
    background-color: white;
 | 
			
		||||
    height: 120px;
 | 
			
		||||
    position: absolute;
 | 
			
		||||
    width: 90px;
 | 
			
		||||
    z-index: 2;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.ContextItem {
 | 
			
		||||
    height: 40px;
 | 
			
		||||
    padding-top: 10px;
 | 
			
		||||
    text-align: center;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.ContextItem:hover {
 | 
			
		||||
    background-color: lightgray;
 | 
			
		||||
}
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import React, {SyntheticEvent, PointerEvent} from 'react';
 | 
			
		||||
 | 
			
		||||
import styles from './Tag.module.css';
 | 
			
		||||
import {Link} from 'react-router-dom';
 | 
			
		||||
@@ -7,12 +7,27 @@ import {TagType} from '../../types/VideoTypes';
 | 
			
		||||
interface props {
 | 
			
		||||
    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();
 | 
			
		||||
@@ -23,7 +38,11 @@ class Tag extends React.Component<props> {
 | 
			
		||||
 | 
			
		||||
    renderButton(): JSX.Element {
 | 
			
		||||
        return (
 | 
			
		||||
            <button className={styles.tagbtn} onClick={(): void => this.TagClick()} data-testid='Test-Tag'>
 | 
			
		||||
            <button
 | 
			
		||||
                className={styles.tagbtn}
 | 
			
		||||
                onClick={(): void => this.TagClick()}
 | 
			
		||||
                data-testid='Test-Tag'
 | 
			
		||||
                onContextMenu={this.contextmenu}>
 | 
			
		||||
                {this.props.tagInfo.TagName}
 | 
			
		||||
            </button>
 | 
			
		||||
        );
 | 
			
		||||
@@ -39,6 +58,22 @@ 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;
 | 
			
		||||
 
 | 
			
		||||
@@ -19,7 +19,8 @@ export enum SortBy {
 | 
			
		||||
    date,
 | 
			
		||||
    likes,
 | 
			
		||||
    random,
 | 
			
		||||
    name
 | 
			
		||||
    name,
 | 
			
		||||
    length
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
interface Props extends RouteComponentProps {}
 | 
			
		||||
@@ -189,6 +190,7 @@ export class HomePage extends React.Component<Props, state> {
 | 
			
		||||
                                    <span onClick={(): void => this.onDropDownItemClick(SortBy.likes, 'Most likes')}>Most likes</span>
 | 
			
		||||
                                    <span onClick={(): void => this.onDropDownItemClick(SortBy.random, 'Random')}>Random</span>
 | 
			
		||||
                                    <span onClick={(): void => this.onDropDownItemClick(SortBy.name, 'Name')}>Name</span>
 | 
			
		||||
                                    <span onClick={(): void => this.onDropDownItemClick(SortBy.length, 'Length')}>Length</span>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
 
 | 
			
		||||
@@ -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, {ContextItem} from '../../elements/QuickActionPop/QuickActionPop';
 | 
			
		||||
import GlobalInfos from '../../utils/GlobalInfos';
 | 
			
		||||
 | 
			
		||||
interface Props extends RouteComponentProps<{id: string}> {}
 | 
			
		||||
@@ -36,6 +37,7 @@ interface mystate {
 | 
			
		||||
    popupvisible: boolean;
 | 
			
		||||
    actorpopupvisible: boolean;
 | 
			
		||||
    actors: ActorType[];
 | 
			
		||||
    tagContextMenu: boolean;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
@@ -43,12 +45,15 @@ interface mystate {
 | 
			
		||||
 * and actions such as tag adding and liking
 | 
			
		||||
 */
 | 
			
		||||
export class Player extends React.Component<Props, mystate> {
 | 
			
		||||
    private contextpos = {x: 0, y: 0, tagid: -1};
 | 
			
		||||
 | 
			
		||||
    constructor(props: Props) {
 | 
			
		||||
        super(props);
 | 
			
		||||
 | 
			
		||||
        this.state = {
 | 
			
		||||
            movieId: -1,
 | 
			
		||||
            movieName: '',
 | 
			
		||||
            tagContextMenu: false,
 | 
			
		||||
            likes: 0,
 | 
			
		||||
            quality: 0,
 | 
			
		||||
            length: 0,
 | 
			
		||||
@@ -60,6 +65,7 @@ export class Player extends React.Component<Props, mystate> {
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        this.quickAddTag = this.quickAddTag.bind(this);
 | 
			
		||||
        this.deleteTag = this.deleteTag.bind(this);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    componentDidMount(): void {
 | 
			
		||||
@@ -133,7 +139,14 @@ export class Player extends React.Component<Props, mystate> {
 | 
			
		||||
                <Line />
 | 
			
		||||
                <SideBarTitle>Tags:</SideBarTitle>
 | 
			
		||||
                {this.state.tags.map((m: TagType) => (
 | 
			
		||||
                    <Tag key={m.TagId} tagInfo={m} />
 | 
			
		||||
                    <Tag
 | 
			
		||||
                        key={m.TagId}
 | 
			
		||||
                        tagInfo={m}
 | 
			
		||||
                        onContextMenu={(pos): void => {
 | 
			
		||||
                            this.setState({tagContextMenu: true});
 | 
			
		||||
                            this.contextpos = {...pos, tagid: m.TagId};
 | 
			
		||||
                        }}
 | 
			
		||||
                    />
 | 
			
		||||
                ))}
 | 
			
		||||
                <Line />
 | 
			
		||||
                <SideBarTitle>Tag Quickadd:</SideBarTitle>
 | 
			
		||||
@@ -196,6 +209,7 @@ export class Player extends React.Component<Props, mystate> {
 | 
			
		||||
                        movieId={this.state.movieId}
 | 
			
		||||
                    />
 | 
			
		||||
                ) : null}
 | 
			
		||||
                {this.renderContextMenu()}
 | 
			
		||||
            </>
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
@@ -355,6 +369,51 @@ export class Player extends React.Component<Props, mystate> {
 | 
			
		||||
            }
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * render the Tag context menu
 | 
			
		||||
     */
 | 
			
		||||
    private renderContextMenu(): JSX.Element {
 | 
			
		||||
        if (this.state.tagContextMenu) {
 | 
			
		||||
            return (
 | 
			
		||||
                <QuickActionPop onHide={(): void => this.setState({tagContextMenu: false})} position={this.contextpos}>
 | 
			
		||||
                    <ContextItem title='Delete' onClick={(): void => this.deleteTag(this.contextpos.tagid)} />
 | 
			
		||||
                </QuickActionPop>
 | 
			
		||||
            );
 | 
			
		||||
        } else {
 | 
			
		||||
            return <></>;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * delete a tag from the current video
 | 
			
		||||
     */
 | 
			
		||||
    private deleteTag(tag_id: number): void {
 | 
			
		||||
        callAPI<GeneralSuccess>(
 | 
			
		||||
            APINode.Tags,
 | 
			
		||||
            {action: 'deleteVideoTag', video_id: this.props.match.params.id, tag_id: tag_id},
 | 
			
		||||
            (res) => {
 | 
			
		||||
                if (res.result !== 'success') {
 | 
			
		||||
                    console.log('deletion errored!');
 | 
			
		||||
 | 
			
		||||
                    this.setState({tagContextMenu: false});
 | 
			
		||||
                } else {
 | 
			
		||||
                    // check if tag has already been added
 | 
			
		||||
                    const tagIndex = this.state.tags
 | 
			
		||||
                        .map(function (e: TagType) {
 | 
			
		||||
                            return e.TagId;
 | 
			
		||||
                        })
 | 
			
		||||
                        .indexOf(tag_id);
 | 
			
		||||
 | 
			
		||||
                    // delete tag from array
 | 
			
		||||
                    const newTagArray = this.state.tags;
 | 
			
		||||
                    newTagArray.splice(tagIndex, 1);
 | 
			
		||||
 | 
			
		||||
                    this.setState({tags: newTagArray, tagContextMenu: false});
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
        );
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export default withRouter(Player);
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										307
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										307
									
								
								yarn.lock
									
									
									
									
									
								
							@@ -1243,6 +1243,21 @@
 | 
			
		||||
    minimatch "^3.0.4"
 | 
			
		||||
    strip-json-comments "^3.1.1"
 | 
			
		||||
 | 
			
		||||
"@eslint/eslintrc@^0.4.3":
 | 
			
		||||
  version "0.4.3"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c"
 | 
			
		||||
  integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    ajv "^6.12.4"
 | 
			
		||||
    debug "^4.1.1"
 | 
			
		||||
    espree "^7.3.0"
 | 
			
		||||
    globals "^13.9.0"
 | 
			
		||||
    ignore "^4.0.6"
 | 
			
		||||
    import-fresh "^3.2.1"
 | 
			
		||||
    js-yaml "^3.13.1"
 | 
			
		||||
    minimatch "^3.0.4"
 | 
			
		||||
    strip-json-comments "^3.1.1"
 | 
			
		||||
 | 
			
		||||
"@fortawesome/fontawesome-common-types@^0.2.35":
 | 
			
		||||
  version "0.2.35"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.35.tgz#01dd3d054da07a00b764d78748df20daf2b317e9"
 | 
			
		||||
@@ -1308,6 +1323,20 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@hapi/hoek" "^8.3.0"
 | 
			
		||||
 | 
			
		||||
"@humanwhocodes/config-array@^0.5.0":
 | 
			
		||||
  version "0.5.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9"
 | 
			
		||||
  integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@humanwhocodes/object-schema" "^1.2.0"
 | 
			
		||||
    debug "^4.1.1"
 | 
			
		||||
    minimatch "^3.0.4"
 | 
			
		||||
 | 
			
		||||
"@humanwhocodes/object-schema@^1.2.0":
 | 
			
		||||
  version "1.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf"
 | 
			
		||||
  integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==
 | 
			
		||||
 | 
			
		||||
"@istanbuljs/load-nyc-config@^1.0.0":
 | 
			
		||||
  version "1.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced"
 | 
			
		||||
@@ -1495,6 +1524,17 @@
 | 
			
		||||
    "@types/yargs" "^15.0.0"
 | 
			
		||||
    chalk "^4.0.0"
 | 
			
		||||
 | 
			
		||||
"@jest/types@^27.0.6":
 | 
			
		||||
  version "27.0.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.0.6.tgz#9a992bc517e0c49f035938b8549719c2de40706b"
 | 
			
		||||
  integrity sha512-aSquT1qa9Pik26JK5/3rvnYb4bGtm1VFNesHKmNTwmPIgOrixvhL2ghIvFRNEpzy3gU+rUgjIF/KodbkFAl++g==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/istanbul-lib-coverage" "^2.0.0"
 | 
			
		||||
    "@types/istanbul-reports" "^3.0.0"
 | 
			
		||||
    "@types/node" "*"
 | 
			
		||||
    "@types/yargs" "^16.0.0"
 | 
			
		||||
    chalk "^4.0.0"
 | 
			
		||||
 | 
			
		||||
"@nodelib/fs.scandir@2.1.5":
 | 
			
		||||
  version "2.1.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
 | 
			
		||||
@@ -1719,10 +1759,10 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    defer-to-connect "^1.0.1"
 | 
			
		||||
 | 
			
		||||
"@testing-library/dom@^7.28.1":
 | 
			
		||||
  version "7.31.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-7.31.2.tgz#df361db38f5212b88555068ab8119f5d841a8c4a"
 | 
			
		||||
  integrity sha512-3UqjCpey6HiTZT92vODYLPxTBWlM8ZOOjr3LX5F37/VRipW2M1kX6I/Cm4VXzteZqfGfagg8yXywpcOgQBlNsQ==
 | 
			
		||||
"@testing-library/dom@^8.0.0":
 | 
			
		||||
  version "8.1.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-8.1.0.tgz#f8358b1883844ea569ba76b7e94582168df5370d"
 | 
			
		||||
  integrity sha512-kmW9alndr19qd6DABzQ978zKQ+J65gU2Rzkl8hriIetPnwpesRaK4//jEQyYh8fEALmGhomD/LBQqt+o+DL95Q==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/code-frame" "^7.10.4"
 | 
			
		||||
    "@babel/runtime" "^7.12.5"
 | 
			
		||||
@@ -1731,12 +1771,12 @@
 | 
			
		||||
    chalk "^4.1.0"
 | 
			
		||||
    dom-accessibility-api "^0.5.6"
 | 
			
		||||
    lz-string "^1.4.4"
 | 
			
		||||
    pretty-format "^26.6.2"
 | 
			
		||||
    pretty-format "^27.0.2"
 | 
			
		||||
 | 
			
		||||
"@testing-library/jest-dom@^5.11.6":
 | 
			
		||||
  version "5.13.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.13.0.tgz#0a365684e2c1159f857f5915be50089fc5657df0"
 | 
			
		||||
  integrity sha512-+jXXTn8GjRnZkJfzG/tqK/2Q7dGlBInR412WE7Aml7CT3wdSpx5dMQC0HOwVQoZ3cNTmQUy8fCVGUV/Zhoyvcw==
 | 
			
		||||
"@testing-library/jest-dom@^5.14.1":
 | 
			
		||||
  version "5.14.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-5.14.1.tgz#8501e16f1e55a55d675fe73eecee32cdaddb9766"
 | 
			
		||||
  integrity sha512-dfB7HVIgTNCxH22M1+KU6viG5of2ldoA5ly8Ar8xkezKHKXjRvznCdbMbqjYGgO2xjRbwnR+rR8MLUIqF3kKbQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.9.2"
 | 
			
		||||
    "@types/testing-library__jest-dom" "^5.9.1"
 | 
			
		||||
@@ -1744,21 +1784,22 @@
 | 
			
		||||
    chalk "^3.0.0"
 | 
			
		||||
    css "^3.0.0"
 | 
			
		||||
    css.escape "^1.5.1"
 | 
			
		||||
    dom-accessibility-api "^0.5.6"
 | 
			
		||||
    lodash "^4.17.15"
 | 
			
		||||
    redent "^3.0.0"
 | 
			
		||||
 | 
			
		||||
"@testing-library/react@^11.2.2":
 | 
			
		||||
  version "11.2.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-11.2.7.tgz#b29e2e95c6765c815786c0bc1d5aed9cb2bf7818"
 | 
			
		||||
  integrity sha512-tzRNp7pzd5QmbtXNG/mhdcl7Awfu/Iz1RaVHY75zTdOkmHCuzMhRL83gWHSgOAcjS3CCbyfwUHMZgRJb4kAfpA==
 | 
			
		||||
"@testing-library/react@^12.0.0":
 | 
			
		||||
  version "12.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-12.0.0.tgz#9aeb2264521522ab9b68f519eaf15136148f164a"
 | 
			
		||||
  integrity sha512-sh3jhFgEshFyJ/0IxGltRhwZv2kFKfJ3fN1vTZ6hhMXzz9ZbbcTgmDYM4e+zJv+oiVKKEWZPyqPAh4MQBI65gA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.12.5"
 | 
			
		||||
    "@testing-library/dom" "^7.28.1"
 | 
			
		||||
    "@testing-library/dom" "^8.0.0"
 | 
			
		||||
 | 
			
		||||
"@testing-library/user-event@^13.1.9":
 | 
			
		||||
  version "13.1.9"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.1.9.tgz#29e49a42659ac3c1023565ff56819e0153a82e99"
 | 
			
		||||
  integrity sha512-NZr0zL2TMOs2qk+dNlqrAdbaRW5dAmYwd1yuQ4r7HpkVEOj0MWuUjDWwKhcLd/atdBy8ZSMHSKp+kXSQe47ezg==
 | 
			
		||||
"@testing-library/user-event@^13.2.1":
 | 
			
		||||
  version "13.2.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-13.2.1.tgz#7a71a39e50b4a733afbe2916fa2b99966e941f98"
 | 
			
		||||
  integrity sha512-cczlgVl+krjOb3j1625usarNEibI0IFRJrSWX9UsJ1HKYFgCQv9Nb7QAipUDXl3Xdz8NDTsiS78eAkPSxlzTlw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/runtime" "^7.12.5"
 | 
			
		||||
 | 
			
		||||
@@ -1872,7 +1913,7 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/istanbul-lib-report" "*"
 | 
			
		||||
 | 
			
		||||
"@types/jest@*", "@types/jest@^26.0.19":
 | 
			
		||||
"@types/jest@*":
 | 
			
		||||
  version "26.0.23"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.23.tgz#a1b7eab3c503b80451d019efb588ec63522ee4e7"
 | 
			
		||||
  integrity sha512-ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA==
 | 
			
		||||
@@ -1880,6 +1921,14 @@
 | 
			
		||||
    jest-diff "^26.0.0"
 | 
			
		||||
    pretty-format "^26.0.0"
 | 
			
		||||
 | 
			
		||||
"@types/jest@^26.0.24":
 | 
			
		||||
  version "26.0.24"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.24.tgz#943d11976b16739185913a1936e0de0c4a7d595a"
 | 
			
		||||
  integrity sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    jest-diff "^26.0.0"
 | 
			
		||||
    pretty-format "^26.0.0"
 | 
			
		||||
 | 
			
		||||
"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7":
 | 
			
		||||
  version "7.0.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
 | 
			
		||||
@@ -1895,11 +1944,16 @@
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21"
 | 
			
		||||
  integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA==
 | 
			
		||||
 | 
			
		||||
"@types/node@*", "@types/node@^15.12.2":
 | 
			
		||||
"@types/node@*":
 | 
			
		||||
  version "15.12.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d"
 | 
			
		||||
  integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww==
 | 
			
		||||
 | 
			
		||||
"@types/node@^16.4.7":
 | 
			
		||||
  version "16.4.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/node/-/node-16.4.7.tgz#f7afa78769d4b477f5092d7c3468e2e8653d779c"
 | 
			
		||||
  integrity sha512-aDDY54sst8sx47CWT6QQqIZp45yURq4dic0+HCYfYNcY5Ejlb/CLmFnRLfy3wQuYafOeh3lB/DAKaqRKBtcZmA==
 | 
			
		||||
 | 
			
		||||
"@types/normalize-package-data@^2.4.0":
 | 
			
		||||
  version "2.4.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
 | 
			
		||||
@@ -1925,23 +1979,23 @@
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
 | 
			
		||||
  integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==
 | 
			
		||||
 | 
			
		||||
"@types/react-dom@^17.0.1":
 | 
			
		||||
  version "17.0.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.7.tgz#b8ee15ead9e5d6c2c858b44949fdf2ebe5212232"
 | 
			
		||||
  integrity sha512-Wd5xvZRlccOrCTej8jZkoFZuZRKHzanDDv1xglI33oBNFMWrqOSzrvWFw7ngSiZjrpJAzPKFtX7JvuXpkNmQHA==
 | 
			
		||||
"@types/react-dom@^17.0.9":
 | 
			
		||||
  version "17.0.9"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-17.0.9.tgz#441a981da9d7be117042e1a6fd3dac4b30f55add"
 | 
			
		||||
  integrity sha512-wIvGxLfgpVDSAMH5utdL9Ngm5Owu0VsGmldro3ORLXV8CShrL8awVj06NuEXFQ5xyaYfdca7Sgbk/50Ri1GdPg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/react" "*"
 | 
			
		||||
 | 
			
		||||
"@types/react-router-dom@^5.1.6":
 | 
			
		||||
  version "5.1.7"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.1.7.tgz#a126d9ea76079ffbbdb0d9225073eb5797ab7271"
 | 
			
		||||
  integrity sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==
 | 
			
		||||
"@types/react-router-dom@^5.1.8":
 | 
			
		||||
  version "5.1.8"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.1.8.tgz#bf3e1c8149b3d62eaa206d58599de82df0241192"
 | 
			
		||||
  integrity sha512-03xHyncBzG0PmDmf8pf3rehtjY0NpUj7TIN46FrT5n1ZWHPZvXz32gUyNboJ+xsL8cpg8bQVLcllptcQHvocrw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/history" "*"
 | 
			
		||||
    "@types/react" "*"
 | 
			
		||||
    "@types/react-router" "*"
 | 
			
		||||
 | 
			
		||||
"@types/react-router@*", "@types/react-router@5.1.15":
 | 
			
		||||
"@types/react-router@*":
 | 
			
		||||
  version "5.1.15"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.15.tgz#c1069e0da4617fd315e381b56b18b89490e14e2a"
 | 
			
		||||
  integrity sha512-z3UlMG/x91SFEVmmvykk9FLTliDvfdIUky4k2rCfXWQ0NKbrP8o9BTCaCTPuYsB8gDkUnUmkcA2vYlm2DR+HAA==
 | 
			
		||||
@@ -1949,6 +2003,14 @@
 | 
			
		||||
    "@types/history" "*"
 | 
			
		||||
    "@types/react" "*"
 | 
			
		||||
 | 
			
		||||
"@types/react-router@5.1.16":
 | 
			
		||||
  version "5.1.16"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.16.tgz#f3ba045fb96634e38b21531c482f9aeb37608a99"
 | 
			
		||||
  integrity sha512-8d7nR/fNSqlTFGHti0R3F9WwIertOaaA1UEB8/jr5l5mDMOs4CidEgvvYMw4ivqrBK+vtVLxyTj2P+Pr/dtgzg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/history" "*"
 | 
			
		||||
    "@types/react" "*"
 | 
			
		||||
 | 
			
		||||
"@types/react-transition-group@^4.4.1":
 | 
			
		||||
  version "4.4.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.1.tgz#e1a3cb278df7f47f17b5082b1b3da17170bd44b1"
 | 
			
		||||
@@ -1956,7 +2018,7 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/react" "*"
 | 
			
		||||
 | 
			
		||||
"@types/react@*", "@types/react@>=16.14.8", "@types/react@>=16.9.11", "@types/react@^17.0.2":
 | 
			
		||||
"@types/react@*", "@types/react@>=16.14.8", "@types/react@>=16.9.11":
 | 
			
		||||
  version "17.0.11"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.11.tgz#67fcd0ddbf5a0b083a0f94e926c7d63f3b836451"
 | 
			
		||||
  integrity sha512-yFRQbD+whVonItSk7ZzP/L+gPTJVBkL/7shLEF+i9GC/1cV3JmUxEQz6+9ylhUpWSDuqo1N9qEvqS6vTj4USUA==
 | 
			
		||||
@@ -1965,6 +2027,15 @@
 | 
			
		||||
    "@types/scheduler" "*"
 | 
			
		||||
    csstype "^3.0.2"
 | 
			
		||||
 | 
			
		||||
"@types/react@^17.0.15":
 | 
			
		||||
  version "17.0.15"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.15.tgz#c7533dc38025677e312606502df7656a6ea626d0"
 | 
			
		||||
  integrity sha512-uTKHDK9STXFHLaKv6IMnwp52fm0hwU+N89w/p9grdUqcFA6WuqDyPhaWopbNyE1k/VhgzmHl8pu1L4wITtmlLw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/prop-types" "*"
 | 
			
		||||
    "@types/scheduler" "*"
 | 
			
		||||
    csstype "^3.0.2"
 | 
			
		||||
 | 
			
		||||
"@types/resolve@0.0.8":
 | 
			
		||||
  version "0.0.8"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-0.0.8.tgz#f26074d238e02659e323ce1a13d041eee280e194"
 | 
			
		||||
@@ -2044,7 +2115,27 @@
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/yargs-parser" "*"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/eslint-plugin@^4.17.0", "@typescript-eslint/eslint-plugin@^4.5.0":
 | 
			
		||||
"@types/yargs@^16.0.0":
 | 
			
		||||
  version "16.0.4"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977"
 | 
			
		||||
  integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/yargs-parser" "*"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/eslint-plugin@^4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.5.tgz#8197f1473e7da8218c6a37ff308d695707835684"
 | 
			
		||||
  integrity sha512-m31cPEnbuCqXtEZQJOXAHsHvtoDi9OVaeL5wZnO2KZTnkvELk+u6J6jHg+NzvWQxk+87Zjbc4lJS4NHmgImz6Q==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/experimental-utils" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "4.28.5"
 | 
			
		||||
    debug "^4.3.1"
 | 
			
		||||
    functional-red-black-tree "^1.0.1"
 | 
			
		||||
    regexpp "^3.1.0"
 | 
			
		||||
    semver "^7.3.5"
 | 
			
		||||
    tsutils "^3.21.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/eslint-plugin@^4.5.0":
 | 
			
		||||
  version "4.26.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.26.1.tgz#b9c7313321cb837e2bf8bebe7acc2220659e67d3"
 | 
			
		||||
  integrity sha512-aoIusj/8CR+xDWmZxARivZjbMBQTT9dImUtdZ8tVCVRXgBUuuZyM5Of5A9D9arQPxbi/0rlJLcuArclz/rCMJw==
 | 
			
		||||
@@ -2070,6 +2161,18 @@
 | 
			
		||||
    eslint-scope "^5.1.1"
 | 
			
		||||
    eslint-utils "^3.0.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/experimental-utils@4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.5.tgz#66c28bef115b417cf9d80812a713e0e46bb42a64"
 | 
			
		||||
  integrity sha512-bGPLCOJAa+j49hsynTaAtQIWg6uZd8VLiPcyDe4QPULsvQwLHGLSGKKcBN8/lBxIX14F74UEMK2zNDI8r0okwA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@types/json-schema" "^7.0.7"
 | 
			
		||||
    "@typescript-eslint/scope-manager" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/types" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "4.28.5"
 | 
			
		||||
    eslint-scope "^5.1.1"
 | 
			
		||||
    eslint-utils "^3.0.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/experimental-utils@^3.10.1":
 | 
			
		||||
  version "3.10.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz#e179ffc81a80ebcae2ea04e0332f8b251345a686"
 | 
			
		||||
@@ -2081,7 +2184,17 @@
 | 
			
		||||
    eslint-scope "^5.0.0"
 | 
			
		||||
    eslint-utils "^2.0.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/parser@^4.17.0", "@typescript-eslint/parser@^4.5.0":
 | 
			
		||||
"@typescript-eslint/parser@^4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.5.tgz#9c971668f86d1b5c552266c47788a87488a47d1c"
 | 
			
		||||
  integrity sha512-NPCOGhTnkXGMqTznqgVbA5LqVsnw+i3+XA1UKLnAb+MG1Y1rP4ZSK9GX0kJBmAZTMIktf+dTwXToT6kFwyimbw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/scope-manager" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/types" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/typescript-estree" "4.28.5"
 | 
			
		||||
    debug "^4.3.1"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/parser@^4.5.0":
 | 
			
		||||
  version "4.26.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.26.1.tgz#cecfdd5eb7a5c13aabce1c1cfd7fbafb5a0f1e8e"
 | 
			
		||||
  integrity sha512-q7F3zSo/nU6YJpPJvQveVlIIzx9/wu75lr6oDbDzoeIRWxpoc/HQ43G4rmMoCc5my/3uSj2VEpg/D83LYZF5HQ==
 | 
			
		||||
@@ -2099,6 +2212,14 @@
 | 
			
		||||
    "@typescript-eslint/types" "4.26.1"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "4.26.1"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/scope-manager@4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.5.tgz#3a1b70c50c1535ac33322786ea99ebe403d3b923"
 | 
			
		||||
  integrity sha512-PHLq6n9nTMrLYcVcIZ7v0VY1X7dK309NM8ya9oL/yG8syFINIMHxyr2GzGoBYUdv3NUfCOqtuqps0ZmcgnZTfQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/types" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "4.28.5"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/types@3.10.1":
 | 
			
		||||
  version "3.10.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727"
 | 
			
		||||
@@ -2109,6 +2230,11 @@
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.26.1.tgz#9e7c523f73c34b04a765e4167ca5650436ef1d38"
 | 
			
		||||
  integrity sha512-STyMPxR3cS+LaNvS8yK15rb8Y0iL0tFXq0uyl6gY45glyI7w0CsyqyEXl/Fa0JlQy+pVANeK3sbwPneCbWE7yg==
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/types@4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.5.tgz#d33edf8e429f0c0930a7c3d44e9b010354c422e9"
 | 
			
		||||
  integrity sha512-MruOu4ZaDOLOhw4f/6iudyks/obuvvZUAHBDSW80Trnc5+ovmViLT2ZMDXhUV66ozcl6z0LJfKs1Usldgi/WCA==
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/typescript-estree@3.10.1":
 | 
			
		||||
  version "3.10.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz#fd0061cc38add4fad45136d654408569f365b853"
 | 
			
		||||
@@ -2136,6 +2262,19 @@
 | 
			
		||||
    semver "^7.3.5"
 | 
			
		||||
    tsutils "^3.21.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/typescript-estree@4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.5.tgz#4906d343de693cf3d8dcc301383ed638e0441cd1"
 | 
			
		||||
  integrity sha512-FzJUKsBX8poCCdve7iV7ShirP8V+ys2t1fvamVeD1rWpiAnIm550a+BX/fmTHrjEpQJ7ZAn+Z7ZZwJjytk9rZw==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/types" "4.28.5"
 | 
			
		||||
    "@typescript-eslint/visitor-keys" "4.28.5"
 | 
			
		||||
    debug "^4.3.1"
 | 
			
		||||
    globby "^11.0.3"
 | 
			
		||||
    is-glob "^4.0.1"
 | 
			
		||||
    semver "^7.3.5"
 | 
			
		||||
    tsutils "^3.21.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/visitor-keys@3.10.1":
 | 
			
		||||
  version "3.10.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz#cd4274773e3eb63b2e870ac602274487ecd1e931"
 | 
			
		||||
@@ -2151,6 +2290,14 @@
 | 
			
		||||
    "@typescript-eslint/types" "4.26.1"
 | 
			
		||||
    eslint-visitor-keys "^2.0.0"
 | 
			
		||||
 | 
			
		||||
"@typescript-eslint/visitor-keys@4.28.5":
 | 
			
		||||
  version "4.28.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.5.tgz#ffee2c602762ed6893405ee7c1144d9cc0a29675"
 | 
			
		||||
  integrity sha512-dva/7Rr+EkxNWdJWau26xU/0slnFlkh88v3TsyTgRS/IIYFi5iIfpCFM4ikw0vQTFUR9FYSSyqgK4w64gsgxhg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/types" "4.28.5"
 | 
			
		||||
    eslint-visitor-keys "^2.0.0"
 | 
			
		||||
 | 
			
		||||
"@webassemblyjs/ast@1.9.0":
 | 
			
		||||
  version "1.9.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964"
 | 
			
		||||
@@ -2493,6 +2640,11 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    color-convert "^2.0.1"
 | 
			
		||||
 | 
			
		||||
ansi-styles@^5.0.0:
 | 
			
		||||
  version "5.2.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
 | 
			
		||||
  integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
 | 
			
		||||
 | 
			
		||||
anymatch@^2.0.0:
 | 
			
		||||
  version "2.0.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
 | 
			
		||||
@@ -3060,10 +3212,10 @@ boolbase@^1.0.0, boolbase@~1.0.0:
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
 | 
			
		||||
  integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
 | 
			
		||||
 | 
			
		||||
bootstrap@^5.0.1:
 | 
			
		||||
  version "5.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.0.1.tgz#e7939d599119dc818a90478a2a299bdaff037e09"
 | 
			
		||||
  integrity sha512-Fl79+wsLOZKoiU345KeEaWD0ik8WKRI5zm0YSPj2oF1Qr+BO7z0fco6GbUtqjoG1h4VI89PeKJnMsMMVQdKKTw==
 | 
			
		||||
bootstrap@^5.0.2:
 | 
			
		||||
  version "5.0.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-5.0.2.tgz#aff23d5e0e03c31255ad437530ee6556e78e728e"
 | 
			
		||||
  integrity sha512-1Ge963tyEQWJJ+8qtXFU6wgmAVj9gweEjibUdbmcCEYsn38tVwRk8107rk2vzt6cfQcRr3SlZ8aQBqaD8aqf+Q==
 | 
			
		||||
 | 
			
		||||
boxen@^4.2.0:
 | 
			
		||||
  version "4.2.0"
 | 
			
		||||
@@ -4967,13 +5119,20 @@ eslint-plugin-import@^2.22.1:
 | 
			
		||||
    resolve "^1.20.0"
 | 
			
		||||
    tsconfig-paths "^3.9.0"
 | 
			
		||||
 | 
			
		||||
eslint-plugin-jest@^24.1.0, eslint-plugin-jest@^24.3.1:
 | 
			
		||||
eslint-plugin-jest@^24.1.0:
 | 
			
		||||
  version "24.3.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.3.6.tgz#5f0ca019183c3188c5ad3af8e80b41de6c8e9173"
 | 
			
		||||
  integrity sha512-WOVH4TIaBLIeCX576rLcOgjNXqP+jNlCiEmRgFTfQtJ52DpwnIQKAVGlGPAN7CZ33bW6eNfHD6s8ZbEUTQubJg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/experimental-utils" "^4.0.1"
 | 
			
		||||
 | 
			
		||||
eslint-plugin-jest@^24.4.0:
 | 
			
		||||
  version "24.4.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-24.4.0.tgz#fa4b614dbd46a98b652d830377971f097bda9262"
 | 
			
		||||
  integrity sha512-8qnt/hgtZ94E9dA6viqfViKBfkJwFHXgJmTWlMGDgunw1XJEGqm3eiPjDsTanM3/u/3Az82nyQM9GX7PM/QGmg==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@typescript-eslint/experimental-utils" "^4.0.1"
 | 
			
		||||
 | 
			
		||||
eslint-plugin-jsx-a11y@^6.3.1:
 | 
			
		||||
  version "6.4.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
 | 
			
		||||
@@ -5080,7 +5239,7 @@ eslint-webpack-plugin@^2.5.2:
 | 
			
		||||
    normalize-path "^3.0.0"
 | 
			
		||||
    schema-utils "^3.0.0"
 | 
			
		||||
 | 
			
		||||
eslint@^7.11.0, eslint@^7.22.0:
 | 
			
		||||
eslint@^7.11.0:
 | 
			
		||||
  version "7.28.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.28.0.tgz#435aa17a0b82c13bb2be9d51408b617e49c1e820"
 | 
			
		||||
  integrity sha512-UMfH0VSjP0G4p3EWirscJEQ/cHqnT/iuH6oNZOB94nBjWbMnhGEPxsZm1eyIW0C/9jLI0Fow4W5DXLjEI7mn1g==
 | 
			
		||||
@@ -5125,6 +5284,52 @@ eslint@^7.11.0, eslint@^7.22.0:
 | 
			
		||||
    text-table "^0.2.0"
 | 
			
		||||
    v8-compile-cache "^2.0.3"
 | 
			
		||||
 | 
			
		||||
eslint@^7.31.0:
 | 
			
		||||
  version "7.31.0"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.31.0.tgz#f972b539424bf2604907a970860732c5d99d3aca"
 | 
			
		||||
  integrity sha512-vafgJpSh2ia8tnTkNUkwxGmnumgckLh5aAbLa1xRmIn9+owi8qBNGKL+B881kNKNTy7FFqTEkpNkUvmw0n6PkA==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@babel/code-frame" "7.12.11"
 | 
			
		||||
    "@eslint/eslintrc" "^0.4.3"
 | 
			
		||||
    "@humanwhocodes/config-array" "^0.5.0"
 | 
			
		||||
    ajv "^6.10.0"
 | 
			
		||||
    chalk "^4.0.0"
 | 
			
		||||
    cross-spawn "^7.0.2"
 | 
			
		||||
    debug "^4.0.1"
 | 
			
		||||
    doctrine "^3.0.0"
 | 
			
		||||
    enquirer "^2.3.5"
 | 
			
		||||
    escape-string-regexp "^4.0.0"
 | 
			
		||||
    eslint-scope "^5.1.1"
 | 
			
		||||
    eslint-utils "^2.1.0"
 | 
			
		||||
    eslint-visitor-keys "^2.0.0"
 | 
			
		||||
    espree "^7.3.1"
 | 
			
		||||
    esquery "^1.4.0"
 | 
			
		||||
    esutils "^2.0.2"
 | 
			
		||||
    fast-deep-equal "^3.1.3"
 | 
			
		||||
    file-entry-cache "^6.0.1"
 | 
			
		||||
    functional-red-black-tree "^1.0.1"
 | 
			
		||||
    glob-parent "^5.1.2"
 | 
			
		||||
    globals "^13.6.0"
 | 
			
		||||
    ignore "^4.0.6"
 | 
			
		||||
    import-fresh "^3.0.0"
 | 
			
		||||
    imurmurhash "^0.1.4"
 | 
			
		||||
    is-glob "^4.0.0"
 | 
			
		||||
    js-yaml "^3.13.1"
 | 
			
		||||
    json-stable-stringify-without-jsonify "^1.0.1"
 | 
			
		||||
    levn "^0.4.1"
 | 
			
		||||
    lodash.merge "^4.6.2"
 | 
			
		||||
    minimatch "^3.0.4"
 | 
			
		||||
    natural-compare "^1.4.0"
 | 
			
		||||
    optionator "^0.9.1"
 | 
			
		||||
    progress "^2.0.0"
 | 
			
		||||
    regexpp "^3.1.0"
 | 
			
		||||
    semver "^7.2.1"
 | 
			
		||||
    strip-ansi "^6.0.0"
 | 
			
		||||
    strip-json-comments "^3.1.0"
 | 
			
		||||
    table "^6.0.9"
 | 
			
		||||
    text-table "^0.2.0"
 | 
			
		||||
    v8-compile-cache "^2.0.3"
 | 
			
		||||
 | 
			
		||||
espree@^7.3.0, espree@^7.3.1:
 | 
			
		||||
  version "7.3.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6"
 | 
			
		||||
@@ -9597,10 +9802,10 @@ prettier-linter-helpers@^1.0.0:
 | 
			
		||||
  dependencies:
 | 
			
		||||
    fast-diff "^1.1.2"
 | 
			
		||||
 | 
			
		||||
prettier@^2.2.1:
 | 
			
		||||
  version "2.3.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.1.tgz#76903c3f8c4449bc9ac597acefa24dc5ad4cbea6"
 | 
			
		||||
  integrity sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==
 | 
			
		||||
prettier@^2.3.2:
 | 
			
		||||
  version "2.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.3.2.tgz#ef280a05ec253712e486233db5c6f23441e7342d"
 | 
			
		||||
  integrity sha512-lnJzDfJ66zkMy58OL5/NY5zp70S7Nz6KqcKkXYzn2tMVrNxvbqaBpg7H3qHaLxCJ5lNMsGuM8+ohS7cZrthdLQ==
 | 
			
		||||
 | 
			
		||||
pretty-bytes@^5.3.0:
 | 
			
		||||
  version "5.6.0"
 | 
			
		||||
@@ -9625,6 +9830,16 @@ pretty-format@^26.0.0, pretty-format@^26.6.0, pretty-format@^26.6.2:
 | 
			
		||||
    ansi-styles "^4.0.0"
 | 
			
		||||
    react-is "^17.0.1"
 | 
			
		||||
 | 
			
		||||
pretty-format@^27.0.2:
 | 
			
		||||
  version "27.0.6"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.0.6.tgz#ab770c47b2c6f893a21aefc57b75da63ef49a11f"
 | 
			
		||||
  integrity sha512-8tGD7gBIENgzqA+UBzObyWqQ5B778VIFZA/S66cclyd5YkFLYs2Js7gxDKf0MXtTc9zcS7t1xhdfcElJ3YIvkQ==
 | 
			
		||||
  dependencies:
 | 
			
		||||
    "@jest/types" "^27.0.6"
 | 
			
		||||
    ansi-regex "^5.0.0"
 | 
			
		||||
    ansi-styles "^5.0.0"
 | 
			
		||||
    react-is "^17.0.1"
 | 
			
		||||
 | 
			
		||||
process-nextick-args@~2.0.0:
 | 
			
		||||
  version "2.0.1"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
 | 
			
		||||
@@ -11753,10 +11968,10 @@ typedarray@^0.0.6:
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
 | 
			
		||||
  integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
 | 
			
		||||
 | 
			
		||||
typescript@^4.1.3:
 | 
			
		||||
  version "4.3.2"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.2.tgz#399ab18aac45802d6f2498de5054fcbbe716a805"
 | 
			
		||||
  integrity sha512-zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw==
 | 
			
		||||
typescript@^4.3.5:
 | 
			
		||||
  version "4.3.5"
 | 
			
		||||
  resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.3.5.tgz#4d1c37cc16e893973c45a06886b7113234f119f4"
 | 
			
		||||
  integrity sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==
 | 
			
		||||
 | 
			
		||||
uc.micro@^1.0.1, uc.micro@^1.0.5:
 | 
			
		||||
  version "1.0.6"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user