Move options to top-level

This commit is contained in:
Nathan Bierema 2022-10-10 09:20:29 -04:00
parent e86e5df446
commit da03640928
14 changed files with 102 additions and 102 deletions

View File

@ -2,7 +2,7 @@ import { Store } from 'redux';
import configureStore, { BackgroundAction } from './store/backgroundStore';
import openDevToolsWindow, { DevToolsPosition } from './openWindow';
import { createMenu, removeMenu } from './contextMenus';
import syncOptions from '../browser/extension/options/syncOptions';
import syncOptions from '../options/syncOptions';
import { BackgroundState } from './store/backgroundReducer';
declare global {

View File

@ -15,7 +15,7 @@ import syncOptions, {
Options,
OptionsMessage,
SyncOptions,
} from '../../browser/extension/options/syncOptions';
} from '../../options/syncOptions';
import openDevToolsWindow, { DevToolsPosition } from '../openWindow';
import { getReport } from '../logging';
import { Action, Dispatch, MiddlewareAPI } from 'redux';

View File

@ -2,7 +2,7 @@ import {
injectOptions,
getOptionsFromBg,
isAllowed,
} from '../options/syncOptions';
} from '../../../options/syncOptions';
import type { TabMessage } from '../../../background/store/apiMiddleware';
import {
PageScriptToContentScriptMessage,

View File

@ -28,7 +28,7 @@ import {
Features,
} from '@redux-devtools/app';
import configureStore, { getUrlParam } from '../../../app/stores/enhancerStore';
import { isAllowed, Options } from '../options/syncOptions';
import { isAllowed, Options } from '../../../options/syncOptions';
import Monitor from '../../../app/service/Monitor';
import {
noFiltersApplied,

View File

@ -1,5 +1,5 @@
import React from 'react';
import { FilterState } from '../../../app/api/filters';
import { FilterState } from '../app/api/filters';
import { OptionsProps } from './Options';
export default ({ options, saveOption }: OptionsProps) => {

View File

@ -3,7 +3,7 @@ import { createRoot } from 'react-dom/client';
import OptionsComponent from './Options';
import { Options } from './syncOptions';
import '../../views/options.pug';
import './options.pug';
chrome.runtime.getBackgroundPage((background) => {
const syncOptions = background!.syncOptions;

View File

@ -1,93 +1,93 @@
doctype html
html
head
meta(charset='UTF-8')
title Redux DevTools Options
style.
body {
padding: 2px;
min-width: 380px;
}
.option-group {
/* Reset the default fieldset styles */
margin: initial;
border: initial;
padding: initial;
}
.option-group + .option-group {
margin-top: 30px;
}
.option-group__title {
/* Reset the default legend styles */
margin: initial;
padding: initial;
margin-bottom: 8px;
font-weight: bold;
font-size: 30px;
}
.option + .option {
margin-top: 5px;
}
.option__textarea {
margin-top: 2px;
width: 300px;
min-height: 50px;
}
.option__hint {
margin-top: 2px;
font-size: 10px;
}
.option__textarea + .option__hint {
margin-top: -2px;
}
/* Checkbox and radio styling */
.option_type_checkbox .option__element,
.option_type_radio .option__element {
vertical-align: bottom;
}
.option_type_checkbox .option__label,
.option_type_radio .option__label {
margin-left: 4px;
}
.option_type_checkbox .option__textarea,
.option_type_checkbox .option__hint,
.option_type_radio .option__textarea,
.option_type_radio .option__hint {
margin-left: 20px;
}
/* Checkbox styling */
.option_type_checkbox .option__element {
/* Checkboxes in Chrome are 2px narrower than radio buttons.
These margins align them. */
margin-left: 1px;
/* ...margin-right is 2px instead of 1px
because both radios and checkboxes have initial margin-right of 1px */
margin-right: 2px;
}
/* Value-based styling */
.option_value_max-age {
margin-left: 20px;
}
.option_value_max-age .option__element {
width: 50px;
}
body
#root
script(src='/options.bundle.js')
doctype html
html
head
meta(charset='UTF-8')
title Redux DevTools Options
style.
body {
padding: 2px;
min-width: 380px;
}
.option-group {
/* Reset the default fieldset styles */
margin: initial;
border: initial;
padding: initial;
}
.option-group + .option-group {
margin-top: 30px;
}
.option-group__title {
/* Reset the default legend styles */
margin: initial;
padding: initial;
margin-bottom: 8px;
font-weight: bold;
font-size: 30px;
}
.option + .option {
margin-top: 5px;
}
.option__textarea {
margin-top: 2px;
width: 300px;
min-height: 50px;
}
.option__hint {
margin-top: 2px;
font-size: 10px;
}
.option__textarea + .option__hint {
margin-top: -2px;
}
/* Checkbox and radio styling */
.option_type_checkbox .option__element,
.option_type_radio .option__element {
vertical-align: bottom;
}
.option_type_checkbox .option__label,
.option_type_radio .option__label {
margin-left: 4px;
}
.option_type_checkbox .option__textarea,
.option_type_checkbox .option__hint,
.option_type_radio .option__textarea,
.option_type_radio .option__hint {
margin-left: 20px;
}
/* Checkbox styling */
.option_type_checkbox .option__element {
/* Checkboxes in Chrome are 2px narrower than radio buttons.
These margins align them. */
margin-left: 1px;
/* ...margin-right is 2px instead of 1px
because both radios and checkboxes have initial margin-right of 1px */
margin-right: 2px;
}
/* Value-based styling */
.option_value_max-age {
margin-left: 20px;
}
.option_value_max-age .option__element {
width: 50px;
}
body
#root
script(src='/options.bundle.js')

View File

@ -1,4 +1,4 @@
import { FilterState, FilterStateValue } from '../../../app/api/filters';
import { FilterState, FilterStateValue } from '../app/api/filters';
export interface Options {
readonly useEditor: number;

View File

@ -11,11 +11,11 @@ const baseConfig = (params) => ({
mode: params.mode,
entry: params.input || {
background: [mock, '../src/background/index'],
options: [mock, `${extpath}options/index`],
options: [mock, '../src/options/index'],
window: [`${extpath}window/index`],
remote: [`${extpath}window/remote`],
devpanel: [mock, '../src/devpanel/index'],
devtools: [`${extpath}devtools/index`],
devtools: ['../src/devtools/index'],
content: [mock, `${extpath}inject/contentScript`],
pagewrap: [`${extpath}inject/pageScriptWrap`],
...params.inputExtra,