mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-11 14:07:13 +03:00
130 lines
4.0 KiB
TypeScript
130 lines
4.0 KiB
TypeScript
import * as React from "react";
|
|
|
|
import Config from "../config"
|
|
import { CategorySkipOption } from "../types";
|
|
|
|
export interface CategorySkipOptionsProps {
|
|
category: string;
|
|
defaultColor: string;
|
|
}
|
|
|
|
export interface CategorySkipOptionsState {
|
|
color: string;
|
|
}
|
|
|
|
class CategorySkipOptionsComponent extends React.Component<CategorySkipOptionsProps, CategorySkipOptionsState> {
|
|
|
|
constructor(props: CategorySkipOptionsProps) {
|
|
super(props);
|
|
|
|
// Setup state
|
|
this.state = {
|
|
color: props.defaultColor
|
|
}
|
|
}
|
|
|
|
render() {
|
|
let defaultOption = "disable";
|
|
// Set the default opton properly
|
|
for (const categorySelection of Config.config.categorySelections) {
|
|
if (categorySelection.name === this.props.category) {
|
|
switch (categorySelection.option) {
|
|
case CategorySkipOption.ShowOverlay:
|
|
defaultOption = "showOverlay";
|
|
break;
|
|
case CategorySkipOption.ManualSkip:
|
|
defaultOption = "manualSkip";
|
|
break;
|
|
case CategorySkipOption.AutoSkip:
|
|
defaultOption = "autoSkip";
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return (
|
|
<tr id={this.props.category + "OptionsRow"}
|
|
className="categoryTableElement">
|
|
<td id={this.props.category + "OptionName"}
|
|
className="categoryTableLabel">
|
|
{chrome.i18n.getMessage("category_" + this.props.category)}
|
|
</td>
|
|
|
|
<td id={this.props.category + "SkipOption"}>
|
|
<select
|
|
className="categoryOptionsSelector"
|
|
defaultValue={defaultOption}
|
|
onChange={this.skipOptionSelected.bind(this)}>
|
|
{this.getCategorySkipOptions()}
|
|
</select>
|
|
</td>
|
|
|
|
{/* TODO: Add colour chooser */}
|
|
</tr>
|
|
);
|
|
}
|
|
|
|
skipOptionSelected(event: React.ChangeEvent<HTMLSelectElement>): void {
|
|
let option: CategorySkipOption;
|
|
|
|
this.removeCurrentCategorySelection();
|
|
|
|
switch (event.target.value) {
|
|
case "disable":
|
|
return;
|
|
case "showOverlay":
|
|
option = CategorySkipOption.ShowOverlay;
|
|
|
|
break;
|
|
case "manualSkip":
|
|
option = CategorySkipOption.ManualSkip;
|
|
|
|
break;
|
|
case "autoSkip":
|
|
option = CategorySkipOption.AutoSkip;
|
|
|
|
break;
|
|
}
|
|
|
|
Config.config.categorySelections.push({
|
|
name: this.props.category,
|
|
option: option
|
|
});
|
|
|
|
// Forces the Proxy to send this to the chrome storage API
|
|
Config.config.categorySelections = Config.config.categorySelections;
|
|
}
|
|
|
|
/** Removes this category from the config list of category selections */
|
|
removeCurrentCategorySelection(): void {
|
|
// Remove it if it exists
|
|
for (let i = 0; i < Config.config.categorySelections.length; i++) {
|
|
if (Config.config.categorySelections[i].name === this.props.category) {
|
|
Config.config.categorySelections.splice(i, 1);
|
|
|
|
// Forces the Proxy to send this to the chrome storage API
|
|
Config.config.categorySelections = Config.config.categorySelections;
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
getCategorySkipOptions(): JSX.Element[] {
|
|
let elements: JSX.Element[] = [];
|
|
""
|
|
let optionNames = ["disable", "showOverlay", "manualSkip", "autoSkip"];
|
|
|
|
for (const optionName of optionNames) {
|
|
elements.push(
|
|
<option key={optionName} value={optionName}>
|
|
{chrome.i18n.getMessage(optionName)}
|
|
</option>
|
|
);
|
|
}
|
|
|
|
return elements;
|
|
}
|
|
}
|
|
|
|
export default CategorySkipOptionsComponent; |