mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 11:44:40 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fda0071251 |
+120
-103
@@ -2,83 +2,87 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
forbidden: [
|
forbidden: [
|
||||||
{
|
{
|
||||||
name: "no-circular",
|
name: 'no-circular',
|
||||||
severity: "warn",
|
severity: 'warn',
|
||||||
comment:
|
comment:
|
||||||
"This dependency is part of a circular relationship. You might want to revise " +
|
'This dependency is part of a circular relationship. You might want to revise ' +
|
||||||
"your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ",
|
'your solution (i.e. use dependency inversion, make sure the modules have a single responsibility) ',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
circular: true,
|
circular: true
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "no-orphans",
|
name: 'no-orphans',
|
||||||
comment:
|
comment:
|
||||||
"This is an orphan module - it's likely not used (anymore?). Either use it or " +
|
"This is an orphan module - it's likely not used (anymore?). Either use it or " +
|
||||||
"remove it. If it's logical this module is an orphan (i.e. it's a config file), " +
|
"remove it. If it's logical this module is an orphan (i.e. it's a config file), " +
|
||||||
"add an exception for it in your dependency-cruiser configuration. By default " +
|
"add an exception for it in your dependency-cruiser configuration. By default " +
|
||||||
"this rule does not scrutinize dot-files (e.g. .eslintrc.js), TypeScript declaration " +
|
"this rule does not scrutinize dot-files (e.g. .eslintrc.js), TypeScript declaration " +
|
||||||
"files (.d.ts), tsconfig.json and some of the babel and webpack configs.",
|
"files (.d.ts), tsconfig.json and some of the babel and webpack configs.",
|
||||||
severity: "warn",
|
severity: 'warn',
|
||||||
from: {
|
from: {
|
||||||
orphan: true,
|
orphan: true,
|
||||||
pathNot: [
|
pathNot: [
|
||||||
"(^|/)[.][^/]+[.](?:js|cjs|mjs|ts|cts|mts|json)$", // dot files
|
'(^|/)[.][^/]+[.](?:js|cjs|mjs|ts|cts|mts|json)$', // dot files
|
||||||
"[.]d[.]ts$", // TypeScript declaration files
|
'[.]d[.]ts$', // TypeScript declaration files
|
||||||
"(^|/)tsconfig[.]json$", // TypeScript config
|
'(^|/)tsconfig[.]json$', // TypeScript config
|
||||||
"(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$", // other configs
|
'(^|/)(?:babel|webpack)[.]config[.](?:js|cjs|mjs|ts|cts|mts|json)$' // other configs
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
to: {},
|
to: {},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "no-deprecated-core",
|
name: 'no-deprecated-core',
|
||||||
comment:
|
comment:
|
||||||
"A module depends on a node core module that has been deprecated. Find an alternative - these are " +
|
'A module depends on a node core module that has been deprecated. Find an alternative - these are ' +
|
||||||
"bound to exist - node doesn't deprecate lightly.",
|
"bound to exist - node doesn't deprecate lightly.",
|
||||||
severity: "warn",
|
severity: 'warn',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
dependencyTypes: ["core"],
|
dependencyTypes: [
|
||||||
path: [
|
'core'
|
||||||
"^v8/tools/codemap$",
|
|
||||||
"^v8/tools/consarray$",
|
|
||||||
"^v8/tools/csvparser$",
|
|
||||||
"^v8/tools/logreader$",
|
|
||||||
"^v8/tools/profile_view$",
|
|
||||||
"^v8/tools/profile$",
|
|
||||||
"^v8/tools/SourceMap$",
|
|
||||||
"^v8/tools/splaytree$",
|
|
||||||
"^v8/tools/tickprocessor-driver$",
|
|
||||||
"^v8/tools/tickprocessor$",
|
|
||||||
"^node-inspect/lib/_inspect$",
|
|
||||||
"^node-inspect/lib/internal/inspect_client$",
|
|
||||||
"^node-inspect/lib/internal/inspect_repl$",
|
|
||||||
"^async_hooks$",
|
|
||||||
"^punycode$",
|
|
||||||
"^domain$",
|
|
||||||
"^constants$",
|
|
||||||
"^sys$",
|
|
||||||
"^_linklist$",
|
|
||||||
"^_stream_wrap$",
|
|
||||||
],
|
],
|
||||||
},
|
path: [
|
||||||
|
'^v8/tools/codemap$',
|
||||||
|
'^v8/tools/consarray$',
|
||||||
|
'^v8/tools/csvparser$',
|
||||||
|
'^v8/tools/logreader$',
|
||||||
|
'^v8/tools/profile_view$',
|
||||||
|
'^v8/tools/profile$',
|
||||||
|
'^v8/tools/SourceMap$',
|
||||||
|
'^v8/tools/splaytree$',
|
||||||
|
'^v8/tools/tickprocessor-driver$',
|
||||||
|
'^v8/tools/tickprocessor$',
|
||||||
|
'^node-inspect/lib/_inspect$',
|
||||||
|
'^node-inspect/lib/internal/inspect_client$',
|
||||||
|
'^node-inspect/lib/internal/inspect_repl$',
|
||||||
|
'^async_hooks$',
|
||||||
|
'^punycode$',
|
||||||
|
'^domain$',
|
||||||
|
'^constants$',
|
||||||
|
'^sys$',
|
||||||
|
'^_linklist$',
|
||||||
|
'^_stream_wrap$'
|
||||||
|
],
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "not-to-deprecated",
|
name: 'not-to-deprecated',
|
||||||
comment:
|
comment:
|
||||||
"This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later " +
|
'This module uses a (version of an) npm module that has been deprecated. Either upgrade to a later ' +
|
||||||
"version of that module, or find an alternative. Deprecated modules are a security risk.",
|
'version of that module, or find an alternative. Deprecated modules are a security risk.',
|
||||||
severity: "warn",
|
severity: 'warn',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
dependencyTypes: ["deprecated"],
|
dependencyTypes: [
|
||||||
},
|
'deprecated'
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "no-non-package-json",
|
name: 'no-non-package-json',
|
||||||
severity: "error",
|
severity: 'error',
|
||||||
comment:
|
comment:
|
||||||
"This module depends on an npm package that isn't in the 'dependencies' section of your package.json. " +
|
"This module depends on an npm package that isn't in the 'dependencies' section of your package.json. " +
|
||||||
"That's problematic as the package either (1) won't be available on live (2 - worse) will be " +
|
"That's problematic as the package either (1) won't be available on live (2 - worse) will be " +
|
||||||
@@ -86,75 +90,84 @@ module.exports = {
|
|||||||
"in your package.json.",
|
"in your package.json.",
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
dependencyTypes: ["npm-no-pkg", "npm-unknown"],
|
dependencyTypes: [
|
||||||
},
|
'npm-no-pkg',
|
||||||
|
'npm-unknown'
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "not-to-unresolvable",
|
name: 'not-to-unresolvable',
|
||||||
comment:
|
comment:
|
||||||
"This module depends on a module that cannot be found ('resolved to disk'). If it's an npm " +
|
"This module depends on a module that cannot be found ('resolved to disk'). If it's an npm " +
|
||||||
"module: add it to your package.json. In all other cases you likely already know what to do.",
|
'module: add it to your package.json. In all other cases you likely already know what to do.',
|
||||||
severity: "error",
|
severity: 'error',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
couldNotResolve: true,
|
couldNotResolve: true
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "no-duplicate-dep-types",
|
name: 'no-duplicate-dep-types',
|
||||||
comment:
|
comment:
|
||||||
"Likely this module depends on an external ('npm') package that occurs more than once " +
|
"Likely this module depends on an external ('npm') package that occurs more than once " +
|
||||||
"in your package.json i.e. bot as a devDependencies and in dependencies. This will cause " +
|
"in your package.json i.e. bot as a devDependencies and in dependencies. This will cause " +
|
||||||
"maintenance problems later on.",
|
"maintenance problems later on.",
|
||||||
severity: "warn",
|
severity: 'warn',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
moreThanOneDependencyType: true,
|
moreThanOneDependencyType: true,
|
||||||
// as it's pretty common to have a type import be a type only import
|
// as it's pretty common to have a type import be a type only import
|
||||||
// _and_ (e.g.) a devDependency - don't consider type-only dependency
|
// _and_ (e.g.) a devDependency - don't consider type-only dependency
|
||||||
// types for this rule
|
// types for this rule
|
||||||
dependencyTypesNot: ["type-only"],
|
dependencyTypesNot: ["type-only"]
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/* rules you might want to tweak for your specific situation: */
|
/* rules you might want to tweak for your specific situation: */
|
||||||
|
|
||||||
{
|
{
|
||||||
name: "not-to-spec",
|
name: 'not-to-spec',
|
||||||
comment:
|
comment:
|
||||||
"This module depends on a spec (test) file. The sole responsibility of a spec file is to test code. " +
|
'This module depends on a spec (test) file. The sole responsibility of a spec file is to test code. ' +
|
||||||
"If there's something in a spec that's of use to other modules, it doesn't have that single " +
|
"If there's something in a spec that's of use to other modules, it doesn't have that single " +
|
||||||
"responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.",
|
'responsibility anymore. Factor it out into (e.g.) a separate utility/ helper or a mock.',
|
||||||
severity: "error",
|
severity: 'error',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
path: "[.](?:spec|test)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$",
|
path: '[.](?:spec|test)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$'
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "not-to-dev-dep",
|
name: 'not-to-dev-dep',
|
||||||
severity: "error",
|
severity: 'error',
|
||||||
comment:
|
comment:
|
||||||
"This module depends on an npm package from the 'devDependencies' section of your " +
|
"This module depends on an npm package from the 'devDependencies' section of your " +
|
||||||
"package.json. It looks like something that ships to production, though. To prevent problems " +
|
'package.json. It looks like something that ships to production, though. To prevent problems ' +
|
||||||
"with npm packages that aren't there on production declare it (only!) in the 'dependencies'" +
|
"with npm packages that aren't there on production declare it (only!) in the 'dependencies'" +
|
||||||
"section of your package.json. If this module is development only - add it to the " +
|
'section of your package.json. If this module is development only - add it to the ' +
|
||||||
"from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration",
|
'from.pathNot re of the not-to-dev-dep rule in the dependency-cruiser configuration',
|
||||||
from: {
|
from: {
|
||||||
path: "^(src)",
|
path: '^(src)',
|
||||||
pathNot: "[.](?:spec|test)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$",
|
pathNot: '[.](?:spec|test)[.](?:js|mjs|cjs|jsx|ts|mts|cts|tsx)$'
|
||||||
},
|
},
|
||||||
to: {
|
to: {
|
||||||
dependencyTypes: ["npm-dev"],
|
dependencyTypes: [
|
||||||
|
'npm-dev',
|
||||||
|
],
|
||||||
// type only dependencies are not a problem as they don't end up in the
|
// type only dependencies are not a problem as they don't end up in the
|
||||||
// production code or are ignored by the runtime.
|
// production code or are ignored by the runtime.
|
||||||
dependencyTypesNot: ["type-only"],
|
dependencyTypesNot: [
|
||||||
pathNot: ["node_modules/@types/"],
|
'type-only'
|
||||||
},
|
],
|
||||||
|
pathNot: [
|
||||||
|
'node_modules/@types/'
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "optional-deps-used",
|
name: 'optional-deps-used',
|
||||||
severity: "info",
|
severity: 'info',
|
||||||
comment:
|
comment:
|
||||||
"This module depends on an npm package that is declared as an optional dependency " +
|
"This module depends on an npm package that is declared as an optional dependency " +
|
||||||
"in your package.json. As this makes sense in limited situations only, it's flagged here. " +
|
"in your package.json. As this makes sense in limited situations only, it's flagged here. " +
|
||||||
@@ -162,28 +175,33 @@ module.exports = {
|
|||||||
"dependency-cruiser configuration.",
|
"dependency-cruiser configuration.",
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
dependencyTypes: ["npm-optional"],
|
dependencyTypes: [
|
||||||
},
|
'npm-optional'
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "peer-deps-used",
|
name: 'peer-deps-used',
|
||||||
comment:
|
comment:
|
||||||
"This module depends on an npm package that is declared as a peer dependency " +
|
"This module depends on an npm package that is declared as a peer dependency " +
|
||||||
"in your package.json. This makes sense if your package is e.g. a plugin, but in " +
|
"in your package.json. This makes sense if your package is e.g. a plugin, but in " +
|
||||||
"other cases - maybe not so much. If the use of a peer dependency is intentional " +
|
"other cases - maybe not so much. If the use of a peer dependency is intentional " +
|
||||||
"add an exception to your dependency-cruiser configuration.",
|
"add an exception to your dependency-cruiser configuration.",
|
||||||
severity: "warn",
|
severity: 'warn',
|
||||||
from: {},
|
from: {},
|
||||||
to: {
|
to: {
|
||||||
dependencyTypes: ["npm-peer"],
|
dependencyTypes: [
|
||||||
},
|
'npm-peer'
|
||||||
},
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
],
|
],
|
||||||
options: {
|
options: {
|
||||||
|
|
||||||
/* Which modules not to follow further when encountered */
|
/* Which modules not to follow further when encountered */
|
||||||
doNotFollow: {
|
doNotFollow: {
|
||||||
/* path: an array of regular expressions in strings to match against */
|
/* path: an array of regular expressions in strings to match against */
|
||||||
path: ["node_modules"],
|
path: ['node_modules']
|
||||||
},
|
},
|
||||||
|
|
||||||
/* Which modules to exclude */
|
/* Which modules to exclude */
|
||||||
@@ -206,7 +224,7 @@ module.exports = {
|
|||||||
As in practice only commonjs ('cjs') and ecmascript modules ('es6')
|
As in practice only commonjs ('cjs') and ecmascript modules ('es6')
|
||||||
are widely used, you can limit the moduleSystems to those.
|
are widely used, you can limit the moduleSystems to those.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// moduleSystems: ['cjs', 'es6'],
|
// moduleSystems: ['cjs', 'es6'],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -231,7 +249,7 @@ module.exports = {
|
|||||||
"specify": for each dependency identify whether it only exists before compilation or also after
|
"specify": for each dependency identify whether it only exists before compilation or also after
|
||||||
*/
|
*/
|
||||||
tsPreCompilationDeps: true,
|
tsPreCompilationDeps: true,
|
||||||
|
|
||||||
/* list of extensions to scan that aren't javascript or compile-to-javascript.
|
/* list of extensions to scan that aren't javascript or compile-to-javascript.
|
||||||
Empty by default. Only put extensions in here that you want to take into
|
Empty by default. Only put extensions in here that you want to take into
|
||||||
account that are _not_ parsable.
|
account that are _not_ parsable.
|
||||||
@@ -256,7 +274,7 @@ module.exports = {
|
|||||||
defaults to './tsconfig.json'.
|
defaults to './tsconfig.json'.
|
||||||
*/
|
*/
|
||||||
tsConfig: {
|
tsConfig: {
|
||||||
fileName: "tsconfig.json",
|
fileName: 'tsconfig.json'
|
||||||
},
|
},
|
||||||
|
|
||||||
/* Webpack configuration to use to get resolve options from.
|
/* Webpack configuration to use to get resolve options from.
|
||||||
@@ -288,7 +306,7 @@ module.exports = {
|
|||||||
a hack.
|
a hack.
|
||||||
*/
|
*/
|
||||||
// exoticRequireStrings: [],
|
// exoticRequireStrings: [],
|
||||||
|
|
||||||
/* options to pass on to enhanced-resolve, the package dependency-cruiser
|
/* options to pass on to enhanced-resolve, the package dependency-cruiser
|
||||||
uses to resolve module references to disk. The values below should be
|
uses to resolve module references to disk. The values below should be
|
||||||
suitable for most situations
|
suitable for most situations
|
||||||
@@ -297,7 +315,7 @@ module.exports = {
|
|||||||
there will override the ones specified here.
|
there will override the ones specified here.
|
||||||
*/
|
*/
|
||||||
enhancedResolveOptions: {
|
enhancedResolveOptions: {
|
||||||
/* What to consider as an 'exports' field in package.jsons */
|
/* What to consider as an 'exports' field in package.jsons */
|
||||||
exportsFields: ["exports"],
|
exportsFields: ["exports"],
|
||||||
/* List of conditions to check for in the exports field.
|
/* List of conditions to check for in the exports field.
|
||||||
Only works when the 'exportsFields' array is non-empty.
|
Only works when the 'exportsFields' array is non-empty.
|
||||||
@@ -330,13 +348,13 @@ module.exports = {
|
|||||||
for details
|
for details
|
||||||
*/
|
*/
|
||||||
skipAnalysisNotInRules: true,
|
skipAnalysisNotInRules: true,
|
||||||
|
|
||||||
/* List of built-in modules to use on top of the ones node declares.
|
/* List of built-in modules to use on top of the ones node declares.
|
||||||
|
|
||||||
See https://github.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#builtinmodules-influencing-what-to-consider-built-in--core-modules
|
See https://github.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#builtinmodules-influencing-what-to-consider-built-in--core-modules
|
||||||
for details
|
for details
|
||||||
*/
|
*/
|
||||||
builtInModules: {
|
builtInModules: {
|
||||||
add: [
|
add: [
|
||||||
"bun",
|
"bun",
|
||||||
"bun:ffi",
|
"bun:ffi",
|
||||||
@@ -346,8 +364,8 @@ module.exports = {
|
|||||||
"bun:wrap",
|
"bun:wrap",
|
||||||
"detect-libc",
|
"detect-libc",
|
||||||
"undici",
|
"undici",
|
||||||
"ws",
|
"ws"
|
||||||
],
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
reporterOptions: {
|
reporterOptions: {
|
||||||
@@ -357,7 +375,7 @@ module.exports = {
|
|||||||
collapses everything in node_modules to one folder deep so you see
|
collapses everything in node_modules to one folder deep so you see
|
||||||
the external modules, but their innards.
|
the external modules, but their innards.
|
||||||
*/
|
*/
|
||||||
collapsePattern: "node_modules/(?:@[^/]+/[^/]+|[^/]+)",
|
collapsePattern: 'node_modules/(?:@[^/]+/[^/]+|[^/]+)',
|
||||||
|
|
||||||
/* Options to tweak the appearance of your graph.See
|
/* Options to tweak the appearance of your graph.See
|
||||||
https://github.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#reporteroptions
|
https://github.com/sverweij/dependency-cruiser/blob/main/doc/options-reference.md#reporteroptions
|
||||||
@@ -379,8 +397,7 @@ module.exports = {
|
|||||||
dependency graph reporter (`archi`) you probably want to tweak
|
dependency graph reporter (`archi`) you probably want to tweak
|
||||||
this collapsePattern to your situation.
|
this collapsePattern to your situation.
|
||||||
*/
|
*/
|
||||||
collapsePattern:
|
collapsePattern: '^(?:packages|src|lib(s?)|app(s?)|bin|test(s?)|spec(s?))/[^/]+|node_modules/(?:@[^/]+/[^/]+|[^/]+)',
|
||||||
"^(?:packages|src|lib(s?)|app(s?)|bin|test(s?)|spec(s?))/[^/]+|node_modules/(?:@[^/]+/[^/]+|[^/]+)",
|
|
||||||
|
|
||||||
/* Options to tweak the appearance of your graph. If you don't specify a
|
/* Options to tweak the appearance of your graph. If you don't specify a
|
||||||
theme for 'archi' dependency-cruiser will use the one specified in the
|
theme for 'archi' dependency-cruiser will use the one specified in the
|
||||||
@@ -388,10 +405,10 @@ module.exports = {
|
|||||||
*/
|
*/
|
||||||
// theme: { },
|
// theme: { },
|
||||||
},
|
},
|
||||||
text: {
|
"text": {
|
||||||
highlightFocused: true,
|
"highlightFocused": true
|
||||||
},
|
},
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
// generated: dependency-cruiser@16.10.0 on 2025-02-16T22:32:01.621Z
|
// generated: dependency-cruiser@16.10.0 on 2025-02-16T22:32:01.621Z
|
||||||
|
|||||||
+7
-10
@@ -12,15 +12,12 @@
|
|||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
// allow importing ts extensions
|
// allow importing ts extensions
|
||||||
"sort-imports": [
|
"sort-imports": ["error", {
|
||||||
"error",
|
"ignoreCase": true,
|
||||||
{
|
"ignoreDeclarationSort": true,
|
||||||
"ignoreCase": true,
|
"ignoreMemberSort": false,
|
||||||
"ignoreDeclarationSort": true,
|
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
|
||||||
"ignoreMemberSort": false,
|
}],
|
||||||
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"import/extensions": [
|
"import/extensions": [
|
||||||
"error",
|
"error",
|
||||||
"ignorePackages",
|
"ignorePackages",
|
||||||
@@ -32,4 +29,4 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"plugins": ["import"]
|
"plugins": ["import"]
|
||||||
}
|
}
|
||||||
@@ -2,56 +2,55 @@ name: Bug report
|
|||||||
description: Report an issue with the modpack in its unmodified state. For other issues, use Discord.
|
description: Report an issue with the modpack in its unmodified state. For other issues, use Discord.
|
||||||
labels: bug
|
labels: bug
|
||||||
title: "[BUG]"
|
title: "[BUG]"
|
||||||
type: "Bug"
|
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
Before reporting an issue, [please search](https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues) to make sure it has not already been reported (make sure to search closed issues as well!).
|
Before reporting an issue, [please search](https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues) to make sure it has not already been reported (make sure to search closed issues as well!).
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Describe the bug
|
label: Describe the bug
|
||||||
description: Describe your issue. For general issues and questions you'll get a faster answer [from our Discord.](https://discord.gg/YzmbnCDkat)
|
description: Describe your issue. For general issues and questions you'll get a faster answer [from our Discord.](https://discord.gg/YzmbnCDkat)
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: input
|
- type: input
|
||||||
attributes:
|
attributes:
|
||||||
label: Extension version
|
label: Extension version
|
||||||
description: What version of the extension are you using?
|
description: What version of the extension are you using?
|
||||||
placeholder: Find it by opening the config menu and clicking the about icon in the top right.
|
placeholder: Find it by opening the config menu and clicking the about icon in the top right.
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: dropdown
|
- type: dropdown
|
||||||
attributes:
|
attributes:
|
||||||
label: Browser
|
label: Browser
|
||||||
description: Which Browser are you using?
|
description: Which Browser are you using?
|
||||||
options:
|
options:
|
||||||
- Chrome
|
- Chrome
|
||||||
- Firefox
|
- Firefox
|
||||||
- Brave
|
- Brave
|
||||||
- Safari
|
- Safari
|
||||||
- DuckDuckGO
|
- DuckDuckGO
|
||||||
- Microsoft Edge
|
- Microsoft Edge
|
||||||
- Other Chromium-Based Browser
|
- Other Chromium-Based Browser
|
||||||
- Other Non-Chromium-Based Browser
|
- Other Non-Chromium-Based Browser
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: checkboxes
|
- type: checkboxes
|
||||||
attributes:
|
attributes:
|
||||||
label: Confirm
|
label: Confirm
|
||||||
options:
|
options:
|
||||||
- label: This bug report is about an issue with the extension itself. I have not modified the extension nor added any unsupported plugins. If this is not the case, I know that I should post the issue to the extension's Discord support channel instead.
|
- label: This bug report is about an issue with the extension itself. I have not modified the extension nor added any unsupported plugins. If this is not the case, I know that I should post the issue to the extension's Discord support channel instead.
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Additional context
|
label: Additional context
|
||||||
description: Screenshots, video or any other information. Include photos of the console if possible
|
description: Screenshots, video or any other information. Include photos of the console if possible
|
||||||
placeholder: |
|
placeholder: |
|
||||||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
|
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in.
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|||||||
@@ -2,51 +2,53 @@ name: Feature request
|
|||||||
description: Suggest a new Feature to be added or replaced in BetterSeqtaPLUS
|
description: Suggest a new Feature to be added or replaced in BetterSeqtaPLUS
|
||||||
labels: enhancement
|
labels: enhancement
|
||||||
title: "[FR]"
|
title: "[FR]"
|
||||||
|
|
||||||
body:
|
body:
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: Confirm
|
|
||||||
options:
|
|
||||||
- label: "Is this feature request related to a Bug report?"
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: input
|
- type: checkboxes
|
||||||
attributes:
|
attributes:
|
||||||
|
label: Confirm
|
||||||
|
options:
|
||||||
|
- label: "Is this feature request related to a Bug report?"
|
||||||
|
required: false
|
||||||
|
|
||||||
|
- type: input
|
||||||
|
attributes:
|
||||||
label: Bug report link
|
label: Bug report link
|
||||||
description: "If this feature request is related to a bug report, please insert the link to the bug report here"
|
description: "If this feature request is related to a bug report, please insert the link to the bug report here"
|
||||||
placeholder: "https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues/..."
|
placeholder: "https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues/..."
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
## Feature details
|
## Feature details
|
||||||
Before you request a feature, [please search](https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues) if it has already been requested. (Make sure to check closed issues as well!)
|
Before you request a feature, [please search](https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues) if it has already been requested. (Make sure to check closed issues as well!)
|
||||||
|
|
||||||
- type: dropdown
|
|
||||||
attributes:
|
- type: dropdown
|
||||||
label: Feature type
|
attributes:
|
||||||
multiple: false
|
label: Feature type
|
||||||
options:
|
multiple: false
|
||||||
- Graphical
|
options:
|
||||||
- Functional
|
- Graphical
|
||||||
- Not Sure
|
- Functional
|
||||||
validations:
|
- Not Sure
|
||||||
required: true
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
|
||||||
- type: input
|
- type: input
|
||||||
attributes:
|
attributes:
|
||||||
label: Feature Details
|
label: Feature Details
|
||||||
description: Please write, with as much detail as possible, what you would like to see from this feature.
|
description: Please write, with as much detail as possible, what you would like to see from this mod.
|
||||||
placeholder: it would be cool if
|
placeholder: I would like to see...
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Additional details
|
label: Additional details
|
||||||
description: Anything else that would help describe your vision (reference images, descriptions, etc)
|
description: Anything else you want to add?
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|||||||
@@ -1,114 +0,0 @@
|
|||||||
name: 🙋 New Contributor - Need Help Getting Started
|
|
||||||
description: Perfect for first-time contributors who need guidance
|
|
||||||
labels: ["help wanted", "documentation"]
|
|
||||||
title: "[NEW CONTRIBUTOR] "
|
|
||||||
|
|
||||||
body:
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
## Hi there! 👋
|
|
||||||
Welcome to BetterSEQTA+! We're excited to have you join our community.
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: Tell us about yourself (check all that apply)
|
|
||||||
options:
|
|
||||||
- label: "This is my first time contributing to open source"
|
|
||||||
required: false
|
|
||||||
- label: "I'm new to browser extensions"
|
|
||||||
required: false
|
|
||||||
- label: "I'm new to TypeScript/JavaScript"
|
|
||||||
required: false
|
|
||||||
- label: "I have some coding experience but new to this project"
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: What would you like to work on? (check all that apply)
|
|
||||||
options:
|
|
||||||
- label: "Fix a bug 🐛"
|
|
||||||
required: false
|
|
||||||
- label: "Add a new feature ✨"
|
|
||||||
required: false
|
|
||||||
- label: "Improve documentation 📚"
|
|
||||||
required: false
|
|
||||||
- label: "Create a plugin 🧩"
|
|
||||||
required: false
|
|
||||||
- label: "Improve the UI/design 🎨"
|
|
||||||
required: false
|
|
||||||
- label: "Write tests 🧪"
|
|
||||||
required: false
|
|
||||||
- label: "Not sure - I want to help but need guidance!"
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: Have you read our guides?
|
|
||||||
options:
|
|
||||||
- label: "Getting Started Guide (see docs/GETTING_STARTED_CONTRIBUTING.md)"
|
|
||||||
required: true
|
|
||||||
- label: "Architecture Guide (see docs/ARCHITECTURE.md)"
|
|
||||||
required: true
|
|
||||||
- label: "Plugin Development Guide (see docs/plugins/README.md)"
|
|
||||||
required: true
|
|
||||||
|
|
||||||
- type: checkboxes
|
|
||||||
attributes:
|
|
||||||
label: Have you set up the development environment yet?
|
|
||||||
options:
|
|
||||||
- label: Yes, everything works! 🎉
|
|
||||||
required: false
|
|
||||||
- label: Partially - I can run `npm run dev` but having some issues
|
|
||||||
required: false
|
|
||||||
- label: No, I need help with setup
|
|
||||||
required: false
|
|
||||||
- label: I tried but ran into errors (please describe below)
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: input
|
|
||||||
attributes:
|
|
||||||
label: Errors
|
|
||||||
description: "Please list any encountered errors here:"
|
|
||||||
placeholder: "I am encountering issues with..."
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: input
|
|
||||||
attributes:
|
|
||||||
label: Questions or Issues
|
|
||||||
description: "Tell us:
|
|
||||||
1. What specifically would you like help with?
|
|
||||||
2. Are you stuck on anything?
|
|
||||||
3. Do you have any questions about the codebase?
|
|
||||||
4. Is there anything in our documentation that's unclear?"
|
|
||||||
placeholder: "I want help with..."
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: input
|
|
||||||
attributes:
|
|
||||||
label: Ideas or Suggestions
|
|
||||||
description: "If you have any ideas for features, improvements, or just want to share your thoughts:"
|
|
||||||
placeholder: "It would be cool if I could help add..."
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
|
|
||||||
- type: markdown
|
|
||||||
attributes:
|
|
||||||
value: |
|
|
||||||
## What happens next?
|
|
||||||
|
|
||||||
A maintainer will respond within 24-48 hours to:
|
|
||||||
- Answer your questions
|
|
||||||
- Suggest some good issues to work on
|
|
||||||
- Help you with setup if needed
|
|
||||||
- Point you to relevant documentation
|
|
||||||
|
|
||||||
Don't worry if you're new to this - we're here to help! Every expert was once a beginner. 🚀
|
|
||||||
|
|
||||||
**Join our [Discord server](https://discord.gg/YzmbnCDkat) for real-time help and community chat!**
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
+19
-19
@@ -2,9 +2,9 @@ name: NodeJS Build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: ["main"]
|
branches: [ "main" ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: ["main"]
|
branches: [ "main" ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -15,24 +15,24 @@ jobs:
|
|||||||
node-version: [20.x]
|
node-version: [20.x]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
npm install --legacy-peer-deps
|
npm install --legacy-peer-deps
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
- name: Zip dist folder
|
- name: Zip dist folder
|
||||||
run: |
|
run: |
|
||||||
zip -r dist.zip dist
|
zip -r dist.zip dist
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dist-zip
|
name: dist-zip
|
||||||
path: dist.zip
|
path: dist.zip
|
||||||
+8
-6
@@ -4,7 +4,12 @@ package-lock.json
|
|||||||
bun.lockb
|
bun.lockb
|
||||||
pnpm-lock.yaml
|
pnpm-lock.yaml
|
||||||
yarn.lock
|
yarn.lock
|
||||||
bun.lock
|
|
||||||
|
.parcel-cache
|
||||||
|
.env
|
||||||
|
.env.submit
|
||||||
|
|
||||||
|
dependency-graph.svg
|
||||||
|
|
||||||
# Build
|
# Build
|
||||||
extension.zip
|
extension.zip
|
||||||
@@ -14,8 +19,5 @@ betterseqtaplus-safari/
|
|||||||
|
|
||||||
.million/
|
.million/
|
||||||
.vscode/
|
.vscode/
|
||||||
**/.DS_Store
|
|
||||||
.parcel-cache
|
**/.DS_Store
|
||||||
.env
|
|
||||||
.env.submit
|
|
||||||
dependency-graph.svg
|
|
||||||
+11
-11
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
|
|||||||
Examples of behavior that contributes to a positive environment for our
|
Examples of behavior that contributes to a positive environment for our
|
||||||
community include:
|
community include:
|
||||||
|
|
||||||
- Demonstrating empathy and kindness toward other people
|
* Demonstrating empathy and kindness toward other people
|
||||||
- Being respectful of differing opinions, viewpoints, and experiences
|
* Being respectful of differing opinions, viewpoints, and experiences
|
||||||
- Giving and gracefully accepting constructive feedback
|
* Giving and gracefully accepting constructive feedback
|
||||||
- Accepting responsibility and apologizing to those affected by our mistakes,
|
* Accepting responsibility and apologizing to those affected by our mistakes,
|
||||||
and learning from the experience
|
and learning from the experience
|
||||||
- Focusing on what is best not just for us as individuals, but for the
|
* Focusing on what is best not just for us as individuals, but for the
|
||||||
overall community
|
overall community
|
||||||
|
|
||||||
Examples of unacceptable behavior include:
|
Examples of unacceptable behavior include:
|
||||||
|
|
||||||
- The use of sexualized language or imagery, and sexual attention or
|
* The use of sexualized language or imagery, and sexual attention or
|
||||||
advances of any kind
|
advances of any kind
|
||||||
- Trolling, insulting or derogatory comments, and personal or political attacks
|
* Trolling, insulting or derogatory comments, and personal or political attacks
|
||||||
- Public or private harassment
|
* Public or private harassment
|
||||||
- Publishing others' private information, such as a physical or email
|
* Publishing others' private information, such as a physical or email
|
||||||
address, without their explicit permission
|
address, without their explicit permission
|
||||||
- Other conduct which could reasonably be considered inappropriate in a
|
* Other conduct which could reasonably be considered inappropriate in a
|
||||||
professional setting
|
professional setting
|
||||||
|
|
||||||
## Enforcement Responsibilities
|
## Enforcement Responsibilities
|
||||||
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
|
|||||||
### 4. Permanent Ban
|
### 4. Permanent Ban
|
||||||
|
|
||||||
**Community Impact**: Demonstrating a pattern of violation of community
|
**Community Impact**: Demonstrating a pattern of violation of community
|
||||||
standards, including sustained inappropriate behavior, harassment of an
|
standards, including sustained inappropriate behavior, harassment of an
|
||||||
individual, or aggression toward or disparagement of classes of individuals.
|
individual, or aggression toward or disparagement of classes of individuals.
|
||||||
|
|
||||||
**Consequence**: A permanent ban from any sort of public interaction within
|
**Consequence**: A permanent ban from any sort of public interaction within
|
||||||
|
|||||||
+5
-23
@@ -1,31 +1,13 @@
|
|||||||
# Contributing to BetterSEQTA+
|
# Contributing
|
||||||
|
|
||||||
Hey there! 👋 Thanks for your interest in contributing to BetterSEQTA+! We're excited to have you join our community of contributors.
|
When contributing to this repository, please first discuss the change you wish to make via issue,
|
||||||
|
email, or any other method with the owners of this repository before making a change.
|
||||||
## 🚀 New Contributors Start Here!
|
|
||||||
|
|
||||||
**Never contributed to an open source project before?** No worries! We've made it super easy to get started:
|
|
||||||
|
|
||||||
- **📖 Read our [Getting Started Guide](./docs/GETTING_STARTED_CONTRIBUTING.md)** - This walks you through everything step-by-step, from setting up your development environment to making your first pull request.
|
|
||||||
- **🏗️ Understand the codebase** with our [Architecture Guide](./docs/ARCHITECTURE.md)
|
|
||||||
- **🔧 Having issues?** Check our [Troubleshooting Guide](./docs/TROUBLESHOOTING.md)
|
|
||||||
|
|
||||||
We have lots of [`good first issue`](https://github.com/BetterSEQTA/BetterSEQTA-plus/labels/good%20first%20issue) labels that are perfect for beginners!
|
|
||||||
|
|
||||||
## Discussion Before Contributing
|
|
||||||
|
|
||||||
For significant changes, please first discuss what you'd like to change via:
|
|
||||||
- Opening an issue
|
|
||||||
- Joining our Discord server
|
|
||||||
- Emailing the maintainers
|
|
||||||
|
|
||||||
This helps ensure your contribution aligns with the project's goals and saves you time!
|
|
||||||
|
|
||||||
## Community
|
## Community
|
||||||
|
|
||||||
Join our community channels to discuss the project, get help, and connect with other contributors:
|
Join our community channels to discuss the project, get help, and connect with other contributors:
|
||||||
|
|
||||||
- **Discord Server**: [Join our Discord](https://discord.gg/YzmbnCDkat)
|
- **Discord Server**: [Join our Discord](https://discord.gg/betterseqta)
|
||||||
- **GitHub Discussions**: For longer-form conversations
|
- **GitHub Discussions**: For longer-form conversations
|
||||||
- **GitHub Issues**: For bug reports and feature requests
|
- **GitHub Issues**: For bug reports and feature requests
|
||||||
|
|
||||||
@@ -39,7 +21,7 @@ If you're interested in creating plugins for BetterSEQTA+, check out our plugin
|
|||||||
## Pull Request Process
|
## Pull Request Process
|
||||||
|
|
||||||
1. It is recommended to start by opening an issue to discuss the change you wish to make. This will allow us to discuss the change and ensure it is a good fit for the project.
|
1. It is recommended to start by opening an issue to discuss the change you wish to make. This will allow us to discuss the change and ensure it is a good fit for the project.
|
||||||
2. Fork the repo and create your branch from `main`.
|
2. Fork the repo and create your branch from `master`.
|
||||||
3. When writing your pull request, make sure to use the pull request template.
|
3. When writing your pull request, make sure to use the pull request template.
|
||||||
|
|
||||||
### Pull Request Template
|
### Pull Request Template
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
|
||||||
|
#
|
||||||
|
|
||||||
<a href="https://chromewebstore.google.com/detail/betterseqta+/afdgaoaclhkhemfkkkonemoapeinchel">
|
<a href="https://chromewebstore.google.com/detail/betterseqta+/afdgaoaclhkhemfkkkonemoapeinchel">
|
||||||
<img src="https://socialify.git.ci/betterseqta/betterseqta-plus/image?description=1&font=Inter&forks=1&issues=1&logo=data%3Aimage%2Fsvg%2Bxml%2C%253Csvg%20height%3D%27656pt%27%20fill%3D%27white%27%20preserveAspectRatio%3D%27xMidYMid%20meet%27%20viewBox%3D%270%200%20658%20656%27%20width%3D%27658pt%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%253E%253Cg%20transform%3D%27matrix(.1%200%200%20-.1%200%20656)%27%253E%253Cpath%20d%3D%27m2960%206499c-918-100-1726-561-2278-1299-196-262-374-609-475-925-171-533-203-1109-91-1655%20228-1115%201030-2032%202104-2408%20356-124%20680-177%201080-176%20269%201%20403%2014%20650%2064%20790%20159%201503%20624%201980%201290%20714%20998%20799%202342%20217%203420-488%20902-1361%201515-2382%201671-113%2017-196%2022-430%2024-159%202-328-1-375-6zm566-1443c476-99%20885-385%201134-791%20190-309%20282-696%20250-1045-22-240-73-420-180-635-78-156-159-275-274-401l-77-84h445%20446v-235-236l-1162%204-1163%203-100%2023c-449%20101-812%20337-1071%20697-77%20107-193%20335-233%20459-115%20358-116%20726-1%201078%20209%20644%20766%201101%201446%201187%20128%2016%20405%204%20540-24z%27%2F%253E%253Cpath%20d%3D%27m3065%204604c-250-36-396-89-576-209-280-187-470-478-535-821-25-135-16-395%2019-525%2095-351%20331-644%20651-806%2098-49%20225-93%20331-114%2092-18%20368-18%20460%200%20481%2095%20853%20444%20982%20921%2035%20129%2044%20389%2019%20524-36%20191-121%20387-228%20531-186%20249-476%20428-783%20485-65%2012-291%2021-340%2014z%27%2F%253E%253C%2Fg%253E%253C%2Fsvg%253E&name=1&owner=1&pattern=Signal&stargazers=1&theme=Dark" />
|
<img src="https://socialify.git.ci/betterseqta/betterseqta-plus/image?description=1&font=Inter&forks=1&issues=1&logo=data%3Aimage%2Fsvg%2Bxml%2C%253Csvg%20height%3D%27656pt%27%20fill%3D%27white%27%20preserveAspectRatio%3D%27xMidYMid%20meet%27%20viewBox%3D%270%200%20658%20656%27%20width%3D%27658pt%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%253E%253Cg%20transform%3D%27matrix(.1%200%200%20-.1%200%20656)%27%253E%253Cpath%20d%3D%27m2960%206499c-918-100-1726-561-2278-1299-196-262-374-609-475-925-171-533-203-1109-91-1655%20228-1115%201030-2032%202104-2408%20356-124%20680-177%201080-176%20269%201%20403%2014%20650%2064%20790%20159%201503%20624%201980%201290%20714%20998%20799%202342%20217%203420-488%20902-1361%201515-2382%201671-113%2017-196%2022-430%2024-159%202-328-1-375-6zm566-1443c476-99%20885-385%201134-791%20190-309%20282-696%20250-1045-22-240-73-420-180-635-78-156-159-275-274-401l-77-84h445%20446v-235-236l-1162%204-1163%203-100%2023c-449%20101-812%20337-1071%20697-77%20107-193%20335-233%20459-115%20358-116%20726-1%201078%20209%20644%20766%201101%201446%201187%20128%2016%20405%204%20540-24z%27%2F%253E%253Cpath%20d%3D%27m3065%204604c-250-36-396-89-576-209-280-187-470-478-535-821-25-135-16-395%2019-525%2095-351%20331-644%20651-806%2098-49%20225-93%20331-114%2092-18%20368-18%20460%200%20481%2095%20853%20444%20982%20921%2035%20129%2044%20389%2019%20524-36%20191-121%20387-228%20531-186%20249-476%20428-783%20485-65%2012-291%2021-340%2014z%27%2F%253E%253C%2Fg%253E%253C%2Fsvg%253E&name=1&owner=1&pattern=Signal&stargazers=1&theme=Dark" />
|
||||||
</a>
|
</a>
|
||||||
@@ -8,7 +11,7 @@
|
|||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a target="_blank" href="https://chrome.google.com/webstore/detail/betterseqta%20/afdgaoaclhkhemfkkkonemoapeinchel"><img src="https://user-images.githubusercontent.com/95666457/149519713-159d7ef7-2c21-4034-a616-f037ff46d9a4.png" alt="ChromeDownload" width="250"></a>
|
<a target="_blank" href="https://chrome.google.com/webstore/detail/betterseqta%20/afdgaoaclhkhemfkkkonemoapeinchel"><img src="https://user-images.githubusercontent.com/95666457/149519713-159d7ef7-2c21-4034-a616-f037ff46d9a4.png" alt="ChromeDownload" width="250"></a>
|
||||||
<a target="_blank" href="https://discord.gg/YzmbnCDkat"><img src="https://github.com/BetterSEQTA/BetterSEQTA-Plus/assets/108050083/23055730-b16e-44c0-9bef-221d8545af92" width="240" style="border-radius:10%;" /></a>
|
<a target="_blank" href="https://discord.gg/YzmbnCDkat"><img src="https://github.com/SethBurkart123/EvenBetterSEQTA/assets/108050083/23055730-b16e-44c0-9bef-221d8545af92" width="240" style="border-radius:10%;" /></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
@@ -50,59 +53,70 @@
|
|||||||
|
|
||||||
## Creating Custom Themes
|
## Creating Custom Themes
|
||||||
|
|
||||||
If you are looking to create custom themes, I would recommend you start at the official documentation [here](https://betterseqta.gitbook.io/betterseqta-docs). You can see some premade examples along with a compilation script that can be used to allow for CSS frameworks and libraries such as SCSS to be used [here](https://github.com/BetterSEQTA/BetterSEQTA-Theme-Generator).
|
If you are looking to create custom themes, I would recommend you start at the official documentation [here](https://betterseqta.gitbook.io/betterseqta-docs). You can see some premade examples along with a compilation script that can be used to allow for CSS frameworks and libraries such as SCSS to be used [here](https://github.com/BetterSEQTA/BetterSEQTA-Theme-Generator).
|
||||||
|
|
||||||
Don't worry- if you get stuck feel free to ask around in the [discord](https://discord.gg/YzmbnCDkat). We're open and happy to help out! Happy creating :)
|
Don't worry- if you get stuck feel free to ask around in the [discord](https://discord.gg/YzmbnCDkat). We're open and happy to help out! Happy creating :)
|
||||||
|
|
||||||
## 🚀 Want to Contribute?
|
## Getting started
|
||||||
|
|
||||||
**New contributors welcome!** 🎉 We've made it easy to get started:
|
1. Clone the repository
|
||||||
|
|
||||||
- **👋 New to the project?** Start with our [Getting Started Guide](./docs/GETTING_STARTED_CONTRIBUTING.md)
|
```
|
||||||
- **🏗️ Want to understand the code?** Check out our [Architecture Guide](./docs/ARCHITECTURE.md)
|
git clone https://github.com/BetterSEQTA/BetterSEQTA-Plus
|
||||||
- **🧩 Interested in plugins?** Read our [Plugin Development Guide](./docs/plugins/README.md)
|
|
||||||
- **🐛 Found a bug?** Open an [issue](https://github.com/BetterSEQTA/BetterSEQTA-plus/issues) or fix it yourself!
|
|
||||||
- **💬 Need help?** Join our [Discord community](https://discord.gg/YzmbnCDkat)
|
|
||||||
|
|
||||||
We have lots of https://github.com/BetterSEQTA/BetterSEQTA-Plus/labels/good%20first%20issue labels perfect for beginners!
|
|
||||||
|
|
||||||
## Quick Development Setup
|
|
||||||
|
|
||||||
**1. Fork & Clone**
|
|
||||||
```bash
|
|
||||||
git clone https://github.com/YOUR_USERNAME/BetterSEQTA-Plus
|
|
||||||
cd BetterSEQTA-Plus
|
|
||||||
```
|
```
|
||||||
|
|
||||||
**2. Install & Run**
|
|
||||||
```bash
|
|
||||||
npm install --legacy-peer-deps
|
1. Install dependencies
|
||||||
npm run dev
|
|
||||||
|
You may install the dependencies like below:
|
||||||
|
|
||||||
|
```
|
||||||
|
npm install # or your preferred package manager like pnpm or yarn
|
||||||
```
|
```
|
||||||
|
|
||||||
**3. Load in Browser**
|
But it is recommended to do it like this:
|
||||||
1. Go to `chrome://extensions`
|
|
||||||
2. Enable "Developer mode"
|
|
||||||
3. Click "Load unpacked" → Select `dist` folder
|
|
||||||
4. Visit a SEQTA page to see it work! 🎉
|
|
||||||
> [!WARNING]
|
|
||||||
> Whenever you update the extension while not in dev mode, you will need to use the reload button on the extension page.
|
|
||||||
|
|
||||||
📚 **Need more details?** Check our [detailed setup guide](./docs/GETTING_STARTED_CONTRIBUTING.md#your-first-30-minutes)
|
|
||||||
|
|
||||||
### Building for Production
|
|
||||||
|
|
||||||
```bash
|
|
||||||
npm run build # Build for all browsers
|
|
||||||
npm run zip # Package for distribution (requires 7-Zip)
|
|
||||||
```
|
```
|
||||||
|
npm install --legacy-peer-deps # Only NPM supported
|
||||||
|
```
|
||||||
|
### Running Development
|
||||||
|
2. Run the dev script (it updates as you save files)
|
||||||
|
|
||||||
|
```
|
||||||
|
npm run dev # or use your perferred package manager
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Building for production
|
||||||
|
|
||||||
|
2. Run the build script
|
||||||
|
|
||||||
|
```
|
||||||
|
npm run build # or use your perferred package manager
|
||||||
|
```
|
||||||
|
|
||||||
|
2.1. Package it up (optional)
|
||||||
|
|
||||||
|
```
|
||||||
|
npm run zip # This REQUIRES 7-Zip to be installed in order to work. You can also use your perferred package manager
|
||||||
|
```
|
||||||
|
3. Load the extension into chrome
|
||||||
|
|
||||||
|
- Go to `chrome://extensions`
|
||||||
|
- Enable developer mode
|
||||||
|
- Click `Load unpacked`
|
||||||
|
- Select the `dist` folder
|
||||||
|
|
||||||
|
Just remember, in order to update changes to the extension if you are running in developer mode, you need to click the refresh button on the extension in `chrome://extensions` whenever anything's changed.
|
||||||
|
|
||||||
## Folder Structure
|
## Folder Structure
|
||||||
|
|
||||||
The folder structure is as follows:
|
The folder structure is as follows:
|
||||||
|
|
||||||
- The `src` folder contains source files that are compiled to the build directory.
|
- The `src` folder contains source files that are compiled to the build directory.
|
||||||
|
-
|
||||||
- The `src/plugins` folder contains vital loaders required for BetterSEQTA+ functionality.
|
- The `src/plugins` folder contains vital loaders required for BetterSEQTA+ functionality.
|
||||||
|
|
||||||
- The `src/interface` folder contains source React & Svelte files that are required for the Settings page.
|
- The `src/interface` folder contains source React & Svelte files that are required for the Settings page.
|
||||||
@@ -116,10 +130,9 @@ The folder structure is as follows:
|
|||||||
</a>
|
</a>
|
||||||
|
|
||||||
Want to contribute? [Click Here!](https://github.com/BetterSEQTA/BetterSEQTA-Plus/blob/main/CONTRIBUTING.md)
|
Want to contribute? [Click Here!](https://github.com/BetterSEQTA/BetterSEQTA-Plus/blob/main/CONTRIBUTING.md)
|
||||||
|
|
||||||
## Credits
|
## Credits
|
||||||
|
|
||||||
This extension was initially developed by [Nulkem](https://github.com/Nulkem/betterseqta), was ported to manifest V3 by [MEGA-Dawg68](https://github.com/MEGA-Dawg68) and is currently under active development from lead developers [SethBurkart123](https://github.com/SethBurkart123) and [Crazypersonalph](https://github.com/Crazypersonalph) with help from other volunteers.
|
This extension was initially developed by [Nulkem](https://github.com/Nulkem/betterseqta), was ported to manifest V3 by [MEGA-Dawg68](https://github.com/MEGA-Dawg68) and is currently under active development by [SethBurkart123](https://github.com/SethBurkart123) and [Crazypersonalph](https://github.com/Crazypersonalph)
|
||||||
|
|
||||||
## Star History
|
## Star History
|
||||||
|
|
||||||
|
|||||||
+4
-5
@@ -4,13 +4,12 @@
|
|||||||
|
|
||||||
Below here is the supported versions of BetterSEQTA+. Anything older than this is not supported and contains bugs.
|
Below here is the supported versions of BetterSEQTA+. Anything older than this is not supported and contains bugs.
|
||||||
|
|
||||||
| Version | Supported |
|
| Version | Supported |
|
||||||
| ------- | --------- |
|
| ------- | ------------------ |
|
||||||
| 3.4.3 | ✅ |
|
| 3.4.3 | ✅ |
|
||||||
| < 3.4.3 | :x: |
|
| < 3.4.3 | :x: |
|
||||||
|
|
||||||
`*` May not work on other devices.
|
`*` May not work on other devices.
|
||||||
|
|
||||||
## Reporting a Vulnerability
|
## Reporting a Vulnerability
|
||||||
|
|
||||||
If you find vulnerabilities, REPORT IT IMMEDIATELY. open the [advisories tab](https://github.com/BetterSEQTA/BetterSEQTA-Plus/security/advisories) on the left and click the green "report a vulnerability" button or use [this quick-link](https://github.com/BetterSEQTA/BetterSEQTA-Plus/security/advisories/new) to create a new report
|
If you find vulnerabilities, REPORT IT IMMEDIATELY. open the [advisories tab](https://github.com/BetterSEQTA/BetterSEQTA-Plus/security/advisories) on the left and click the green "report a vulnerability" button or use [this quick-link](https://github.com/BetterSEQTA/BetterSEQTA-Plus/security/advisories/new) to create a new report
|
||||||
|
|||||||
@@ -1,235 +0,0 @@
|
|||||||
# BetterSEQTA+ Architecture
|
|
||||||
|
|
||||||
Hey there! 👋 New to the codebase and feeling a bit lost? Don't worry - this guide will help you understand how everything fits together!
|
|
||||||
|
|
||||||
## Table of Contents
|
|
||||||
|
|
||||||
- [Overview](#overview)
|
|
||||||
- [High-Level Architecture](#high-level-architecture)
|
|
||||||
- [Core Components](#core-components)
|
|
||||||
- [Plugin System](#plugin-system)
|
|
||||||
- [File Structure Explained](#file-structure-explained)
|
|
||||||
- [Data Flow](#data-flow)
|
|
||||||
- [Browser Extension Basics](#browser-extension-basics)
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
|
|
||||||
BetterSEQTA+ is a browser extension that enhances SEQTA Learn by:
|
|
||||||
- Adding new features through a plugin system
|
|
||||||
- Providing customizable themes and UI improvements
|
|
||||||
- Offering better navigation and user experience
|
|
||||||
|
|
||||||
Think of it like this: **SEQTA Learn + BetterSEQTA+ = Enhanced SEQTA Experience**
|
|
||||||
|
|
||||||
## High-Level Architecture
|
|
||||||
|
|
||||||
```
|
|
||||||
┌─────────────────────────────────────────────────────────────┐
|
|
||||||
│ BROWSER EXTENSION │
|
|
||||||
├─────────────────────────────────────────────────────────────┤
|
|
||||||
│ │
|
|
||||||
│ ┌─────────────────┐ ┌──────────────────┐ │
|
|
||||||
│ │ Background │ │ Content Script │ │
|
|
||||||
│ │ Script │ │ (SEQTA.ts) │ │
|
|
||||||
│ │ │ │ │ │
|
|
||||||
│ │ - Settings │◄───┤ - Page Detection│ │
|
|
||||||
│ │ - Storage │ │ - Plugin Loading│ │
|
|
||||||
│ │ - Updates │ │ - UI Injection │ │
|
|
||||||
│ └─────────────────┘ └──────────────────┘ │
|
|
||||||
│ │ │
|
|
||||||
│ ┌─────────▼─────────┐ │
|
|
||||||
│ │ Plugin System │ │
|
|
||||||
│ │ │ │
|
|
||||||
│ │ ┌─────────────┐ │ │
|
|
||||||
│ │ │ Built-in │ │ │
|
|
||||||
│ │ │ Plugins │ │ │
|
|
||||||
│ │ │ │ │ │
|
|
||||||
│ │ │ - Themes │ │ │
|
|
||||||
│ │ │ - Search │ │ │
|
|
||||||
│ │ │ - Timetable │ │ │
|
|
||||||
│ │ │ - etc... │ │ │
|
|
||||||
│ │ └─────────────┘ │ │
|
|
||||||
│ └───────────────────┘ │
|
|
||||||
│ │ │
|
|
||||||
│ ┌─────────▼─────────┐ │
|
|
||||||
│ │ Settings UI │ │
|
|
||||||
│ │ (Svelte App) │ │
|
|
||||||
│ │ │ │
|
|
||||||
│ │ - Plugin Config │ │
|
|
||||||
│ │ - Theme Creator │ │
|
|
||||||
│ │ - General Settings│ │
|
|
||||||
│ └───────────────────┘ │
|
|
||||||
└─────────────────────────────────────────────────────────────┘
|
|
||||||
│
|
|
||||||
┌─────────▼─────────┐
|
|
||||||
│ SEQTA Learn │
|
|
||||||
│ Website │
|
|
||||||
└───────────────────┘
|
|
||||||
```
|
|
||||||
|
|
||||||
## Core Components
|
|
||||||
|
|
||||||
### 1. Entry Point (`src/SEQTA.ts`)
|
|
||||||
This is where it all begins! When you visit a SEQTA page:
|
|
||||||
1. Detects if you're on a SEQTA Learn page
|
|
||||||
2. Injects our CSS styles
|
|
||||||
3. Changes the favicon to BetterSEQTA+ icon
|
|
||||||
4. Loads settings from storage
|
|
||||||
5. Initializes the plugin system
|
|
||||||
|
|
||||||
### 2. Plugin System (`src/plugins/`)
|
|
||||||
The heart of BetterSEQTA+! This is what makes it extensible:
|
|
||||||
- **Plugin Manager**: Registers and manages all plugins
|
|
||||||
- **Built-in Plugins**: Pre-made plugins (themes, search, etc.)
|
|
||||||
- **Plugin API**: Provides plugins with tools to interact with SEQTA
|
|
||||||
|
|
||||||
### 3. Settings UI (`src/interface/`)
|
|
||||||
A Svelte application that lets users:
|
|
||||||
- Enable/disable plugins
|
|
||||||
- Configure plugin settings
|
|
||||||
- Create custom themes
|
|
||||||
- Browse the theme store
|
|
||||||
|
|
||||||
### 4. Background Script (`src/background.ts`)
|
|
||||||
Runs in the background and handles:
|
|
||||||
- Extension-wide settings storage
|
|
||||||
- Communication between different parts
|
|
||||||
- Update notifications
|
|
||||||
|
|
||||||
## Plugin System
|
|
||||||
|
|
||||||
Our plugin system is what makes BetterSEQTA+ so powerful. Here's how it works:
|
|
||||||
|
|
||||||
### Plugin Lifecycle
|
|
||||||
```
|
|
||||||
Plugin Registration → Settings Loading → Plugin Initialization → Running → Cleanup
|
|
||||||
```
|
|
||||||
|
|
||||||
### Built-in Plugins Overview
|
|
||||||
|
|
||||||
| Plugin | What it does | Files |
|
|
||||||
|--------|-------------|-------|
|
|
||||||
| **Themes** | Custom CSS themes and backgrounds | `src/plugins/built-in/themes/` |
|
|
||||||
| **Global Search** | Search across all SEQTA content | `src/plugins/built-in/globalSearch/` |
|
|
||||||
| **Timetable** | Enhanced timetable features | `src/plugins/built-in/timetable/` |
|
|
||||||
| **Profile Picture** | Custom profile pictures | `src/plugins/built-in/profilePicture/` |
|
|
||||||
| **Animated Background** | Moving background animations | `src/plugins/built-in/animatedBackground/` |
|
|
||||||
|
|
||||||
### Creating a Plugin
|
|
||||||
Every plugin follows this structure:
|
|
||||||
```typescript
|
|
||||||
const myPlugin: Plugin = {
|
|
||||||
id: "unique-plugin-id",
|
|
||||||
name: "Human Readable Name",
|
|
||||||
description: "What does this plugin do?",
|
|
||||||
version: "1.0.0",
|
|
||||||
settings: { /* user configurable options */ },
|
|
||||||
run: async (api) => {
|
|
||||||
// Your plugin code goes here!
|
|
||||||
}
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
## File Structure Explained
|
|
||||||
|
|
||||||
```
|
|
||||||
src/
|
|
||||||
├── SEQTA.ts # 🚀 Main entry point - start reading here!
|
|
||||||
├── background.ts # 🔧 Background script for extension
|
|
||||||
├── manifests/ # 📦 Browser extension manifests
|
|
||||||
├── plugins/ # 🧩 Plugin system (the magic happens here!)
|
|
||||||
│ ├── core/ # 🏗️ Plugin infrastructure
|
|
||||||
│ ├── built-in/ # 🎁 Pre-made plugins
|
|
||||||
│ └── index.ts # 📋 Plugin registration
|
|
||||||
├── interface/ # 🎨 Settings UI (Svelte app)
|
|
||||||
│ ├── pages/ # 📄 Settings pages
|
|
||||||
│ ├── components/ # 🧱 Reusable UI components
|
|
||||||
│ └── main.ts # 🏠 Settings app entry point
|
|
||||||
├── seqta/ # 🔗 SEQTA-specific utilities
|
|
||||||
│ ├── main.ts # 🎯 Core SEQTA modifications
|
|
||||||
│ ├── ui/ # 🎨 UI manipulation helpers
|
|
||||||
│ └── utils/ # 🛠️ Helper functions
|
|
||||||
└── css/ # 💄 Styles and themes
|
|
||||||
```
|
|
||||||
|
|
||||||
### Where to Start Reading?
|
|
||||||
1. **New to the project?** Start with `src/SEQTA.ts`
|
|
||||||
2. **Want to understand plugins?** Look at `src/plugins/core/types.ts`
|
|
||||||
3. **Want to see a simple plugin?** Check out `src/plugins/built-in/profilePicture/`
|
|
||||||
4. **Interested in the UI?** Explore `src/interface/main.ts`
|
|
||||||
|
|
||||||
## Data Flow
|
|
||||||
|
|
||||||
Here's how data flows through the system:
|
|
||||||
|
|
||||||
```
|
|
||||||
User visits SEQTA → SEQTA.ts detects page → Loads settings from storage
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
Plugin Manager initializes → Each plugin gets API access → Plugins modify SEQTA
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
User opens settings → Svelte UI loads → Settings changed → Storage updated
|
|
||||||
│
|
|
||||||
▼
|
|
||||||
Storage change detected → Plugins notified → UI updates automatically
|
|
||||||
```
|
|
||||||
|
|
||||||
## Browser Extension Basics
|
|
||||||
|
|
||||||
Never worked on a browser extension before? Here's what you need to know:
|
|
||||||
|
|
||||||
### Content Scripts vs Background Scripts
|
|
||||||
- **Content Script** (`SEQTA.ts`): Runs on SEQTA pages, can access and modify the page
|
|
||||||
- **Background Script** (`background.ts`): Runs in the background, handles storage and messaging
|
|
||||||
|
|
||||||
### Manifest Files
|
|
||||||
Each browser needs a slightly different manifest file:
|
|
||||||
- `manifests/chrome.ts` - Chrome, Edge, Brave
|
|
||||||
- `manifests/firefox.ts` - Firefox
|
|
||||||
- `manifests/safari.ts` - Safari (experimental)
|
|
||||||
|
|
||||||
### Communication
|
|
||||||
Different parts of the extension communicate using:
|
|
||||||
- `browser.runtime.sendMessage()` - Send messages
|
|
||||||
- `browser.storage` - Shared storage, but we have created a custom storage system that is easier to use:
|
|
||||||
```ts
|
|
||||||
settingsState.[the setting name] = [whatever you want to set it to]
|
|
||||||
console.log(settingsState.[the setting name])
|
|
||||||
```
|
|
||||||
- Custom events for plugin communication
|
|
||||||
|
|
||||||
## Development Tips
|
|
||||||
|
|
||||||
### Debugging
|
|
||||||
1. **Chrome DevTools**: Right-click → Inspect → Console tab
|
|
||||||
2. **Extension Console**: `chrome://extensions` → BetterSEQTA+ → "Inspect views: background page"
|
|
||||||
3. **Look for logs**: We log everything with `[BetterSEQTA+]` prefix
|
|
||||||
|
|
||||||
### Making Changes
|
|
||||||
1. Edit code → Save → Browser auto-reloads extension → Refresh SEQTA page
|
|
||||||
2. For UI changes: The dev server hot-reloads automatically
|
|
||||||
3. For plugin changes: May need to disable/enable the plugin in settings
|
|
||||||
|
|
||||||
### Common Gotchas
|
|
||||||
- Settings take a moment to load (use `api.settings.loaded` promise)
|
|
||||||
- Some SEQTA elements load dynamically (use `api.seqta.onMount()`)
|
|
||||||
- Plugin cleanup is important (always return a cleanup function)
|
|
||||||
|
|
||||||
## Next Steps
|
|
||||||
|
|
||||||
Ready to contribute? Here's what to do next:
|
|
||||||
|
|
||||||
1. **Read the code**: Start with `src/SEQTA.ts` and follow the flow
|
|
||||||
2. **Try creating a simple plugin**: Follow our [plugin guide](./plugins/README.md)
|
|
||||||
3. **Look at existing issues**: Check our [GitHub issues](https://github.com/BetterSEQTA/BetterSEQTA-plus/issues) for "good first issue" labels
|
|
||||||
4. **Join our Discord**: Get help from the community!
|
|
||||||
|
|
||||||
## Questions?
|
|
||||||
|
|
||||||
Still confused about something? That's totally normal! Here are your options:
|
|
||||||
- 💬 Ask in our [Discord server](https://discord.gg/YzmbnCDkat)
|
|
||||||
- 🐛 Open an issue on GitHub
|
|
||||||
- 📧 Email us at betterseqta.plus@gmail.com
|
|
||||||
|
|
||||||
Remember: **Every expert was once a beginner!** We're here to help you learn and contribute. 🚀
|
|
||||||
@@ -1,285 +0,0 @@
|
|||||||
# Getting Started as a Contributor
|
|
||||||
|
|
||||||
Welcome to BetterSEQTA+! 🎉 This guide will walk you through making your first contribution, even if you're completely new to the project.
|
|
||||||
|
|
||||||
## Table of Contents
|
|
||||||
|
|
||||||
- [Before You Start](#before-you-start)
|
|
||||||
- [Your First 30 Minutes](#your-first-30-minutes)
|
|
||||||
- [Making Your First Contribution](#making-your-first-contribution)
|
|
||||||
- [Types of Contributions](#types-of-contributions)
|
|
||||||
- [Finding Something to Work On](#finding-something-to-work-on)
|
|
||||||
- [Development Workflow](#development-workflow)
|
|
||||||
- [Getting Help](#getting-help)
|
|
||||||
|
|
||||||
## Before You Start
|
|
||||||
|
|
||||||
### What You'll Need
|
|
||||||
- **Node.js** (v16 or higher) - [Download here](https://nodejs.org/)
|
|
||||||
- **Git** - [Download here](https://git-scm.com/)
|
|
||||||
- **A code editor** - We recommend [VS Code](https://code.visualstudio.com/)
|
|
||||||
- **A Chromium browser** (Chrome, Edge, Brave) for testing (recommended, however you can use firefox although it requires being built every time you make a change)
|
|
||||||
|
|
||||||
### Helpful Background (but not required!)
|
|
||||||
- Basic JavaScript/TypeScript knowledge
|
|
||||||
- Some familiarity with HTML/CSS
|
|
||||||
- Understanding of browser extensions (we'll teach you!)
|
|
||||||
|
|
||||||
**Don't worry if you're missing some of these!** We're happy to help you learn. 🤗
|
|
||||||
|
|
||||||
## Your First 30 Minutes
|
|
||||||
|
|
||||||
Let's get you up and running quickly:
|
|
||||||
|
|
||||||
### 1. Get the Code (3 minutes)
|
|
||||||
```bash
|
|
||||||
# Fork the repository on GitHub first, then:
|
|
||||||
git clone https://github.com/YOUR_USERNAME/BetterSEQTA-plus.git
|
|
||||||
cd BetterSEQTA-plus
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. Install Dependencies (3 minutes)
|
|
||||||
```bash
|
|
||||||
npm install --legacy-peer-deps
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. Start Development Server (2 minutes)
|
|
||||||
```bash
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
### 4. Load Extension in Browser (4 minutes)
|
|
||||||
1. Open Chrome and go to `chrome://extensions`
|
|
||||||
2. Enable "Developer mode" (toggle in top right)
|
|
||||||
3. Click "Load unpacked"
|
|
||||||
4. Select the `dist` folder in your project
|
|
||||||
5. Visit a SEQTA Learn page to see BetterSEQTA+ in action!
|
|
||||||
|
|
||||||
### 5. Make a Tiny Change (5 minutes)
|
|
||||||
Let's prove everything works:
|
|
||||||
1. Open `src/SEQTA.ts`
|
|
||||||
2. Find the line that says `"[BetterSEQTA+] Successfully initialised"`
|
|
||||||
3. Change it to `"[BetterSEQTA+] Successfully initialised - Hello [YOUR_NAME]!"`
|
|
||||||
4. Save the file
|
|
||||||
5. Go to `chrome://extensions`, click the refresh icon on BetterSEQTA+
|
|
||||||
6. Refresh a SEQTA page and check the browser console (F12) - you should see your message!
|
|
||||||
|
|
||||||
### 6. Reset Your Change (3 minutes)
|
|
||||||
```bash
|
|
||||||
git checkout -- src/SEQTA.ts
|
|
||||||
```
|
|
||||||
|
|
||||||
**Congratulations! 🎉 You've successfully set up BetterSEQTA+ for development!**
|
|
||||||
|
|
||||||
## Making Your First Contribution
|
|
||||||
|
|
||||||
### Easy First Contributions
|
|
||||||
|
|
||||||
Here are some great starter contributions:
|
|
||||||
|
|
||||||
1. **Fix a typo in documentation** - Super easy and always appreciated!
|
|
||||||
2. **Improve error messages** - Make them more helpful
|
|
||||||
3. **Add comments to code** - Help other contributors understand
|
|
||||||
4. **Create a simple plugin** - Follow our plugin guide
|
|
||||||
5. **Fix a bug you found** - If you found a bug, fix it!
|
|
||||||
|
|
||||||
### Step-by-Step: Your First Pull Request
|
|
||||||
|
|
||||||
#### Step 1: Pick an Issue
|
|
||||||
- Go to our [Issues page](https://github.com/BetterSEQTA/BetterSEQTA-plus/issues)
|
|
||||||
- Look for labels like:
|
|
||||||
- `good first issue` - Perfect for beginners
|
|
||||||
- `help wanted` - We'd love help with these
|
|
||||||
- `documentation` - Improve our docs
|
|
||||||
- `bug` - Fix something broken
|
|
||||||
|
|
||||||
#### Step 2: Claim the Issue
|
|
||||||
Comment on the issue saying "I'd like to work on this!" We'll assign it to you.
|
|
||||||
|
|
||||||
#### Step 3: Create a Branch
|
|
||||||
```bash
|
|
||||||
git checkout -b fix-issue-123 # Replace 123 with the issue number
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Step 4: Make Your Changes
|
|
||||||
- Follow the patterns you see in existing code
|
|
||||||
- Test your changes thoroughly
|
|
||||||
- Keep changes focused and small
|
|
||||||
|
|
||||||
#### Step 5: Test Everything
|
|
||||||
```bash
|
|
||||||
# Test the extension still loads
|
|
||||||
npm run dev
|
|
||||||
|
|
||||||
# Test in browser
|
|
||||||
# 1. Reload extension at chrome://extensions
|
|
||||||
# 2. Visit SEQTA page
|
|
||||||
# 3. Verify everything still works
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Step 6: Commit Your Changes
|
|
||||||
```bash
|
|
||||||
git add .
|
|
||||||
git commit -m "Fix issue #123: Brief description of what you fixed"
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Step 7: Push and Create Pull Request
|
|
||||||
```bash
|
|
||||||
git push origin fix-issue-123
|
|
||||||
```
|
|
||||||
|
|
||||||
Then go to GitHub and create a pull request with:
|
|
||||||
- **Clear title**: "Fix issue #123: Brief description"
|
|
||||||
- **Description**: Explain what you changed and why
|
|
||||||
- **Testing**: Describe how you tested it
|
|
||||||
|
|
||||||
## Types of Contributions
|
|
||||||
|
|
||||||
### 🐛 Bug Fixes
|
|
||||||
- Fix broken features
|
|
||||||
- Improve error handling
|
|
||||||
- Resolve compatibility issues
|
|
||||||
|
|
||||||
**Example**: "The theme selector doesn't work on Firefox"
|
|
||||||
|
|
||||||
### ✨ New Features
|
|
||||||
- Add new plugins
|
|
||||||
- Enhance existing functionality
|
|
||||||
- Improve user experience
|
|
||||||
|
|
||||||
**Example**: "Add keyboard shortcuts for common actions"
|
|
||||||
|
|
||||||
### 📚 Documentation
|
|
||||||
- Fix typos and unclear explanations
|
|
||||||
- Add examples and tutorials
|
|
||||||
- Improve code comments
|
|
||||||
|
|
||||||
**Example**: "Add more examples to the plugin guide"
|
|
||||||
|
|
||||||
### 🎨 Design & UI
|
|
||||||
- Improve the settings interface
|
|
||||||
- Make things more user-friendly
|
|
||||||
- Add animations and polish
|
|
||||||
|
|
||||||
**Example**: "Make the theme creator more intuitive"
|
|
||||||
|
|
||||||
### 🔧 Technical Improvements
|
|
||||||
- Refactor code for clarity
|
|
||||||
- Add tests
|
|
||||||
- Improve performance
|
|
||||||
|
|
||||||
**Example**: "Simplify the plugin loading logic"
|
|
||||||
|
|
||||||
## Finding Something to Work On
|
|
||||||
|
|
||||||
### Browse Issues by Label
|
|
||||||
- [`good first issue`](https://github.com/BetterSEQTA/BetterSEQTA-plus/labels/good%20first%20issue) - Perfect for beginners
|
|
||||||
- [`help wanted`](https://github.com/BetterSEQTA/BetterSEQTA-plus/labels/help%20wanted) - We need help with these
|
|
||||||
- [`documentation`](https://github.com/BetterSEQTA/BetterSEQTA-plus/labels/documentation) - Improve our docs
|
|
||||||
- [`bug`](https://github.com/BetterSEQTA/BetterSEQTA-plus/labels/bug) - Fix something broken
|
|
||||||
- [`enhancement`](https://github.com/BetterSEQTA/BetterSEQTA-plus/labels/enhancement) - Add new features
|
|
||||||
|
|
||||||
### Create Your Own Issue
|
|
||||||
Found a bug or have an idea? Create an issue first to discuss it!
|
|
||||||
|
|
||||||
### Plugin Ideas
|
|
||||||
Want to create a plugin? Here are some ideas:
|
|
||||||
- **Study Timer**: Track study time across SEQTA pages
|
|
||||||
- **Grade Tracker**: Better visualization of grades over time
|
|
||||||
- **Quick Notes**: Add notes to any SEQTA page
|
|
||||||
- **Homework Reminder**: Smart notifications for upcoming due dates
|
|
||||||
- **Custom Shortcuts**: User-defined keyboard shortcuts
|
|
||||||
|
|
||||||
## Development Workflow
|
|
||||||
|
|
||||||
### Daily Development
|
|
||||||
```bash
|
|
||||||
# Start working
|
|
||||||
git pull origin main
|
|
||||||
npm run dev
|
|
||||||
|
|
||||||
# Make changes, test, commit
|
|
||||||
git add .
|
|
||||||
git commit -m "Descriptive commit message"
|
|
||||||
|
|
||||||
# Push when ready
|
|
||||||
git push origin your-branch-name
|
|
||||||
```
|
|
||||||
|
|
||||||
### Before Submitting PR
|
|
||||||
1. **Test thoroughly** - Make sure nothing breaks
|
|
||||||
2. **Check console** - No new errors
|
|
||||||
3. **Test in different browsers** - Chrome and Firefox
|
|
||||||
4. **Update documentation** - If you changed how something works
|
|
||||||
|
|
||||||
### Code Style
|
|
||||||
- Use TypeScript where possible
|
|
||||||
- Follow existing naming conventions
|
|
||||||
- Add comments for complex logic
|
|
||||||
- Keep functions small and focused
|
|
||||||
|
|
||||||
## Getting Help
|
|
||||||
|
|
||||||
### Stuck? Here's How to Get Unstuck
|
|
||||||
|
|
||||||
1. **Check the docs** - [Architecture guide](./ARCHITECTURE.md) explains everything
|
|
||||||
2. **Search existing issues** - Someone might have had the same problem
|
|
||||||
3. **Ask in Discord** - Our community is super helpful
|
|
||||||
4. **Create an issue** - If you found a bug or need help
|
|
||||||
|
|
||||||
### Discord Community
|
|
||||||
Join our [Discord server](https://discord.gg/YzmbnCDkat) for:
|
|
||||||
- Real-time help and discussion
|
|
||||||
- Collaboration on features
|
|
||||||
- Sharing ideas and feedback
|
|
||||||
- Getting to know the community
|
|
||||||
|
|
||||||
### Code Review Process
|
|
||||||
- All contributions need code review
|
|
||||||
- We'll provide helpful feedback
|
|
||||||
- Don't worry about making mistakes - we're here to help!
|
|
||||||
- Reviews usually happen within 24-48 hours
|
|
||||||
|
|
||||||
## Common Questions
|
|
||||||
|
|
||||||
**Q: I'm new to browser extensions. Is this too advanced for me?**
|
|
||||||
A: Not at all! We have lots of beginner-friendly issues, and our plugin system makes it easy to add features without understanding all the browser extension complexities.
|
|
||||||
|
|
||||||
**Q: How long does it take to get my first PR merged?**
|
|
||||||
A: For simple fixes, usually 1-3 days. For larger features, it might take a week or two as we discuss the best approach.
|
|
||||||
|
|
||||||
**Q: I made a mistake in my PR. What do I do?**
|
|
||||||
A: No worries! Just push more commits to the same branch and they'll be added to your PR automatically.
|
|
||||||
|
|
||||||
**Q: Can I work on multiple issues at once?**
|
|
||||||
A: It's better to focus on one issue at a time, especially when starting out. This makes code review easier and reduces conflicts.
|
|
||||||
|
|
||||||
**Q: What if I start working on something and get stuck?**
|
|
||||||
A: Ask for help! Create a draft PR with what you have so far, and we'll help you figure out the next steps.
|
|
||||||
|
|
||||||
## Recognition
|
|
||||||
|
|
||||||
All contributors get:
|
|
||||||
- Recognition in our README
|
|
||||||
- Contributor badge in Discord
|
|
||||||
- Our eternal gratitude! 🙏
|
|
||||||
|
|
||||||
Significant contributors may also get:
|
|
||||||
- Special Discord roles
|
|
||||||
- Input on project direction
|
|
||||||
- Maintainer status
|
|
||||||
|
|
||||||
## Next Steps
|
|
||||||
|
|
||||||
Ready to contribute? Here's what to do:
|
|
||||||
|
|
||||||
1. ✅ **Set up your development environment** (follow the 30-minute guide above)
|
|
||||||
2. 🔍 **Find an issue to work on** (check the "good first issue" label)
|
|
||||||
3. 💬 **Join our Discord** and introduce yourself
|
|
||||||
4. 🚀 **Make your first contribution** and submit a PR
|
|
||||||
|
|
||||||
Remember: **Every expert was once a beginner!** We're excited to help you learn and grow as a contributor. Welcome to the team! 🎉
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
*Questions? Suggestions for improving this guide? Open an issue or message us on Discord!*
|
|
||||||
+2
-7
@@ -7,16 +7,11 @@ Welcome to the BetterSEQTA+ documentation! This documentation will help you unde
|
|||||||
## Table of Contents
|
## Table of Contents
|
||||||
|
|
||||||
### Getting Started
|
### Getting Started
|
||||||
|
|
||||||
- [Project Overview](./README.md) - This file
|
- [Project Overview](./README.md) - This file
|
||||||
- [Installation Guide](./installation.md) - How to install and set up BetterSEQTA+
|
- [Installation Guide](./installation.md) - How to install and set up BetterSEQTA+
|
||||||
- [Getting Started Contributing](./GETTING_STARTED_CONTRIBUTING.md) - **Start here!** Complete beginner-friendly guide
|
- [Contributing Guide](../CONTRIBUTING.md) - How to contribute to BetterSEQTA+
|
||||||
- [Architecture Guide](./ARCHITECTURE.md) - How BetterSEQTA+ works under the hood
|
|
||||||
- [Contributing Guide](../CONTRIBUTING.md) - Official contribution guidelines
|
|
||||||
- [Troubleshooting](./TROUBLESHOOTING.md) - Common issues and solutions
|
|
||||||
|
|
||||||
### Plugin System
|
### Plugin System
|
||||||
|
|
||||||
- [Creating Your First Plugin](./plugins/README.md) - A comprehensive, beginner-friendly guide to creating plugins
|
- [Creating Your First Plugin](./plugins/README.md) - A comprehensive, beginner-friendly guide to creating plugins
|
||||||
- [Plugin API Reference](./plugins/api-reference.md) - Detailed technical documentation of the plugin APIs
|
- [Plugin API Reference](./plugins/api-reference.md) - Detailed technical documentation of the plugin APIs
|
||||||
|
|
||||||
@@ -52,4 +47,4 @@ To contribute to the documentation:
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
BetterSEQTA+ is licensed under the [MIT License](../LICENSE).
|
BetterSEQTA+ is licensed under the [MIT License](../LICENSE).
|
||||||
@@ -1,585 +0,0 @@
|
|||||||
# Theme Creation Guide
|
|
||||||
|
|
||||||
This guide covers everything you need to know about creating custom themes for BetterSEQTA+.
|
|
||||||
|
|
||||||
## Table of Contents
|
|
||||||
|
|
||||||
1. [Overview](#overview)
|
|
||||||
2. [Theme Structure](#theme-structure)
|
|
||||||
3. [CSS Variables](#css-variables)
|
|
||||||
4. [CSS Selectors & Classes](#css-selectors--classes)
|
|
||||||
5. [Custom Images](#custom-images)
|
|
||||||
6. [Theme Settings](#theme-settings)
|
|
||||||
7. [Best Practices](#best-practices)
|
|
||||||
8. [Examples](#examples)
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
|
|
||||||
Themes in BetterSEQTA+ allow you to completely customize the appearance of SEQTA Learn. A theme consists of:
|
|
||||||
|
|
||||||
- **Custom CSS**: CSS rules that override default styles
|
|
||||||
- **Custom Images**: Images that can be referenced via CSS variables
|
|
||||||
- **Theme Metadata**: Name, description, default color, etc.
|
|
||||||
- **Theme Settings**: Options like forcing dark/light mode
|
|
||||||
|
|
||||||
Themes are applied by injecting CSS into the SEQTA page and setting CSS custom properties (variables) on the document root.
|
|
||||||
|
|
||||||
## CSS Variables
|
|
||||||
|
|
||||||
BetterSEQTA+ provides a comprehensive set of CSS variables that you can use in your themes. These variables automatically adapt to light/dark mode and user preferences.
|
|
||||||
|
|
||||||
### Core Background Variables
|
|
||||||
|
|
||||||
| Variable | Light Mode | Dark Mode | Description |
|
|
||||||
|----------|------------|-----------|-------------|
|
|
||||||
| `--background-primary` | `#ffffff` | `#232323` | Main background color |
|
|
||||||
| `--background-secondary` | `#e5e7eb` | `#1a1a1a` | Secondary background color |
|
|
||||||
| `--theme-primary` | `#ffffff` | `#232323` | Primary theme color (same as background-primary) |
|
|
||||||
| `--theme-secondary` | `#e5e7eb` | `#1a1a1a` | Secondary theme color (same as background-secondary) |
|
|
||||||
| `--text-primary` | `black` | `white` | Primary text color |
|
|
||||||
| `--text-color` | `black` | `white` | Text color (alias for text-primary) |
|
|
||||||
|
|
||||||
### BetterSEQTA+ Specific Variables
|
|
||||||
|
|
||||||
| Variable | Description | Notes |
|
|
||||||
|----------|-------------|-------|
|
|
||||||
| `--better-main` | User's selected accent color | Dynamically set based on color picker |
|
|
||||||
| `--better-sub` | Dark navy color | Always `#161616` |
|
|
||||||
| `--better-pale` | Lightened version of accent color | Only available in light mode |
|
|
||||||
| `--better-light` | Lighter version of accent color | Calculated based on brightness |
|
|
||||||
| `--better-alert-highlight` | Alert/highlight color | `#c61851` |
|
|
||||||
| `--betterseqta-logo` | Logo URL | Changes based on dark/light mode |
|
|
||||||
| `--auto-background` | Auto background color | Falls back to `--better-pale` or `--background-secondary` |
|
|
||||||
| `--navy` | Navy color | `#1a1a1a` |
|
|
||||||
| `--theme-fg-parts` | Theme foreground parts | `white` |
|
|
||||||
|
|
||||||
### Subject/Item Color Variables
|
|
||||||
|
|
||||||
| Variable | Description |
|
|
||||||
|----------|-------------|
|
|
||||||
| `--item-colour` | Subject/item color | Set dynamically per subject/item |
|
|
||||||
| `--colour` | Generic color variable | Used in various contexts |
|
|
||||||
| `--person-colour` | Person/avatar color | `var(--better-light)` for staff |
|
|
||||||
|
|
||||||
### Transparency Effects
|
|
||||||
|
|
||||||
When transparency effects are enabled, background variables become semi-transparent:
|
|
||||||
|
|
||||||
| Variable | Light Mode (Transparent) | Dark Mode (Transparent) |
|
|
||||||
|----------|--------------------------|-------------------------|
|
|
||||||
| `--background-primary` | `rgba(255, 255, 255, 0.6)` | `rgba(35, 35, 35, 0.6)` |
|
|
||||||
| `--background-secondary` | `rgba(229, 231, 235, 0.6)` | `rgba(26, 26, 26, 0.6)` |
|
|
||||||
|
|
||||||
### Using CSS Variables
|
|
||||||
|
|
||||||
You can use these variables in your custom CSS:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Example: Style a custom element */
|
|
||||||
.my-custom-element {
|
|
||||||
background: var(--background-primary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
border: 1px solid var(--better-main);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Example: Create a gradient */
|
|
||||||
.gradient-box {
|
|
||||||
background: linear-gradient(
|
|
||||||
to bottom,
|
|
||||||
var(--better-main),
|
|
||||||
var(--background-secondary)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## CSS Selectors & Classes
|
|
||||||
|
|
||||||
BetterSEQTA+ uses specific CSS selectors and classes that you can target in your themes. Here are the most important ones:
|
|
||||||
|
|
||||||
### Main Layout Elements
|
|
||||||
|
|
||||||
| Selector | Description |
|
|
||||||
|----------|-------------|
|
|
||||||
| `#container` | Main container element |
|
|
||||||
| `#content` | Content area |
|
|
||||||
| `#main` | Main content wrapper |
|
|
||||||
| `#title` | Top title bar |
|
|
||||||
| `#menu` | Sidebar menu |
|
|
||||||
|
|
||||||
### Dark Mode
|
|
||||||
|
|
||||||
The `dark` class is added to `html` when dark mode is active:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Target dark mode specifically */
|
|
||||||
html.dark #main {
|
|
||||||
background: var(--background-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Target light mode */
|
|
||||||
html:not(.dark) #main {
|
|
||||||
background: var(--background-primary);
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Transparency Effects
|
|
||||||
|
|
||||||
When transparency effects are enabled, the `transparencyEffects` class is added to `html`:
|
|
||||||
|
|
||||||
```css
|
|
||||||
html.transparencyEffects .notice {
|
|
||||||
backdrop-filter: blur(80px);
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Common SEQTA Classes
|
|
||||||
|
|
||||||
| Class/Selector | Description |
|
|
||||||
|----------------|-------------|
|
|
||||||
| `.notice` | Notice cards |
|
|
||||||
| `.day` | Day containers in timetable |
|
|
||||||
| `.dashboard` | Dashboard sections |
|
|
||||||
| `.dashlet` | Dashboard widgets |
|
|
||||||
| `.document` | Document elements |
|
|
||||||
| `.quickbar` | Quick action bar |
|
|
||||||
| `.calendar` | Calendar elements |
|
|
||||||
| `.message` | Message elements |
|
|
||||||
| `.thread` | Forum threads |
|
|
||||||
| `.shortcut` | Shortcut buttons |
|
|
||||||
| `.upcoming-assessment` | Upcoming assessments |
|
|
||||||
| `.entry.class` | Timetable entries |
|
|
||||||
|
|
||||||
### BetterSEQTA+ Specific Classes
|
|
||||||
|
|
||||||
| Class | Description |
|
|
||||||
|-------|-------------|
|
|
||||||
| `.addedButton` | BetterSEQTA+ added buttons |
|
|
||||||
| `.tooltip` | Tooltip elements |
|
|
||||||
| `.notice-unified-content` | Unified notice content |
|
|
||||||
| `.home-container` | Home page container |
|
|
||||||
| `.timetable-container` | Timetable container |
|
|
||||||
| `.notices-container` | Notices container |
|
|
||||||
|
|
||||||
### Attribute Selectors
|
|
||||||
|
|
||||||
SEQTA uses data attributes that you can target:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Target specific data types */
|
|
||||||
[data-type="student"] .header {
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Target specific labels */
|
|
||||||
[data-label="inbox"] {
|
|
||||||
/* Styles */
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### CSS Modules
|
|
||||||
|
|
||||||
SEQTA uses CSS modules with hashed class names. You can target them using attribute selectors:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Target CSS module classes */
|
|
||||||
[class*="MessageList__MessageList___"] {
|
|
||||||
background: var(--background-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
[class*="BasicPanel__BasicPanel___"] {
|
|
||||||
border-radius: 16px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Custom Images
|
|
||||||
|
|
||||||
Themes can include custom images that are made available as CSS variables.
|
|
||||||
|
|
||||||
### Adding Images
|
|
||||||
|
|
||||||
1. Upload an image in the theme creator
|
|
||||||
2. Set a CSS variable name (e.g., `custom-background`)
|
|
||||||
3. The image will be available as `var(--custom-background)`
|
|
||||||
|
|
||||||
### Using Image Variables
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Use as background */
|
|
||||||
.my-element {
|
|
||||||
background-image: var(--custom-background);
|
|
||||||
background-size: cover;
|
|
||||||
background-position: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Use in content */
|
|
||||||
.my-icon::before {
|
|
||||||
content: '';
|
|
||||||
background-image: var(--custom-icon);
|
|
||||||
width: 24px;
|
|
||||||
height: 24px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Image Variable Format
|
|
||||||
|
|
||||||
Images are stored as `url()` values:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* The variable contains: url(blob:...) */
|
|
||||||
--custom-background: url(blob:chrome-extension://...);
|
|
||||||
```
|
|
||||||
|
|
||||||
## Theme Settings
|
|
||||||
|
|
||||||
### Force Dark/Light Mode
|
|
||||||
|
|
||||||
You can force a theme to always use dark or light mode:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
forceDark: true // Force dark mode
|
|
||||||
forceDark: false // Force light mode
|
|
||||||
forceDark: undefined // Use user's preference (default)
|
|
||||||
```
|
|
||||||
|
|
||||||
When `forceDark` is set, users cannot toggle dark/light mode while the theme is active.
|
|
||||||
|
|
||||||
### Default Color
|
|
||||||
|
|
||||||
Set a default accent color for your theme:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
defaultColour: "rgba(0, 123, 255, 1)" // Blue
|
|
||||||
defaultColour: "#ff6b6b" // Red (hex format)
|
|
||||||
```
|
|
||||||
|
|
||||||
### Allow Color Changes
|
|
||||||
|
|
||||||
Control whether users can change the accent color:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
CanChangeColour: true // Users can change color
|
|
||||||
CanChangeColour: false // Color is locked
|
|
||||||
```
|
|
||||||
|
|
||||||
## Best Practices
|
|
||||||
|
|
||||||
### 1. Use CSS Variables
|
|
||||||
|
|
||||||
Always use CSS variables instead of hardcoded colors:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Good */
|
|
||||||
.my-element {
|
|
||||||
background: var(--background-primary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bad */
|
|
||||||
.my-element {
|
|
||||||
background: #ffffff;
|
|
||||||
color: #000000;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. Support Both Light and Dark Modes
|
|
||||||
|
|
||||||
Unless your theme forces a specific mode, ensure it works in both:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Use variables that adapt automatically */
|
|
||||||
.my-element {
|
|
||||||
background: var(--background-primary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Or explicitly handle both modes */
|
|
||||||
html.dark .my-element {
|
|
||||||
background: #1a1a1a;
|
|
||||||
}
|
|
||||||
|
|
||||||
html:not(.dark) .my-element {
|
|
||||||
background: #ffffff;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. Use !important Sparingly
|
|
||||||
|
|
||||||
Only use `!important` when necessary to override SEQTA's default styles:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Good - necessary override */
|
|
||||||
#title {
|
|
||||||
background: var(--background-primary) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bad - unnecessary */
|
|
||||||
.my-element {
|
|
||||||
color: var(--text-primary) !important;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 4. Test Responsive Design
|
|
||||||
|
|
||||||
SEQTA is responsive. Test your theme at different screen sizes:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Example: Mobile-specific styles */
|
|
||||||
@media (max-width: 900px) {
|
|
||||||
#menu {
|
|
||||||
transform: translate(-270px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 5. Use Semantic Selectors
|
|
||||||
|
|
||||||
Prefer semantic selectors over fragile ones:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Good - stable selector */
|
|
||||||
#main > .dashboard > section {
|
|
||||||
border-radius: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Caution - CSS module classes may change */
|
|
||||||
[class*="Dashboard__Dashboard___"] {
|
|
||||||
border-radius: 16px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 6. Optimize Images
|
|
||||||
|
|
||||||
Keep image file sizes reasonable:
|
|
||||||
|
|
||||||
- Use appropriate formats (PNG for transparency, JPG for photos)
|
|
||||||
- Compress images before uploading
|
|
||||||
- Consider using CSS for simple graphics instead of images
|
|
||||||
|
|
||||||
### 7. Document Your Theme
|
|
||||||
|
|
||||||
Include comments in your CSS explaining complex styles:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/*
|
|
||||||
* Custom gradient background for dashboard
|
|
||||||
* Uses the user's accent color for a cohesive look
|
|
||||||
*/
|
|
||||||
#main > .dashboard {
|
|
||||||
background: linear-gradient(
|
|
||||||
135deg,
|
|
||||||
var(--better-main),
|
|
||||||
var(--background-secondary)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Examples
|
|
||||||
|
|
||||||
### Example 1: Simple Color Theme
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Change accent color throughout */
|
|
||||||
:root {
|
|
||||||
--better-main: #ff6b6b;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Style the menu */
|
|
||||||
#menu {
|
|
||||||
background: var(--background-primary);
|
|
||||||
border-right: 3px solid var(--better-main);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Style buttons */
|
|
||||||
.uiButton {
|
|
||||||
background: var(--better-main);
|
|
||||||
color: var(--text-color);
|
|
||||||
border-radius: 8px;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Example 2: Custom Background Image
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Use a custom background image */
|
|
||||||
body {
|
|
||||||
background-image: var(--custom-background);
|
|
||||||
background-size: cover;
|
|
||||||
background-attachment: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add overlay for readability */
|
|
||||||
#main::before {
|
|
||||||
content: '';
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background: rgba(0, 0, 0, 0.3);
|
|
||||||
z-index: -1;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Example 3: Rounded Corners Theme
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Make everything more rounded */
|
|
||||||
#main > .dashboard > section,
|
|
||||||
.dashlet,
|
|
||||||
.notice,
|
|
||||||
.document {
|
|
||||||
border-radius: 20px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Round buttons */
|
|
||||||
.uiButton {
|
|
||||||
border-radius: 25px !important;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Example 4: Minimal Theme
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Remove shadows and borders */
|
|
||||||
#main > .dashboard > section,
|
|
||||||
.dashlet,
|
|
||||||
.notice {
|
|
||||||
box-shadow: none !important;
|
|
||||||
border: 1px solid var(--background-secondary) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Simplify colors */
|
|
||||||
#menu {
|
|
||||||
background: var(--background-primary) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Remove gradients */
|
|
||||||
.day {
|
|
||||||
background: var(--background-primary) !important;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Example 5: High Contrast Theme
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Increase contrast */
|
|
||||||
:root {
|
|
||||||
--background-primary: #000000;
|
|
||||||
--background-secondary: #1a1a1a;
|
|
||||||
--text-primary: #ffffff;
|
|
||||||
}
|
|
||||||
|
|
||||||
html:not(.dark) {
|
|
||||||
--background-primary: #ffffff;
|
|
||||||
--background-secondary: #f0f0f0;
|
|
||||||
--text-primary: #000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add borders for clarity */
|
|
||||||
.dashlet,
|
|
||||||
.notice,
|
|
||||||
.document {
|
|
||||||
border: 2px solid var(--better-main) !important;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Advanced Techniques
|
|
||||||
|
|
||||||
### CSS Custom Properties Override
|
|
||||||
|
|
||||||
You can override CSS variables in your theme:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Override a variable */
|
|
||||||
:root {
|
|
||||||
--better-main: #your-color;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Override conditionally */
|
|
||||||
html.dark {
|
|
||||||
--background-primary: #your-dark-color;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Animations
|
|
||||||
|
|
||||||
Add smooth transitions:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Smooth color transitions */
|
|
||||||
#menu li {
|
|
||||||
transition: background-color 0.3s ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Hover effects */
|
|
||||||
.dashlet:hover {
|
|
||||||
transform: translateY(-2px);
|
|
||||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
||||||
transition: all 0.3s ease;
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Pseudo-elements
|
|
||||||
|
|
||||||
Use pseudo-elements for decorative elements:
|
|
||||||
|
|
||||||
```css
|
|
||||||
/* Add decorative border */
|
|
||||||
.notice::before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
top: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 4px;
|
|
||||||
background: var(--better-main);
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Troubleshooting
|
|
||||||
|
|
||||||
### Theme Not Applying
|
|
||||||
|
|
||||||
1. Check browser console for CSS errors
|
|
||||||
2. Verify CSS syntax is correct
|
|
||||||
3. Ensure selectors are specific enough
|
|
||||||
4. Check if `!important` is needed
|
|
||||||
|
|
||||||
### Colors Not Changing
|
|
||||||
|
|
||||||
1. Verify you're using CSS variables
|
|
||||||
2. Check if `forceDark` is overriding your styles
|
|
||||||
3. Ensure variables are set on `:root` or `html`
|
|
||||||
|
|
||||||
### Images Not Showing
|
|
||||||
|
|
||||||
1. Verify image variable name matches CSS
|
|
||||||
2. Check image format is supported
|
|
||||||
3. Ensure image size is reasonable
|
|
||||||
4. Verify `url()` wrapper in CSS
|
|
||||||
|
|
||||||
### Dark Mode Issues
|
|
||||||
|
|
||||||
1. Test with `forceDark: true` and `forceDark: false`
|
|
||||||
2. Check if transparency effects are interfering
|
|
||||||
3. Verify `html.dark` selector is correct
|
|
||||||
|
|
||||||
## Resources
|
|
||||||
|
|
||||||
- **Theme Creator**: Access via BetterSEQTA+ settings
|
|
||||||
- **CSS Variables Reference**: See [CSS Variables](#css-variables) section above
|
|
||||||
- **SEQTA DOM Structure**: Inspect SEQTA pages in browser DevTools
|
|
||||||
- **BetterSEQTA+ Source**: Check `src/css/injected.scss` for default styles
|
|
||||||
|
|
||||||
## Contributing Themes
|
|
||||||
|
|
||||||
If you create a great theme, consider sharing it:
|
|
||||||
|
|
||||||
1. Export your theme (Share button in theme creator)
|
|
||||||
2. Submit to the BetterSEQTA+ theme store
|
|
||||||
3. Or share on GitHub/Discord
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
**Note**: This documentation is based on BetterSEQTA+ v3.4.13. Some details may change in future versions.
|
|
||||||
|
|
||||||
@@ -1,348 +0,0 @@
|
|||||||
# Troubleshooting Guide
|
|
||||||
|
|
||||||
Having issues with BetterSEQTA+ development? This guide covers the most common problems and their solutions.
|
|
||||||
|
|
||||||
## Table of Contents
|
|
||||||
|
|
||||||
- [Installation Issues](#installation-issues)
|
|
||||||
- [Development Server Issues](#development-server-issues)
|
|
||||||
- [Browser Extension Issues](#browser-extension-issues)
|
|
||||||
- [Plugin Development Issues](#plugin-development-issues)
|
|
||||||
- [Build Issues](#build-issues)
|
|
||||||
- [Still Stuck?](#still-stuck)
|
|
||||||
|
|
||||||
## Installation Issues
|
|
||||||
|
|
||||||
### ❌ "npm install" fails with peer dependency errors
|
|
||||||
|
|
||||||
**Problem**: You see errors about peer dependencies or conflicting packages.
|
|
||||||
|
|
||||||
**Solution**:
|
|
||||||
```bash
|
|
||||||
rm -rf node_modules package-lock.json
|
|
||||||
npm install --legacy-peer-deps
|
|
||||||
```
|
|
||||||
|
|
||||||
### ❌ "Cannot find module" errors
|
|
||||||
|
|
||||||
**Problem**: Node.js can't find required packages.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Clear and reinstall**:
|
|
||||||
```bash
|
|
||||||
rm -rf node_modules
|
|
||||||
npm install --legacy-peer-deps
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Check Node.js version**:
|
|
||||||
```bash
|
|
||||||
node --version # Should be v16 or higher
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Try with npm cache clean**:
|
|
||||||
```bash
|
|
||||||
npm cache clean --force
|
|
||||||
npm install --legacy-peer-deps
|
|
||||||
```
|
|
||||||
|
|
||||||
### ❌ Permission errors on macOS/Linux
|
|
||||||
|
|
||||||
**Problem**: "EACCES" or permission denied errors.
|
|
||||||
|
|
||||||
**Solution**:
|
|
||||||
```bash
|
|
||||||
sudo chown -R $(whoami) ~/.npm
|
|
||||||
sudo chown -R $(whoami) /usr/local/lib/node_modules
|
|
||||||
```
|
|
||||||
|
|
||||||
## Development Server Issues
|
|
||||||
|
|
||||||
### ❌ "npm run dev" fails
|
|
||||||
|
|
||||||
**Problem**: Development server won't start.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check if port is in use**:
|
|
||||||
```bash
|
|
||||||
lsof -i :5173 # Kill the process using the port
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Clear dist folder**:
|
|
||||||
```bash
|
|
||||||
rm -rf dist
|
|
||||||
npm run dev
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Check for TypeScript errors**:
|
|
||||||
```bash
|
|
||||||
npx tsc --noEmit # Check for type errors
|
|
||||||
```
|
|
||||||
|
|
||||||
### ❌ Changes not reflecting in browser
|
|
||||||
|
|
||||||
**Problem**: You make code changes but don't see them in the browser.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Reload the extension**:
|
|
||||||
- Go to `chrome://extensions`
|
|
||||||
- Find BetterSEQTA+ and click the refresh icon
|
|
||||||
- Refresh your SEQTA page
|
|
||||||
|
|
||||||
2. **Check if dev server is running**:
|
|
||||||
- Look for "Build completed" in your terminal
|
|
||||||
- If not, restart `npm run dev`
|
|
||||||
|
|
||||||
3. **Hard refresh the page**:
|
|
||||||
- Press `Ctrl+Shift+R` (or `Cmd+Shift+R` on Mac)
|
|
||||||
|
|
||||||
## Browser Extension Issues
|
|
||||||
|
|
||||||
### ❌ Extension doesn't load in Chrome
|
|
||||||
|
|
||||||
**Problem**: Extension appears in `chrome://extensions` but doesn't work.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check for errors**:
|
|
||||||
- Go to `chrome://extensions`
|
|
||||||
- Click "Errors" button on BetterSEQTA+
|
|
||||||
- Fix any JavaScript errors shown
|
|
||||||
|
|
||||||
2. **Verify manifest**:
|
|
||||||
- Check if `dist/manifest.json` exists
|
|
||||||
- Ensure it has proper structure
|
|
||||||
|
|
||||||
3. **Check permissions**:
|
|
||||||
- Extension needs permission to access SEQTA pages
|
|
||||||
- Click "Details" → "Site access" → "On all sites"
|
|
||||||
|
|
||||||
### ❌ Extension doesn't appear on SEQTA pages
|
|
||||||
|
|
||||||
**Problem**: Extension loads but doesn't modify SEQTA.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check if you're on a SEQTA Learn page**:
|
|
||||||
- URL should contain "seqta" or "learn"
|
|
||||||
- Page title should include "SEQTA Learn"
|
|
||||||
|
|
||||||
2. **Check browser console**:
|
|
||||||
- Press `F12` → Console tab
|
|
||||||
- Look for "[BetterSEQTA+]" messages
|
|
||||||
- If no messages, extension isn't running
|
|
||||||
|
|
||||||
3. **Verify page detection**:
|
|
||||||
- Extension only runs on actual SEQTA Learn pages
|
|
||||||
- Test on a real SEQTA instance
|
|
||||||
|
|
||||||
### ❌ Settings page won't open
|
|
||||||
|
|
||||||
**Problem**: Clicking the extension icon doesn't open settings.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check popup errors**:
|
|
||||||
- Right-click extension icon → "Inspect popup"
|
|
||||||
- Look for JavaScript errors
|
|
||||||
|
|
||||||
2. **Clear extension storage**:
|
|
||||||
```javascript
|
|
||||||
// In browser console on any page:
|
|
||||||
chrome.storage.local.clear()
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Reload extension and try again**
|
|
||||||
|
|
||||||
## Plugin Development Issues
|
|
||||||
|
|
||||||
### ❌ My plugin doesn't appear in settings
|
|
||||||
|
|
||||||
**Problem**: Created a plugin but it's not showing up.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check plugin registration**:
|
|
||||||
- Ensure your plugin is imported in `src/plugins/index.ts`
|
|
||||||
- Verify `pluginManager.registerPlugin(yourPlugin)` is called
|
|
||||||
|
|
||||||
2. **Check plugin structure**:
|
|
||||||
```typescript
|
|
||||||
// Ensure your plugin has all required fields
|
|
||||||
const myPlugin: Plugin = {
|
|
||||||
id: "unique-id", // Must be unique
|
|
||||||
name: "Display Name",
|
|
||||||
description: "What it does",
|
|
||||||
version: "1.0.0",
|
|
||||||
run: async (api) => {
|
|
||||||
// Your code here
|
|
||||||
}
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Check for errors**:
|
|
||||||
- Look in browser console for plugin loading errors
|
|
||||||
|
|
||||||
### ❌ Plugin settings not working
|
|
||||||
|
|
||||||
**Problem**: Plugin settings don't save or load properly.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check settings definition**:
|
|
||||||
```typescript
|
|
||||||
import { defineSettings, booleanSetting } from "@/plugins/core/settingsHelpers";
|
|
||||||
|
|
||||||
const settings = defineSettings({
|
|
||||||
myOption: booleanSetting({
|
|
||||||
default: true,
|
|
||||||
title: "My Option",
|
|
||||||
description: "What this does"
|
|
||||||
})
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Wait for settings to load**:
|
|
||||||
```typescript
|
|
||||||
run: async (api) => {
|
|
||||||
await api.settings.loaded; // Wait for settings to load
|
|
||||||
console.log(api.settings.myOption); // Now you can use settings
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### ❌ Plugin API functions not working
|
|
||||||
|
|
||||||
**Problem**: `api.seqta.onMount()` or other API functions don't work.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check selector specificity**:
|
|
||||||
```typescript
|
|
||||||
// Be specific with selectors
|
|
||||||
api.seqta.onMount(".home-page", (element) => {
|
|
||||||
// Your code
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Wait for elements**:
|
|
||||||
```typescript
|
|
||||||
// Some elements load after page navigation
|
|
||||||
api.seqta.onPageChange((page) => {
|
|
||||||
if (page === "home") {
|
|
||||||
api.seqta.onMount(".home-content", (element) => {
|
|
||||||
// Now element should exist
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
## Build Issues
|
|
||||||
|
|
||||||
### ❌ "npm run build" fails
|
|
||||||
|
|
||||||
**Problem**: Production build fails with errors.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Check TypeScript errors**:
|
|
||||||
```bash
|
|
||||||
npx tsc --noEmit
|
|
||||||
```
|
|
||||||
|
|
||||||
2. **Clear cache and rebuild**:
|
|
||||||
```bash
|
|
||||||
rm -rf dist node_modules
|
|
||||||
npm install --legacy-peer-deps
|
|
||||||
npm run build
|
|
||||||
```
|
|
||||||
|
|
||||||
3. **Check for import errors**:
|
|
||||||
- Ensure all imports use correct paths
|
|
||||||
- Check for missing files
|
|
||||||
|
|
||||||
### ❌ Built extension doesn't work
|
|
||||||
|
|
||||||
**Problem**: `npm run build` succeeds but extension doesn't work.
|
|
||||||
|
|
||||||
**Solutions**:
|
|
||||||
1. **Test the built extension**:
|
|
||||||
- Load the `dist` folder as unpacked extension
|
|
||||||
- Check console for errors
|
|
||||||
|
|
||||||
2. **Compare with dev version**:
|
|
||||||
- If dev works but build doesn't, there might be a build configuration issue
|
|
||||||
|
|
||||||
3. **Check manifest generation**:
|
|
||||||
- Verify `dist/manifest.json` looks correct
|
|
||||||
- Compare with working version
|
|
||||||
|
|
||||||
## Common Error Messages
|
|
||||||
|
|
||||||
### "Cannot access contents of the URL"
|
|
||||||
- **Cause**: Extension permissions issue
|
|
||||||
- **Fix**: Go to `chrome://extensions` → BetterSEQTA+ → Details → Site access → "On all sites"
|
|
||||||
|
|
||||||
### "Extension context invalidated"
|
|
||||||
- **Cause**: Extension was reloaded while page was open
|
|
||||||
- **Fix**: Refresh the SEQTA page
|
|
||||||
|
|
||||||
### "Uncaught ReferenceError: browser is not defined"
|
|
||||||
- **Cause**: Missing webextension-polyfill import
|
|
||||||
- **Fix**: Add `import browser from "webextension-polyfill";` at top of file
|
|
||||||
|
|
||||||
### "Module not found: Can't resolve '@/...' "
|
|
||||||
- **Cause**: TypeScript path mapping issue
|
|
||||||
- **Fix**: Check `tsconfig.json` and `vite.config.ts` for path configuration
|
|
||||||
|
|
||||||
## Performance Issues
|
|
||||||
|
|
||||||
### Extension makes SEQTA slow
|
|
||||||
1. **Check for memory leaks**:
|
|
||||||
- Use Chrome DevTools → Performance tab
|
|
||||||
- Look for growing memory usage
|
|
||||||
|
|
||||||
2. **Optimize plugin code**:
|
|
||||||
- Remove unnecessary listeners
|
|
||||||
- Clean up intervals/timeouts
|
|
||||||
- Use efficient selectors
|
|
||||||
|
|
||||||
3. **Profile your changes**:
|
|
||||||
- Test with extension disabled vs enabled
|
|
||||||
- Identify which plugin is causing issues
|
|
||||||
|
|
||||||
## Still Stuck?
|
|
||||||
|
|
||||||
If none of these solutions work:
|
|
||||||
|
|
||||||
1. **🔍 Search existing issues**: [GitHub Issues](https://github.com/BetterSEQTA/BetterSEQTA-plus/issues)
|
|
||||||
|
|
||||||
2. **💬 Ask on Discord**: [Join our server](https://discord.gg/YzmbnCDkat) - fastest way to get help!
|
|
||||||
|
|
||||||
3. **📝 Create a new issue**: Include:
|
|
||||||
- Your operating system
|
|
||||||
- Node.js version (`node --version`)
|
|
||||||
- Browser version
|
|
||||||
- Exact error message
|
|
||||||
- Steps to reproduce
|
|
||||||
- What you've already tried
|
|
||||||
|
|
||||||
4. **📧 Email us**: betterseqta.plus@gmail.com for urgent issues
|
|
||||||
|
|
||||||
## Getting More Debug Info
|
|
||||||
|
|
||||||
### Enable verbose logging
|
|
||||||
Add this to your plugin's `run` function:
|
|
||||||
```typescript
|
|
||||||
console.log("[DEBUG] Plugin starting:", api);
|
|
||||||
```
|
|
||||||
|
|
||||||
### Check extension background page
|
|
||||||
1. Go to `chrome://extensions`
|
|
||||||
2. Click "Details" on BetterSEQTA+
|
|
||||||
3. Click "Inspect views: background page"
|
|
||||||
4. Check console for background script errors
|
|
||||||
|
|
||||||
### Export debug info
|
|
||||||
Run this in browser console on a SEQTA page:
|
|
||||||
```javascript
|
|
||||||
console.log("Extension info:", {
|
|
||||||
version: chrome.runtime.getManifest().version,
|
|
||||||
url: window.location.href,
|
|
||||||
userAgent: navigator.userAgent,
|
|
||||||
storage: await chrome.storage.local.get()
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
Remember: **Don't give up!** Every developer faces these issues. The community is here to help, and solving these problems makes you a better developer. 💪
|
|
||||||
@@ -22,7 +22,6 @@ Thank you for your interest in contributing to BetterSEQTA+! This document provi
|
|||||||
BetterSEQTA+ is committed to providing a welcoming and inclusive environment for all contributors. We expect all participants to adhere to our Code of Conduct, which promotes respectful and harassment-free interaction.
|
BetterSEQTA+ is committed to providing a welcoming and inclusive environment for all contributors. We expect all participants to adhere to our Code of Conduct, which promotes respectful and harassment-free interaction.
|
||||||
|
|
||||||
Key points:
|
Key points:
|
||||||
|
|
||||||
- Be respectful and inclusive
|
- Be respectful and inclusive
|
||||||
- Focus on what is best for the community
|
- Focus on what is best for the community
|
||||||
- Show empathy towards other community members
|
- Show empathy towards other community members
|
||||||
@@ -106,7 +105,6 @@ git checkout -b feature/my-new-feature
|
|||||||
2. **Write Clear Commit Messages**
|
2. **Write Clear Commit Messages**
|
||||||
|
|
||||||
Follow the conventional commits format:
|
Follow the conventional commits format:
|
||||||
|
|
||||||
```
|
```
|
||||||
feat: add new feature
|
feat: add new feature
|
||||||
fix: resolve bug with timetable
|
fix: resolve bug with timetable
|
||||||
@@ -120,7 +118,6 @@ git checkout -b feature/my-new-feature
|
|||||||
4. **Run Tests**
|
4. **Run Tests**
|
||||||
|
|
||||||
Make sure all tests pass before submitting your PR:
|
Make sure all tests pass before submitting your PR:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm test
|
npm test
|
||||||
```
|
```
|
||||||
@@ -160,7 +157,6 @@ We follow TypeScript best practices and have a consistent code style:
|
|||||||
5. **Use Linters**
|
5. **Use Linters**
|
||||||
|
|
||||||
We use ESLint and Prettier. Run them before submitting your PR:
|
We use ESLint and Prettier. Run them before submitting your PR:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm run lint
|
npm run lint
|
||||||
npm run format
|
npm run format
|
||||||
@@ -177,7 +173,6 @@ If you find a bug, please report it by creating an issue on GitHub:
|
|||||||
2. **Use the Bug Report Template**
|
2. **Use the Bug Report Template**
|
||||||
|
|
||||||
Fill in all sections of the bug report template:
|
Fill in all sections of the bug report template:
|
||||||
|
|
||||||
- Description
|
- Description
|
||||||
- Steps to reproduce
|
- Steps to reproduce
|
||||||
- Expected behavior
|
- Expected behavior
|
||||||
@@ -200,7 +195,6 @@ We welcome feature suggestions! To suggest a new feature:
|
|||||||
2. **Use the Feature Request Template**
|
2. **Use the Feature Request Template**
|
||||||
|
|
||||||
Fill in all sections of the feature request template:
|
Fill in all sections of the feature request template:
|
||||||
|
|
||||||
- Description
|
- Description
|
||||||
- Use case
|
- Use case
|
||||||
- Potential implementation
|
- Potential implementation
|
||||||
@@ -265,4 +259,4 @@ If you have any questions about contributing, please:
|
|||||||
2. Ask in the Discord server
|
2. Ask in the Discord server
|
||||||
3. Open a GitHub Discussion
|
3. Open a GitHub Discussion
|
||||||
|
|
||||||
Thank you for contributing to BetterSEQTA+! Your efforts help make SEQTA better for students and teachers everywhere.
|
Thank you for contributing to BetterSEQTA+! Your efforts help make SEQTA better for students and teachers everywhere.
|
||||||
@@ -132,7 +132,6 @@ bun install
|
|||||||
#### Extension not appearing in SEQTA
|
#### Extension not appearing in SEQTA
|
||||||
|
|
||||||
Make sure:
|
Make sure:
|
||||||
|
|
||||||
- You're visiting a SEQTA Learn page
|
- You're visiting a SEQTA Learn page
|
||||||
- The extension is enabled
|
- The extension is enabled
|
||||||
- You've refreshed the page after installing the extension
|
- You've refreshed the page after installing the extension
|
||||||
@@ -140,7 +139,6 @@ Make sure:
|
|||||||
#### Development build not updating
|
#### Development build not updating
|
||||||
|
|
||||||
Try:
|
Try:
|
||||||
|
|
||||||
1. Stopping the development server
|
1. Stopping the development server
|
||||||
2. Clearing your browser cache
|
2. Clearing your browser cache
|
||||||
3. Removing the extension from your browser
|
3. Removing the extension from your browser
|
||||||
@@ -179,4 +177,4 @@ bun run dev
|
|||||||
Now that you have BetterSEQTA+ installed, you can:
|
Now that you have BetterSEQTA+ installed, you can:
|
||||||
|
|
||||||
- [Getting Started with Plugins](./plugins/getting-started.md)
|
- [Getting Started with Plugins](./plugins/getting-started.md)
|
||||||
- [Contribute to the project](../CONTRIBUTING.md)
|
- [Contribute to the project](../CONTRIBUTING.md)
|
||||||
@@ -1,335 +0,0 @@
|
|||||||
# Example Plugin Template
|
|
||||||
|
|
||||||
This is a complete, working example of a simple BetterSEQTA+ plugin. You can copy this code and modify it to create your own plugin!
|
|
||||||
|
|
||||||
## What This Example Does
|
|
||||||
|
|
||||||
This plugin adds a friendly welcome message to the SEQTA homepage and lets users customize the message through settings.
|
|
||||||
|
|
||||||
## Complete Plugin Code
|
|
||||||
|
|
||||||
Create a new file in `src/plugins/built-in/my-first-plugin/index.ts`:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
|
||||||
import { BasePlugin } from "@/plugins/core/settings";
|
|
||||||
import {
|
|
||||||
defineSettings,
|
|
||||||
booleanSetting,
|
|
||||||
stringSetting
|
|
||||||
} from "@/plugins/core/settingsHelpers";
|
|
||||||
import { Setting } from "@/plugins/core/settingsHelpers";
|
|
||||||
|
|
||||||
// Define the plugin settings
|
|
||||||
const settings = defineSettings({
|
|
||||||
enabled: booleanSetting({
|
|
||||||
default: true,
|
|
||||||
title: "Show Welcome Message",
|
|
||||||
description: "Display a welcome message on the SEQTA homepage"
|
|
||||||
}),
|
|
||||||
customMessage: stringSetting({
|
|
||||||
default: "Welcome to SEQTA! 🎉",
|
|
||||||
title: "Custom Message",
|
|
||||||
description: "The message to display on the homepage",
|
|
||||||
maxLength: 100
|
|
||||||
}),
|
|
||||||
showEmoji: booleanSetting({
|
|
||||||
default: true,
|
|
||||||
title: "Show Emoji",
|
|
||||||
description: "Include emojis in the welcome message"
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
// Create settings class
|
|
||||||
class MyFirstPluginSettings extends BasePlugin<typeof settings> {
|
|
||||||
@Setting(settings.enabled)
|
|
||||||
enabled!: boolean;
|
|
||||||
|
|
||||||
@Setting(settings.customMessage)
|
|
||||||
customMessage!: string;
|
|
||||||
|
|
||||||
@Setting(settings.showEmoji)
|
|
||||||
showEmoji!: boolean;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create settings instance
|
|
||||||
const settingsInstance = new MyFirstPluginSettings();
|
|
||||||
|
|
||||||
// Define the plugin
|
|
||||||
const myFirstPlugin: Plugin<typeof settings> = {
|
|
||||||
id: "my-first-plugin",
|
|
||||||
name: "My First Plugin",
|
|
||||||
description: "Adds a customizable welcome message to the SEQTA homepage",
|
|
||||||
version: "1.0.0",
|
|
||||||
|
|
||||||
// Link our settings
|
|
||||||
settings: settingsInstance.settings,
|
|
||||||
|
|
||||||
// Mark as beta (optional)
|
|
||||||
beta: true,
|
|
||||||
|
|
||||||
// Add some CSS styles (optional)
|
|
||||||
styles: `
|
|
||||||
.my-plugin-welcome {
|
|
||||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
||||||
color: white;
|
|
||||||
padding: 20px;
|
|
||||||
border-radius: 12px;
|
|
||||||
margin: 20px;
|
|
||||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
||||||
text-align: center;
|
|
||||||
font-size: 18px;
|
|
||||||
animation: slideIn 0.5s ease-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes slideIn {
|
|
||||||
from {
|
|
||||||
opacity: 0;
|
|
||||||
transform: translateY(-20px);
|
|
||||||
}
|
|
||||||
to {
|
|
||||||
opacity: 1;
|
|
||||||
transform: translateY(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.my-plugin-welcome .close-btn {
|
|
||||||
float: right;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
border: none;
|
|
||||||
color: white;
|
|
||||||
padding: 5px 10px;
|
|
||||||
border-radius: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.my-plugin-welcome .close-btn:hover {
|
|
||||||
background: rgba(255, 255, 255, 0.3);
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
|
|
||||||
// Main plugin function
|
|
||||||
run: async (api) => {
|
|
||||||
console.log("[My First Plugin] Starting up! 🚀");
|
|
||||||
|
|
||||||
// Wait for settings to load
|
|
||||||
await api.settings.loaded;
|
|
||||||
|
|
||||||
let welcomeElement: HTMLElement | null = null;
|
|
||||||
|
|
||||||
// Function to create the welcome message
|
|
||||||
const createWelcomeMessage = () => {
|
|
||||||
// Only show if enabled in settings
|
|
||||||
if (!api.settings.enabled) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove existing message if it exists
|
|
||||||
if (welcomeElement) {
|
|
||||||
welcomeElement.remove();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the message element
|
|
||||||
welcomeElement = document.createElement("div");
|
|
||||||
welcomeElement.className = "my-plugin-welcome";
|
|
||||||
|
|
||||||
// Build the message content
|
|
||||||
let message = api.settings.customMessage;
|
|
||||||
if (!api.settings.showEmoji) {
|
|
||||||
// Remove emojis if disabled
|
|
||||||
message = message.replace(/[\u{1F600}-\u{1F64F}]|[\u{1F300}-\u{1F5FF}]|[\u{1F680}-\u{1F6FF}]|[\u{1F1E0}-\u{1F1FF}]|[\u{2600}-\u{26FF}]|[\u{2700}-\u{27BF}]/gu, '');
|
|
||||||
}
|
|
||||||
|
|
||||||
welcomeElement.innerHTML = `
|
|
||||||
<button class="close-btn" onclick="this.parentElement.remove()">×</button>
|
|
||||||
<div>${message}</div>
|
|
||||||
<small style="opacity: 0.8; margin-top: 10px; display: block;">
|
|
||||||
Powered by My First Plugin
|
|
||||||
</small>
|
|
||||||
`;
|
|
||||||
|
|
||||||
return welcomeElement;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Function to add message to homepage
|
|
||||||
const addToHomepage = () => {
|
|
||||||
api.seqta.onMount(".home-page, .dashboard, [class*='home']", (homePage) => {
|
|
||||||
console.log("[My First Plugin] Found homepage, adding welcome message");
|
|
||||||
|
|
||||||
const message = createWelcomeMessage();
|
|
||||||
if (message) {
|
|
||||||
// Add to the top of the homepage
|
|
||||||
homePage.insertBefore(message, homePage.firstChild);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// Add message when plugin starts
|
|
||||||
addToHomepage();
|
|
||||||
|
|
||||||
// Re-add message when user navigates to homepage
|
|
||||||
api.seqta.onPageChange((page) => {
|
|
||||||
console.log("[My First Plugin] Page changed to:", page);
|
|
||||||
if (page.includes("home") || page.includes("dashboard")) {
|
|
||||||
// Small delay to let the page load
|
|
||||||
setTimeout(addToHomepage, 500);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Listen for settings changes and update the message
|
|
||||||
api.settings.onChange("enabled", (enabled) => {
|
|
||||||
console.log("[My First Plugin] Enabled setting changed:", enabled);
|
|
||||||
if (enabled) {
|
|
||||||
addToHomepage();
|
|
||||||
} else if (welcomeElement) {
|
|
||||||
welcomeElement.remove();
|
|
||||||
welcomeElement = null;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
api.settings.onChange("customMessage", (newMessage) => {
|
|
||||||
console.log("[My First Plugin] Message changed:", newMessage);
|
|
||||||
if (welcomeElement && api.settings.enabled) {
|
|
||||||
// Update existing message
|
|
||||||
addToHomepage();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
api.settings.onChange("showEmoji", (showEmoji) => {
|
|
||||||
console.log("[My First Plugin] Show emoji changed:", showEmoji);
|
|
||||||
if (welcomeElement && api.settings.enabled) {
|
|
||||||
// Update existing message
|
|
||||||
addToHomepage();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Return cleanup function (called when plugin is disabled)
|
|
||||||
return () => {
|
|
||||||
console.log("[My First Plugin] Cleaning up...");
|
|
||||||
if (welcomeElement) {
|
|
||||||
welcomeElement.remove();
|
|
||||||
welcomeElement = null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default myFirstPlugin;
|
|
||||||
```
|
|
||||||
|
|
||||||
## How to Use This Example
|
|
||||||
|
|
||||||
### Step 1: Create the Plugin File
|
|
||||||
1. Create a new folder: `src/plugins/built-in/my-first-plugin/`
|
|
||||||
2. Create `index.ts` in that folder
|
|
||||||
3. Copy the code above into `index.ts`
|
|
||||||
|
|
||||||
### Step 2: Register the Plugin
|
|
||||||
Add this to `src/plugins/index.ts`:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
// Add this import at the top
|
|
||||||
import myFirstPlugin from "./built-in/my-first-plugin";
|
|
||||||
|
|
||||||
// Add this line where other plugins are registered
|
|
||||||
pluginManager.registerPlugin(myFirstPlugin);
|
|
||||||
```
|
|
||||||
|
|
||||||
### Step 3: Test It
|
|
||||||
1. Run `npm run dev`
|
|
||||||
2. Reload your extension in Chrome
|
|
||||||
3. Visit a SEQTA page
|
|
||||||
4. You should see your welcome message!
|
|
||||||
5. Open BetterSEQTA+ settings to customize it
|
|
||||||
|
|
||||||
## Key Concepts Explained
|
|
||||||
|
|
||||||
### 1. Plugin Structure
|
|
||||||
```typescript
|
|
||||||
const myPlugin: Plugin = {
|
|
||||||
id: "unique-id", // Must be unique across all plugins
|
|
||||||
name: "Display Name", // Shown in settings
|
|
||||||
description: "What it does", // Shown in settings
|
|
||||||
version: "1.0.0", // Plugin version
|
|
||||||
settings: settingsObject, // User-configurable options
|
|
||||||
styles: "/* CSS here */", // Optional CSS styles
|
|
||||||
run: async (api) => { // Main plugin code
|
|
||||||
// Your code here
|
|
||||||
}
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. Settings System
|
|
||||||
```typescript
|
|
||||||
// Define what settings your plugin has
|
|
||||||
const settings = defineSettings({
|
|
||||||
myOption: booleanSetting({
|
|
||||||
default: true,
|
|
||||||
title: "My Option",
|
|
||||||
description: "What this option does"
|
|
||||||
})
|
|
||||||
});
|
|
||||||
|
|
||||||
// Use in your plugin
|
|
||||||
if (api.settings.myOption) {
|
|
||||||
// Do something
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. SEQTA Integration
|
|
||||||
```typescript
|
|
||||||
// Wait for elements to appear
|
|
||||||
api.seqta.onMount(".some-selector", (element) => {
|
|
||||||
// Modify the element
|
|
||||||
});
|
|
||||||
|
|
||||||
// Detect page changes
|
|
||||||
api.seqta.onPageChange((page) => {
|
|
||||||
if (page === "home") {
|
|
||||||
// User navigated to homepage
|
|
||||||
}
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
### 4. Cleanup
|
|
||||||
Always return a cleanup function to remove your changes when the plugin is disabled:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
run: async (api) => {
|
|
||||||
// Add your features
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
// Remove your features
|
|
||||||
};
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Customization Ideas
|
|
||||||
|
|
||||||
Want to modify this example? Here are some ideas:
|
|
||||||
|
|
||||||
1. **Change the styling**: Modify the CSS to use different colors, animations, or layouts
|
|
||||||
2. **Add more settings**: Number settings, select dropdowns, hotkeys
|
|
||||||
3. **Different trigger**: Show on different pages, or based on time of day
|
|
||||||
4. **Add interactions**: Buttons that do things when clicked
|
|
||||||
5. **Store data**: Use `api.storage` to remember user preferences
|
|
||||||
6. **Communicate with other plugins**: Use `api.events` to send/receive events
|
|
||||||
|
|
||||||
## Next Steps
|
|
||||||
|
|
||||||
Once you've got this working:
|
|
||||||
|
|
||||||
1. **Experiment**: Try changing things and see what happens
|
|
||||||
2. **Read other plugins**: Look at the built-in plugins for inspiration
|
|
||||||
3. **Check the API docs**: Learn about all available API functions
|
|
||||||
4. **Share your creation**: Show it off in Discord!
|
|
||||||
|
|
||||||
## Need Help?
|
|
||||||
|
|
||||||
- 💬 Ask in our [Discord server](https://discord.gg/YzmbnCDkat)
|
|
||||||
- 📚 Read our [Plugin Development Guide](./README.md)
|
|
||||||
- 🐛 Check the [Troubleshooting Guide](../TROUBLESHOOTING.md)
|
|
||||||
- 📝 Open an issue on GitHub
|
|
||||||
|
|
||||||
Happy coding! 🎉
|
|
||||||
+46
-86
@@ -5,7 +5,6 @@ Hey there! 👋 So you want to create a plugin for BetterSEQTA+? That's awesome!
|
|||||||
## What is a Plugin?
|
## What is a Plugin?
|
||||||
|
|
||||||
In BetterSEQTA+, a plugin is like a mini-app that adds new features to SEQTA. Think of it as a piece of LEGO that you can snap onto SEQTA to make it do new things. For example, you could create a plugin that:
|
In BetterSEQTA+, a plugin is like a mini-app that adds new features to SEQTA. Think of it as a piece of LEGO that you can snap onto SEQTA to make it do new things. For example, you could create a plugin that:
|
||||||
|
|
||||||
- Changes how SEQTA looks
|
- Changes how SEQTA looks
|
||||||
- Adds new buttons or features
|
- Adds new buttons or features
|
||||||
- Shows extra information on your timetable
|
- Shows extra information on your timetable
|
||||||
@@ -17,43 +16,40 @@ In BetterSEQTA+, a plugin is like a mini-app that adds new features to SEQTA. Th
|
|||||||
Let's create a super simple plugin together. We'll make one that adds a friendly message to the SEQTA homepage. Here's what we'll need:
|
Let's create a super simple plugin together. We'll make one that adds a friendly message to the SEQTA homepage. Here's what we'll need:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
|
|
||||||
const myFirstPlugin: Plugin = {
|
const myFirstPlugin: Plugin = {
|
||||||
// Every plugin needs these basic details
|
// Every plugin needs these basic details
|
||||||
id: "my-first-plugin",
|
id: 'my-first-plugin',
|
||||||
name: "My First Plugin",
|
name: 'My First Plugin',
|
||||||
description: "Adds a friendly message to SEQTA",
|
description: 'Adds a friendly message to SEQTA',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
|
|
||||||
// This tells BetterSEQTA+ that users can turn our plugin on/off
|
// This tells BetterSEQTA+ that users can turn our plugin on/off
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
|
|
||||||
// Optional: Mark your plugin as beta to show a "Beta" tag in settings
|
// This is where the magic happens!
|
||||||
beta: true,
|
|
||||||
|
|
||||||
// This is where the magic happens!
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Wait for the homepage to load
|
// Wait for the homepage to load
|
||||||
api.seqta.onMount(".home-page", (homePage) => {
|
api.seqta.onMount('.home-page', (homePage) => {
|
||||||
// Create our message
|
// Create our message
|
||||||
const message = document.createElement("div");
|
const message = document.createElement('div');
|
||||||
message.textContent = "Hello from my first plugin! 🎉";
|
message.textContent = 'Hello from my first plugin! 🎉';
|
||||||
message.style.padding = "20px";
|
message.style.padding = '20px';
|
||||||
message.style.backgroundColor = "#e9f5ff";
|
message.style.backgroundColor = '#e9f5ff';
|
||||||
message.style.borderRadius = "8px";
|
message.style.borderRadius = '8px';
|
||||||
message.style.margin = "20px";
|
message.style.margin = '20px';
|
||||||
|
|
||||||
// Add it to the page
|
// Add it to the page
|
||||||
homePage.prepend(message);
|
homePage.prepend(message);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Return a cleanup function that removes our message when the plugin is disabled
|
// Return a cleanup function that removes our message when the plugin is disabled
|
||||||
return () => {
|
return () => {
|
||||||
const message = document.querySelector(".home-page > div");
|
const message = document.querySelector('.home-page > div');
|
||||||
message?.remove();
|
message?.remove();
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default myFirstPlugin;
|
export default myFirstPlugin;
|
||||||
@@ -68,11 +64,10 @@ Let's break down what's happening here:
|
|||||||
- `description`: Explain what your plugin does
|
- `description`: Explain what your plugin does
|
||||||
- `version`: Your plugin's version number
|
- `version`: Your plugin's version number
|
||||||
3. We set `disableToggle: true` so users can turn our plugin on/off in settings
|
3. We set `disableToggle: true` so users can turn our plugin on/off in settings
|
||||||
4. We set `beta: true` to mark the plugin as beta
|
4. The `run` function is where we put our plugin's code
|
||||||
5. The `run` function is where we put our plugin's code
|
5. We use `api.seqta.onMount` to wait for the homepage to load
|
||||||
6. We use `api.seqta.onMount` to wait for the homepage to load
|
6. We create and style a message element
|
||||||
7. We create and style a message element
|
7. We return a cleanup function that removes our changes when the plugin is disabled
|
||||||
8. We return a cleanup function that removes our changes when the plugin is disabled
|
|
||||||
|
|
||||||
## The Plugin API
|
## The Plugin API
|
||||||
|
|
||||||
@@ -84,13 +79,13 @@ This helps you interact with SEQTA's pages:
|
|||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
// Wait for an element to appear on the page
|
// Wait for an element to appear on the page
|
||||||
api.seqta.onMount(".some-class", (element) => {
|
api.seqta.onMount('.some-class', (element) => {
|
||||||
// Do something with the element
|
// Do something with the element
|
||||||
});
|
});
|
||||||
|
|
||||||
// Know when the user changes pages
|
// Know when the user changes pages
|
||||||
api.seqta.onPageChange((page) => {
|
api.seqta.onPageChange((page) => {
|
||||||
console.log("User went to:", page);
|
console.log('User went to:', page);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Get the current page
|
// Get the current page
|
||||||
@@ -102,12 +97,8 @@ const currentPage = api.seqta.getCurrentPage();
|
|||||||
Want to let users customize your plugin? Use settings!
|
Want to let users customize your plugin? Use settings!
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import { BasePlugin } from "@/plugins/core/settings";
|
import { BasePlugin } from '@/plugins/core/settings';
|
||||||
import {
|
import { booleanSetting, defineSettings, Setting } from '@/plugins/core/settingsHelpers';
|
||||||
booleanSetting,
|
|
||||||
defineSettings,
|
|
||||||
Setting,
|
|
||||||
} from "@/plugins/core/settingsHelpers";
|
|
||||||
|
|
||||||
// Define your settings
|
// Define your settings
|
||||||
const settings = defineSettings({
|
const settings = defineSettings({
|
||||||
@@ -115,7 +106,7 @@ const settings = defineSettings({
|
|||||||
default: true,
|
default: true,
|
||||||
title: "Show Welcome Message",
|
title: "Show Welcome Message",
|
||||||
description: "Show a friendly message on the homepage",
|
description: "Show a friendly message on the homepage",
|
||||||
}),
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
// Create a class for your plugin
|
// Create a class for your plugin
|
||||||
@@ -130,22 +121,22 @@ const settingsInstance = new MyPluginClass();
|
|||||||
const myPlugin: Plugin<typeof settings> = {
|
const myPlugin: Plugin<typeof settings> = {
|
||||||
// ... other plugin details ...
|
// ... other plugin details ...
|
||||||
settings: settingsInstance.settings,
|
settings: settingsInstance.settings,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Use the setting
|
// Use the setting
|
||||||
if (api.settings.showMessage) {
|
if (api.settings.showMessage) {
|
||||||
// Show the message
|
// Show the message
|
||||||
}
|
}
|
||||||
|
|
||||||
// Listen for setting changes
|
// Listen for setting changes
|
||||||
api.settings.onChange("showMessage", (newValue) => {
|
api.settings.onChange('showMessage', (newValue) => {
|
||||||
if (newValue) {
|
if (newValue) {
|
||||||
// Show the message
|
// Show the message
|
||||||
} else {
|
} else {
|
||||||
// Hide the message
|
// Hide the message
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -155,14 +146,14 @@ Need to save some data? The storage API has got you covered:
|
|||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
// Save some data
|
// Save some data
|
||||||
await api.storage.set("lastVisit", new Date().toISOString());
|
await api.storage.set('lastVisit', new Date().toISOString());
|
||||||
|
|
||||||
// Get it back later
|
// Get it back later
|
||||||
const lastVisit = await api.storage.get("lastVisit");
|
const lastVisit = await api.storage.get('lastVisit');
|
||||||
|
|
||||||
// Listen for changes
|
// Listen for changes
|
||||||
api.storage.onChange("lastVisit", (newValue) => {
|
api.storage.onChange('lastVisit', (newValue) => {
|
||||||
console.log("Last visit updated:", newValue);
|
console.log('Last visit updated:', newValue);
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -172,12 +163,12 @@ Want your plugin to be able to interface with other plugins? Then use events!
|
|||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
// Listen for an event
|
// Listen for an event
|
||||||
api.events.on("myCustomEvent", (data) => {
|
api.events.on('myCustomEvent', (data) => {
|
||||||
console.log("Got event:", data);
|
console.log('Got event:', data);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Send an event
|
// Send an event
|
||||||
api.events.emit("myCustomEvent", { some: "data" });
|
api.events.emit('myCustomEvent', { some: 'data' });
|
||||||
```
|
```
|
||||||
|
|
||||||
## Adding Styles
|
## Adding Styles
|
||||||
@@ -187,7 +178,7 @@ Want to make your plugin look pretty? You can add CSS styles:
|
|||||||
```typescript
|
```typescript
|
||||||
const myPlugin: Plugin = {
|
const myPlugin: Plugin = {
|
||||||
// ... other plugin details ...
|
// ... other plugin details ...
|
||||||
|
|
||||||
// Add your CSS here
|
// Add your CSS here
|
||||||
styles: `
|
styles: `
|
||||||
.my-plugin-message {
|
.my-plugin-message {
|
||||||
@@ -205,10 +196,10 @@ const myPlugin: Plugin = {
|
|||||||
to { transform: translateY(0); opacity: 1; }
|
to { transform: translateY(0); opacity: 1; }
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Your plugin code here
|
// Your plugin code here
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -217,31 +208,28 @@ const myPlugin: Plugin = {
|
|||||||
Here are some tips to make your plugin awesome:
|
Here are some tips to make your plugin awesome:
|
||||||
|
|
||||||
1. **Always Clean Up**: When your plugin is disabled, clean up any changes you made:
|
1. **Always Clean Up**: When your plugin is disabled, clean up any changes you made:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Add stuff to the page
|
// Add stuff to the page
|
||||||
const element = document.createElement("div");
|
const element = document.createElement('div');
|
||||||
document.body.appendChild(element);
|
document.body.appendChild(element);
|
||||||
|
|
||||||
// Return a cleanup function
|
// Return a cleanup function
|
||||||
return () => {
|
return () => {
|
||||||
element.remove();
|
element.remove();
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
2. **Use TypeScript**: It helps catch errors before they happen and makes your code easier to understand.
|
2. **Use TypeScript**: It helps catch errors before they happen and makes your code easier to understand.
|
||||||
|
|
||||||
3. **Test Your Plugin**: Make sure it works in different situations:
|
3. **Test Your Plugin**: Make sure it works in different situations:
|
||||||
|
|
||||||
- When SEQTA is loading
|
- When SEQTA is loading
|
||||||
- When the user switches pages
|
- When the user switches pages
|
||||||
- When the plugin is enabled/disabled
|
- When the plugin is enabled/disabled
|
||||||
- When settings are changed
|
- When settings are changed
|
||||||
|
|
||||||
4. **Keep It Fast**: Don't slow down SEQTA:
|
4. **Keep It Fast**: Don't slow down SEQTA:
|
||||||
|
|
||||||
- Use `onMount` instead of intervals or timeouts
|
- Use `onMount` instead of intervals or timeouts
|
||||||
- Clean up event listeners when they're not needed
|
- Clean up event listeners when they're not needed
|
||||||
- Don't do heavy calculations on the main thread
|
- Don't do heavy calculations on the main thread
|
||||||
@@ -250,37 +238,10 @@ Here are some tips to make your plugin awesome:
|
|||||||
- Add clear settings with good descriptions
|
- Add clear settings with good descriptions
|
||||||
- Use `disableToggle: true` so users can turn it off if needed
|
- Use `disableToggle: true` so users can turn it off if needed
|
||||||
- Add helpful error messages if something goes wrong
|
- Add helpful error messages if something goes wrong
|
||||||
- Use `beta: true` for experimental features to let users know they're trying something new
|
|
||||||
|
|
||||||
## Plugin Metadata Options
|
|
||||||
|
|
||||||
Your plugin object supports several optional flags to customize how it appears and behaves:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
const myPlugin: Plugin = {
|
|
||||||
id: "my-plugin",
|
|
||||||
name: "My Plugin",
|
|
||||||
description: "What my plugin does",
|
|
||||||
version: "1.0.0",
|
|
||||||
|
|
||||||
// Optional flags:
|
|
||||||
disableToggle: true, // Show enable/disable toggle in settings
|
|
||||||
defaultEnabled: false, // Start disabled by default (requires disableToggle: true)
|
|
||||||
beta: true, // Show "Beta" tag in settings UI
|
|
||||||
|
|
||||||
// Your plugin code...
|
|
||||||
run: async (api) => { /* ... */ },
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
- **`disableToggle`**: When `true`, users can enable/disable your plugin in settings
|
|
||||||
- **`defaultEnabled`**: When `false`, your plugin starts disabled (only works with `disableToggle: true`)
|
|
||||||
- **`beta`**: When `true`, shows an orange "Beta" tag next to your plugin name in settings
|
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
Want to see more examples? Check out our built-in plugins:
|
Want to see more examples? Check out our built-in plugins:
|
||||||
|
|
||||||
- [themes](../../src/plugins/built-in/themes/index.ts): Shows how to change SEQTA's appearance
|
- [themes](../../src/plugins/built-in/themes/index.ts): Shows how to change SEQTA's appearance
|
||||||
- [notificationCollector](../../src/plugins/built-in/notificationCollector/index.ts): Shows how to work with SEQTA's notifications
|
- [notificationCollector](../../src/plugins/built-in/notificationCollector/index.ts): Shows how to work with SEQTA's notifications
|
||||||
- [timetable](../../src/plugins/built-in/timetable/index.ts): Shows how to modify SEQTA's timetable view
|
- [timetable](../../src/plugins/built-in/timetable/index.ts): Shows how to modify SEQTA's timetable view
|
||||||
@@ -289,9 +250,8 @@ Want to see more examples? Check out our built-in plugins:
|
|||||||
## Need Help?
|
## Need Help?
|
||||||
|
|
||||||
Got stuck? No worries! Here's where you can get help:
|
Got stuck? No worries! Here's where you can get help:
|
||||||
|
|
||||||
- Join our [Discord server](https://discord.gg/YzmbnCDkat)
|
- Join our [Discord server](https://discord.gg/YzmbnCDkat)
|
||||||
- Check out the built-in plugins in the `src/plugins/built-in` folder
|
- Check out the built-in plugins in the `src/plugins/built-in` folder
|
||||||
- Open an issue on our [GitHub page](https://github.com/betterseqta/betterseqta-plus/issues)
|
- Open an issue on our [GitHub page](https://github.com/betterseqta/betterseqta-plus/issues)
|
||||||
|
|
||||||
Happy coding and feel free to checkout the api reference [here](./api-reference.md)
|
Happy coding and feel free to checkout the api reference [here](./api-reference.md)
|
||||||
+78
-130
@@ -7,13 +7,9 @@ This document provides detailed technical information about BetterSEQTA+'s plugi
|
|||||||
Here's how a plugin is structured:
|
Here's how a plugin is structured:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
import { BasePlugin } from "@/plugins/core/settings";
|
import { BasePlugin } from '@/plugins/core/settings';
|
||||||
import {
|
import { booleanSetting, defineSettings, Setting } from '@/plugins/core/settingsHelpers';
|
||||||
booleanSetting,
|
|
||||||
defineSettings,
|
|
||||||
Setting,
|
|
||||||
} from "@/plugins/core/settingsHelpers";
|
|
||||||
|
|
||||||
// First, define your settings
|
// First, define your settings
|
||||||
const settings = defineSettings({
|
const settings = defineSettings({
|
||||||
@@ -21,7 +17,7 @@ const settings = defineSettings({
|
|||||||
default: true,
|
default: true,
|
||||||
title: "Enable Feature",
|
title: "Enable Feature",
|
||||||
description: "Turn this feature on or off",
|
description: "Turn this feature on or off",
|
||||||
}),
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
// Create a class to handle your settings
|
// Create a class to handle your settings
|
||||||
@@ -35,92 +31,59 @@ const settingsInstance = new MyPluginClass();
|
|||||||
|
|
||||||
// Create your plugin
|
// Create your plugin
|
||||||
const myPlugin: Plugin<typeof settings> = {
|
const myPlugin: Plugin<typeof settings> = {
|
||||||
id: "my-plugin",
|
id: 'my-plugin',
|
||||||
name: "My Plugin",
|
name: 'My Plugin',
|
||||||
description: "A cool plugin that does things",
|
description: 'A cool plugin that does things',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
settings: settingsInstance.settings,
|
settings: settingsInstance.settings,
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
beta: true,
|
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
console.log("Plugin is running!");
|
console.log('Plugin is running!');
|
||||||
|
|
||||||
// Do stuff when settings change
|
// Do stuff when settings change
|
||||||
api.settings.onChange("enabled", (enabled) => {
|
api.settings.onChange('enabled', (enabled) => {
|
||||||
if (enabled) {
|
if (enabled) {
|
||||||
console.log("Feature enabled!");
|
console.log('Feature enabled!');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Return a cleanup function
|
// Return a cleanup function
|
||||||
return () => {
|
return () => {
|
||||||
console.log("Plugin cleanup");
|
console.log('Plugin cleanup');
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default myPlugin;
|
export default myPlugin;
|
||||||
```
|
```
|
||||||
|
|
||||||
## Plugin Metadata
|
|
||||||
|
|
||||||
The plugin object supports several metadata fields and options:
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
interface Plugin {
|
|
||||||
// Required fields
|
|
||||||
id: string; // Unique identifier (lowercase, dashes)
|
|
||||||
name: string; // Display name shown to users
|
|
||||||
description: string; // Brief description of what the plugin does
|
|
||||||
version: string; // Semantic version (e.g., "1.0.0")
|
|
||||||
settings: PluginSettings; // Plugin settings object
|
|
||||||
run: (api: PluginAPI) => void; // Main plugin function
|
|
||||||
|
|
||||||
// Optional fields
|
|
||||||
styles?: string; // CSS styles to inject
|
|
||||||
disableToggle?: boolean; // Show enable/disable toggle in settings
|
|
||||||
defaultEnabled?: boolean; // Start enabled/disabled (requires disableToggle)
|
|
||||||
beta?: boolean; // Show "Beta" tag in settings UI
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Metadata Options
|
|
||||||
|
|
||||||
- **`disableToggle`**: When `true`, users can enable/disable your plugin in the settings page
|
|
||||||
- **`defaultEnabled`**: When `false`, your plugin starts disabled by default (only works with `disableToggle: true`)
|
|
||||||
- **`beta`**: When `true`, displays an orange "Beta" tag next to your plugin name in the settings UI
|
|
||||||
- **`styles`**: CSS string that gets injected into the page when your plugin runs
|
|
||||||
|
|
||||||
## SEQTA API
|
## SEQTA API
|
||||||
|
|
||||||
The SEQTA API helps you interact with SEQTA's pages:
|
The SEQTA API helps you interact with SEQTA's pages:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
|
|
||||||
const seqtaPlugin: Plugin<typeof settings> = {
|
const seqtaPlugin: Plugin<typeof settings> = {
|
||||||
id: "seqta-example",
|
id: 'seqta-example',
|
||||||
name: "SEQTA Example",
|
name: 'SEQTA Example',
|
||||||
description: "Shows how to use the SEQTA API",
|
description: 'Shows how to use the SEQTA API',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
settings: {},
|
settings: {},
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Wait for elements to appear
|
// Wait for elements to appear
|
||||||
const { unregister: timetableUnregister } = api.seqta.onMount(
|
const { unregister: timetableUnregister } = api.seqta.onMount('.timetable', (timetable) => {
|
||||||
".timetable",
|
const button = document.createElement('button');
|
||||||
(timetable) => {
|
button.textContent = 'Export';
|
||||||
const button = document.createElement("button");
|
timetable.appendChild(button);
|
||||||
button.textContent = "Export";
|
});
|
||||||
timetable.appendChild(button);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// Track page changes
|
// Track page changes
|
||||||
const { unregister: pageUnregister } = api.seqta.onPageChange((page) => {
|
const { unregister: pageUnregister } = api.seqta.onPageChange((page) => {
|
||||||
console.log("User went to:", page);
|
console.log('User went to:', page);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Clean up when disabled
|
// Clean up when disabled
|
||||||
@@ -128,7 +91,7 @@ const seqtaPlugin: Plugin<typeof settings> = {
|
|||||||
timetableUnregister();
|
timetableUnregister();
|
||||||
pageUnregister();
|
pageUnregister();
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default seqtaPlugin;
|
export default seqtaPlugin;
|
||||||
@@ -139,29 +102,22 @@ export default seqtaPlugin;
|
|||||||
Here's how to add settings to your plugin:
|
Here's how to add settings to your plugin:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
import { BasePlugin } from "@/plugins/core/settings";
|
import { BasePlugin } from '@/plugins/core/settings';
|
||||||
import {
|
import { booleanSetting, stringSetting, numberSetting, selectSetting, defineSettings, Setting } from '@/plugins/core/settingsHelpers';
|
||||||
booleanSetting,
|
|
||||||
stringSetting,
|
|
||||||
numberSetting,
|
|
||||||
selectSetting,
|
|
||||||
defineSettings,
|
|
||||||
Setting,
|
|
||||||
} from "@/plugins/core/settingsHelpers";
|
|
||||||
|
|
||||||
// Define your settings
|
// Define your settings
|
||||||
const settings = defineSettings({
|
const settings = defineSettings({
|
||||||
darkMode: booleanSetting({
|
darkMode: booleanSetting({
|
||||||
default: false,
|
default: false,
|
||||||
title: "Dark Mode",
|
title: "Dark Mode",
|
||||||
description: "Enable dark mode",
|
description: "Enable dark mode"
|
||||||
}),
|
}),
|
||||||
userName: stringSetting({
|
userName: stringSetting({
|
||||||
default: "",
|
default: "",
|
||||||
title: "User Name",
|
title: "User Name",
|
||||||
description: "Your display name",
|
description: "Your display name",
|
||||||
placeholder: "Enter your name...",
|
placeholder: "Enter your name..."
|
||||||
}),
|
}),
|
||||||
theme: selectSetting({
|
theme: selectSetting({
|
||||||
default: "light",
|
default: "light",
|
||||||
@@ -169,9 +125,9 @@ const settings = defineSettings({
|
|||||||
description: "Choose your theme",
|
description: "Choose your theme",
|
||||||
options: [
|
options: [
|
||||||
{ value: "light", label: "Light" },
|
{ value: "light", label: "Light" },
|
||||||
{ value: "dark", label: "Dark" },
|
{ value: "dark", label: "Dark" }
|
||||||
],
|
]
|
||||||
}),
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
// Create your settings class
|
// Create your settings class
|
||||||
@@ -188,29 +144,29 @@ class ThemePluginClass extends BasePlugin<typeof settings> {
|
|||||||
|
|
||||||
// Create the plugin
|
// Create the plugin
|
||||||
const themePlugin: Plugin<typeof settings> = {
|
const themePlugin: Plugin<typeof settings> = {
|
||||||
id: "theme-example",
|
id: 'theme-example',
|
||||||
name: "Theme Example",
|
name: 'Theme Example',
|
||||||
description: "Shows how to use settings",
|
description: 'Shows how to use settings',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
settings: new ThemePluginClass().settings,
|
settings: new ThemePluginClass().settings,
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Apply initial settings
|
// Apply initial settings
|
||||||
if (api.settings.darkMode) {
|
if (api.settings.darkMode) {
|
||||||
document.body.classList.add("dark");
|
document.body.classList.add('dark');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Listen for changes
|
// Listen for changes
|
||||||
const { unregister } = api.settings.onChange("darkMode", (enabled) => {
|
const { unregister } = api.settings.onChange('darkMode', (enabled) => {
|
||||||
document.body.classList.toggle("dark", enabled);
|
document.body.classList.toggle('dark', enabled);
|
||||||
});
|
});
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
unregister();
|
unregister();
|
||||||
document.body.classList.remove("dark");
|
document.body.classList.remove('dark');
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default themePlugin;
|
export default themePlugin;
|
||||||
@@ -221,13 +177,13 @@ export default themePlugin;
|
|||||||
Here's how to use storage in your plugin:
|
Here's how to use storage in your plugin:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
|
|
||||||
const storagePlugin: Plugin<typeof settings> = {
|
const storagePlugin: Plugin<typeof settings> = {
|
||||||
id: "storage-example",
|
id: 'storage-example',
|
||||||
name: "Storage Example",
|
name: 'Storage Example',
|
||||||
description: "Shows how to use storage",
|
description: 'Shows how to use storage',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
settings: {},
|
settings: {},
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
|
|
||||||
@@ -236,21 +192,21 @@ const storagePlugin: Plugin<typeof settings> = {
|
|||||||
await api.storage.loaded;
|
await api.storage.loaded;
|
||||||
|
|
||||||
// Save some data
|
// Save some data
|
||||||
await api.storage.set("lastVisit", new Date().toISOString());
|
await api.storage.set('lastVisit', new Date().toISOString());
|
||||||
|
|
||||||
// Get saved data
|
// Get saved data
|
||||||
const lastVisit = await api.storage.get("lastVisit");
|
const lastVisit = await api.storage.get('lastVisit');
|
||||||
console.log("Last visit:", lastVisit);
|
console.log('Last visit:', lastVisit);
|
||||||
|
|
||||||
// Listen for changes
|
// Listen for changes
|
||||||
const { unregister } = api.storage.onChange("lastVisit", (newValue) => {
|
const { unregister } = api.storage.onChange('lastVisit', (newValue) => {
|
||||||
console.log("Last visit updated:", newValue);
|
console.log('Last visit updated:', newValue);
|
||||||
});
|
});
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
unregister();
|
unregister();
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default storagePlugin;
|
export default storagePlugin;
|
||||||
@@ -261,39 +217,33 @@ export default storagePlugin;
|
|||||||
Here's how to use events in your plugin:
|
Here's how to use events in your plugin:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
|
|
||||||
const eventsPlugin: Plugin<typeof settings> = {
|
const eventsPlugin: Plugin<typeof settings> = {
|
||||||
id: "events-example",
|
id: 'events-example',
|
||||||
name: "Events Example",
|
name: 'Events Example',
|
||||||
description: "Shows how to use events",
|
description: 'Shows how to use events',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
settings: {},
|
settings: {},
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// Listen for theme changes
|
// Listen for theme changes
|
||||||
const { unregister: themeListener } = api.events.on(
|
const { unregister: themeListener } = api.events.on('theme.changed', (theme) => {
|
||||||
"theme.changed",
|
console.log('Theme changed to:', theme);
|
||||||
(theme) => {
|
});
|
||||||
console.log("Theme changed to:", theme);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// Listen for notifications
|
// Listen for notifications
|
||||||
const { unregister: notifyListener } = api.events.on(
|
const { unregister: notifyListener } = api.events.on('notification.new', (notification) => {
|
||||||
"notification.new",
|
console.log('New notification:', notification);
|
||||||
(notification) => {
|
});
|
||||||
console.log("New notification:", notification);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// Clean up listeners
|
// Clean up listeners
|
||||||
return () => {
|
return () => {
|
||||||
themeListener();
|
themeListener();
|
||||||
notifyListener();
|
notifyListener();
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default eventsPlugin;
|
export default eventsPlugin;
|
||||||
@@ -304,20 +254,20 @@ export default eventsPlugin;
|
|||||||
Here's how to write efficient plugins:
|
Here's how to write efficient plugins:
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import type { Plugin } from "@/plugins/core/types";
|
import type { Plugin } from '@/plugins/core/types';
|
||||||
|
|
||||||
const efficientPlugin: Plugin<typeof settings> = {
|
const efficientPlugin: Plugin<typeof settings> = {
|
||||||
id: "efficient-example",
|
id: 'efficient-example',
|
||||||
name: "Efficient Example",
|
name: 'Efficient Example',
|
||||||
description: "Shows performance best practices",
|
description: 'Shows performance best practices',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
settings: {},
|
settings: {},
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
// ✅ Good: Use onMount
|
// ✅ Good: Use onMount
|
||||||
const { unregister } = api.seqta.onMount(".timetable", (el) => {
|
const { unregister } = api.seqta.onMount('.timetable', (el) => {
|
||||||
el.classList.add("enhanced");
|
el.classList.add('enhanced');
|
||||||
});
|
});
|
||||||
|
|
||||||
// ❌ Bad: Don't use intervals
|
// ❌ Bad: Don't use intervals
|
||||||
@@ -327,7 +277,7 @@ const efficientPlugin: Plugin<typeof settings> = {
|
|||||||
// }, 100);
|
// }, 100);
|
||||||
|
|
||||||
// ✅ Good: Cache DOM elements
|
// ✅ Good: Cache DOM elements
|
||||||
const header = document.querySelector(".header");
|
const header = document.querySelector('.header');
|
||||||
if (header) {
|
if (header) {
|
||||||
// Reuse header instead of querying again
|
// Reuse header instead of querying again
|
||||||
}
|
}
|
||||||
@@ -335,7 +285,7 @@ const efficientPlugin: Plugin<typeof settings> = {
|
|||||||
// ✅ Good: Batch DOM updates
|
// ✅ Good: Batch DOM updates
|
||||||
const fragment = document.createDocumentFragment();
|
const fragment = document.createDocumentFragment();
|
||||||
for (let i = 0; i < 10; i++) {
|
for (let i = 0; i < 10; i++) {
|
||||||
const div = document.createElement("div");
|
const div = document.createElement('div');
|
||||||
fragment.appendChild(div);
|
fragment.appendChild(div);
|
||||||
}
|
}
|
||||||
document.body.appendChild(fragment);
|
document.body.appendChild(fragment);
|
||||||
@@ -344,14 +294,13 @@ const efficientPlugin: Plugin<typeof settings> = {
|
|||||||
unregister();
|
unregister();
|
||||||
// clearInterval(interval); // If you used the bad approach
|
// clearInterval(interval); // If you used the bad approach
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default efficientPlugin;
|
export default efficientPlugin;
|
||||||
```
|
```
|
||||||
|
|
||||||
Each plugin should be in its own file and exported as the default export. The plugin should:
|
Each plugin should be in its own file and exported as the default export. The plugin should:
|
||||||
|
|
||||||
1. Import necessary types and helpers
|
1. Import necessary types and helpers
|
||||||
2. Define settings if needed
|
2. Define settings if needed
|
||||||
3. Create a settings class if using settings
|
3. Create a settings class if using settings
|
||||||
@@ -359,8 +308,7 @@ Each plugin should be in its own file and exported as the default export. The pl
|
|||||||
5. Export the plugin as default
|
5. Export the plugin as default
|
||||||
|
|
||||||
Remember to always:
|
Remember to always:
|
||||||
|
|
||||||
- Use proper TypeScript types
|
- Use proper TypeScript types
|
||||||
- Clean up when your plugin is disabled
|
- Clean up when your plugin is disabled
|
||||||
- Handle errors gracefully
|
- Handle errors gracefully
|
||||||
- Follow the plugin structure shown above
|
- Follow the plugin structure shown above
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
export default {
|
|
||||||
preset: 'ts-jest',
|
|
||||||
testEnvironment: 'node',
|
|
||||||
roots: ['<rootDir>/src'],
|
|
||||||
testMatch: [
|
|
||||||
'**/__tests__/**/*.ts',
|
|
||||||
'**/?(*.)+(spec|test).ts'
|
|
||||||
],
|
|
||||||
transform: {
|
|
||||||
'^.+\\.ts$': 'ts-jest',
|
|
||||||
},
|
|
||||||
moduleFileExtensions: ['ts', 'js', 'json'],
|
|
||||||
collectCoverageFrom: [
|
|
||||||
'src/**/*.ts',
|
|
||||||
'!src/**/*.d.ts',
|
|
||||||
],
|
|
||||||
};
|
|
||||||
+2
-35
@@ -1,49 +1,16 @@
|
|||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import mime from "mime-types";
|
import mime from "mime-types";
|
||||||
|
|
||||||
/**
|
|
||||||
* A Vite plugin designed to load files as base64 encoded data URLs.
|
|
||||||
* This plugin intercepts module imports that have a `?base64` query parameter
|
|
||||||
* appended to the file path. It then reads the targeted file, converts its content
|
|
||||||
* to a base64 string, and constructs a data URL which is then exported as the
|
|
||||||
* default export of a new JavaScript module.
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* // To use this loader, import a file with ?base64 query:
|
|
||||||
* // import myImageBase64 from './path/to/myimage.png?base64';
|
|
||||||
* // myImageBase64 will then be a string like "data:image/png;base64,..."
|
|
||||||
*/
|
|
||||||
export const base64Loader = {
|
export const base64Loader = {
|
||||||
/**
|
|
||||||
* The name of the Vite plugin.
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
name: "base64-loader",
|
name: "base64-loader",
|
||||||
/**
|
|
||||||
* The core transformation function of the Vite plugin.
|
|
||||||
* It is called by Vite for modules that might need transformation. This function
|
|
||||||
* checks if the module ID includes the `?base64` query. If so, it reads the
|
|
||||||
* specified file, converts it to a base64 data URL, and returns a new
|
|
||||||
* JavaScript module that default exports this data URL.
|
|
||||||
*
|
|
||||||
* @param {any} _ The original code of the file. This parameter is unused by this loader.
|
|
||||||
* @param {string} id The ID of the module being transformed. This string typically
|
|
||||||
* contains the absolute file path and any query parameters
|
|
||||||
* (e.g., "/path/to/file.png?base64").
|
|
||||||
* @returns {string | null} If the module ID does not contain `?base64` query,
|
|
||||||
* it returns `null` to indicate no transformation.
|
|
||||||
* Otherwise, it returns a string of JavaScript code
|
|
||||||
* that default exports the base64 data URL of the file.
|
|
||||||
* For example: `export default 'data:image/png;base64,xxxx';`
|
|
||||||
*/
|
|
||||||
transform(_: any, id: string) {
|
transform(_: any, id: string) {
|
||||||
const [filePath, query] = id.split("?");
|
const [filePath, query] = id.split("?");
|
||||||
if (query !== "base64") return null;
|
if (query !== "base64") return null;
|
||||||
|
|
||||||
const data = fs.readFileSync(filePath, { encoding: "base64" });
|
const data = fs.readFileSync(filePath, { encoding: 'base64' });
|
||||||
const mimeType = mime.lookup(filePath);
|
const mimeType = mime.lookup(filePath);
|
||||||
const dataURL = `data:${mimeType};base64,${data}`;
|
const dataURL = `data:${mimeType};base64,${data}`;
|
||||||
|
|
||||||
return `export default '${dataURL}';`;
|
return `export default '${dataURL}';`;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
+12
-45
@@ -1,58 +1,25 @@
|
|||||||
// ref: https://stackoverflow.com/a/76920975
|
// ref: https://stackoverflow.com/a/76920975
|
||||||
import type { Plugin } from "vite";
|
import type { Plugin } from 'vite';
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a Vite plugin designed to gracefully handle the conclusion of the build process.
|
|
||||||
* This plugin utilizes the `buildEnd` and `closeBundle` hooks provided by Vite.
|
|
||||||
* It checks for errors at the end of the build:
|
|
||||||
* - If an error occurred during the build (`buildEnd` hook receives an error), it logs the error
|
|
||||||
* and explicitly exits the Node.js process with a status code of 1 (indicating failure).
|
|
||||||
* - If the build completes without errors and the bundle is successfully generated
|
|
||||||
* (`closeBundle` hook is called), it logs a success message and exits the process
|
|
||||||
* with a status code of 0 (indicating success).
|
|
||||||
* This explicit process exiting can be useful in CI/CD environments or scripts that
|
|
||||||
* rely on the process status code to determine the build outcome.
|
|
||||||
* The core logic for using these hooks to exit the process is inspired by
|
|
||||||
* a solution found on StackOverflow (https://stackoverflow.com/a/76920975).
|
|
||||||
*
|
|
||||||
* @returns {Plugin} A Vite plugin object configured with `name`, `buildEnd`, and `closeBundle` hooks.
|
|
||||||
*/
|
|
||||||
export default function ClosePlugin(): Plugin {
|
export default function ClosePlugin(): Plugin {
|
||||||
return {
|
return {
|
||||||
/**
|
name: 'ClosePlugin', // required, will show up in warnings and errors
|
||||||
* The unique name of this Vite plugin. This name is used by Vite for identification
|
|
||||||
* purposes and will appear in warnings, errors, and logs related to this plugin.
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
name: "ClosePlugin", // required, will show up in warnings and errors
|
|
||||||
|
|
||||||
/**
|
// use this to catch errors when building
|
||||||
* A Vite hook that is called when the build process has finished, regardless of
|
|
||||||
* whether it was successful or encountered an error.
|
|
||||||
*
|
|
||||||
* @param {Error} [error] An optional error object. If the build failed, this parameter
|
|
||||||
* will contain the error that occurred. If the build was successful,
|
|
||||||
* this parameter will be undefined or null.
|
|
||||||
*/
|
|
||||||
buildEnd(error) {
|
buildEnd(error) {
|
||||||
if (error) {
|
if(error) {
|
||||||
console.error("Error bundling");
|
console.error('Error bundling')
|
||||||
console.error(error);
|
console.error(error)
|
||||||
process.exit(1); // Exit with status 1 indicating an error
|
process.exit(1)
|
||||||
} else {
|
} else {
|
||||||
console.log("Build ended"); // Log successful completion of the build phase
|
console.log('Build ended')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
// use this to catch the end of a build without errors
|
||||||
* A Vite hook that is called after the `buildEnd` hook, but only if the build
|
|
||||||
* was successful (i.e., no errors were passed to `buildEnd`) and all output
|
|
||||||
* files have been generated and written to disk. This signifies the successful
|
|
||||||
* completion of the entire bundling process.
|
|
||||||
*/
|
|
||||||
closeBundle() {
|
closeBundle() {
|
||||||
console.log("Bundle closed"); // Log successful closure of the bundle
|
console.log('Bundle closed')
|
||||||
process.exit(0); // Exit with status 0 indicating a successful build
|
process.exit(0)
|
||||||
},
|
},
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+15
-28
@@ -1,22 +1,12 @@
|
|||||||
import type { Browser, BuildTarget, Manifest } from "./types";
|
import type { Browser, BuildTarget, Manifest } from './types'
|
||||||
import type { AnyCase } from "./utils";
|
import type { AnyCase } from './utils'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Packages a given manifest object with a specific target browser identifier.
|
*
|
||||||
* This function is typically used in multi-browser extension build processes
|
|
||||||
* to create a configuration object that pairs the manifest data with the browser
|
|
||||||
* it's intended for. The `AnyCase<Browser>` type for the browser parameter
|
|
||||||
* implies that browser names like 'chrome', 'firefox', etc., can be provided
|
|
||||||
* in various casings.
|
|
||||||
*
|
*
|
||||||
* @export
|
* @export
|
||||||
* @param {Manifest} manifest The core manifest data for the extension,
|
* @param {Manifest} manifest
|
||||||
* compatible with `chrome.runtime.ManifestV3` as defined by the {@link Manifest} type.
|
* @param {AnyCase<Browser>} browser
|
||||||
* @param {AnyCase<Browser>} browser The target browser identifier (e.g., 'chrome', 'firefox', 'CHROME').
|
* @return {*} {@link BuildTarget}
|
||||||
* Refers to the {@link Browser} type, allowing for flexible casing.
|
|
||||||
* @returns {BuildTarget} An object that pairs the `manifest` with its target `browser`.
|
|
||||||
* The structure is `{ manifest: Manifest; browser: AnyCase<Browser>; }`
|
|
||||||
* as defined by the {@link BuildTarget} type.
|
|
||||||
*/
|
*/
|
||||||
export function createManifest(
|
export function createManifest(
|
||||||
manifest: Manifest,
|
manifest: Manifest,
|
||||||
@@ -25,22 +15,19 @@ export function createManifest(
|
|||||||
return {
|
return {
|
||||||
manifest,
|
manifest,
|
||||||
browser,
|
browser,
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Defines a base manifest object.
|
* create a base Manifest to inherit from
|
||||||
* This function is typically used to establish a common, shared foundation for an extension's manifest
|
* type Manifest = chrome.runtime.ManifestV3
|
||||||
* (compatible with `chrome.runtime.ManifestV3` as per the {@link Manifest} type).
|
*
|
||||||
* This base can then be extended or modified for different browsers or specific build configurations.
|
* use as shared base to extend inBrowser manifests
|
||||||
* For example, you might define core permissions and properties here, and then add
|
|
||||||
* browser-specific keys in subsequent steps.
|
|
||||||
*
|
*
|
||||||
* @export
|
* @export
|
||||||
* @param {Manifest} manifest The core manifest data to be used as a base.
|
* @param {Manifest} manifest
|
||||||
* This should conform to the {@link Manifest} type structure.
|
* @return {*} {@link Manifest}
|
||||||
* @returns {Manifest} The provided manifest object, intended to serve as a reusable base.
|
|
||||||
*/
|
*/
|
||||||
export function createManifestBase(manifest: Manifest): Manifest {
|
export function createManifestBase(manifest: Manifest): Manifest {
|
||||||
return manifest;
|
return manifest
|
||||||
}
|
}
|
||||||
+21
-54
@@ -1,70 +1,37 @@
|
|||||||
// vite-plugin-inline-worker-dev.ts
|
// vite-plugin-inline-worker-dev.ts
|
||||||
// vite-plugin-inline-worker-dev.ts
|
import { Plugin } from 'vite'
|
||||||
import { Plugin } from "vite";
|
import fs from 'fs/promises'
|
||||||
import fs from "fs/promises";
|
import { build, transform } from 'esbuild'
|
||||||
import { build } from "esbuild";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a Vite plugin designed for bundling and inlining web worker scripts during development.
|
|
||||||
* This plugin specifically targets module imports that include a `?inlineWorker` query parameter.
|
|
||||||
* When such an import is encountered, the plugin bundles the worker script using `esbuild`
|
|
||||||
* and then generates JavaScript code that inlines this bundled worker as a Blob,
|
|
||||||
* creating the worker instance via `URL.createObjectURL()`.
|
|
||||||
* The name "vite:inline-worker-dev" suggests it's primarily intended for development builds.
|
|
||||||
*
|
|
||||||
* @returns {Plugin} A Vite plugin object with `name` and `load` properties.
|
|
||||||
*/
|
|
||||||
export default function InlineWorkerDevPlugin(): Plugin {
|
export default function InlineWorkerDevPlugin(): Plugin {
|
||||||
return {
|
return {
|
||||||
/**
|
name: 'vite:inline-worker-dev',
|
||||||
* The unique name of this Vite plugin.
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
name: "vite:inline-worker-dev",
|
|
||||||
/**
|
|
||||||
* The Vite hook responsible for loading and transforming modules.
|
|
||||||
* This function intercepts modules imported with `?inlineWorker`.
|
|
||||||
* For such modules, it bundles the worker script and returns JavaScript code
|
|
||||||
* that, when executed, will create an instance of this worker from an inlined Blob.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @param {string} id The path or ID of the module Vite is attempting to load,
|
|
||||||
* potentially including query parameters (e.g., "/path/to/worker.ts?inlineWorker").
|
|
||||||
* @returns {Promise<string | null>} A promise that resolves to:
|
|
||||||
* - `null` if the module ID does not include `?inlineWorker`.
|
|
||||||
* - A string of JavaScript code if the module is an inline worker.
|
|
||||||
* This code will define a default export function (e.g., `InlineWorker`)
|
|
||||||
* that, when called, creates and returns a new `Worker` instance
|
|
||||||
* from the bundled and inlined worker script.
|
|
||||||
*/
|
|
||||||
async load(id) {
|
async load(id) {
|
||||||
if (id.includes("?inlineWorker")) {
|
if (id.includes('?inlineWorker')) {
|
||||||
const [cleanPath] = id.split("?");
|
const [cleanPath] = id.split('?')
|
||||||
// Note: Original code had `await fs.readFile(cleanPath, "utf-8");` but `code` wasn't used.
|
console.log('cleanPath', cleanPath)
|
||||||
// `esbuild` directly takes `cleanPath` as an entry point.
|
const code = await fs.readFile(cleanPath, 'utf-8')
|
||||||
const result = await build({
|
const result = await build({
|
||||||
entryPoints: [cleanPath], // esbuild uses the file path directly
|
entryPoints: [cleanPath],
|
||||||
bundle: true,
|
bundle: true,
|
||||||
write: false, // We want the output in memory, not written to disk
|
write: false,
|
||||||
platform: "browser", // Target environment for the worker code
|
platform: 'browser',
|
||||||
format: "iife", // Immediately Invoked Function Expression, suitable for workers
|
format: 'iife',
|
||||||
target: "esnext", // Transpile to modern JavaScript
|
target: 'esnext',
|
||||||
});
|
})
|
||||||
|
|
||||||
|
const workerCode = result.outputFiles[0].text
|
||||||
|
|
||||||
const workerCode = result.outputFiles[0].text;
|
|
||||||
|
|
||||||
// Construct JavaScript code that will create the worker from a Blob.
|
|
||||||
// This code is what gets returned to Vite and replaces the original import.
|
|
||||||
const workerBlobCode = `
|
const workerBlobCode = `
|
||||||
const code = ${JSON.stringify(workerCode)};
|
const code = ${JSON.stringify(workerCode)};
|
||||||
export default function InlineWorker() {
|
export default function InlineWorker() {
|
||||||
const blob = new Blob([code], { type: 'application/javascript' });
|
const blob = new Blob([code], { type: 'application/javascript' });
|
||||||
return new Worker(URL.createObjectURL(blob), { type: 'module' });
|
return new Worker(URL.createObjectURL(blob), { type: 'module' });
|
||||||
}
|
}
|
||||||
`;
|
`
|
||||||
return workerBlobCode;
|
return workerBlobCode
|
||||||
}
|
}
|
||||||
return null; // Let Vite handle other modules normally
|
return null
|
||||||
},
|
}
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,79 @@
|
|||||||
|
/*
|
||||||
|
TEMPORARY FIX FOR CHROME 130+ builds
|
||||||
|
*/
|
||||||
|
|
||||||
|
import path from 'node:path';
|
||||||
|
import fs from 'fs';
|
||||||
|
import { PluginOption } from 'vite';
|
||||||
|
import { ManifestV3Export } from '@crxjs/vite-plugin';
|
||||||
|
|
||||||
|
const manifestPath = path.resolve('dist/chrome/manifest.json');
|
||||||
|
|
||||||
|
export function updateManifestPlugin(): PluginOption {
|
||||||
|
return {
|
||||||
|
name: 'update-manifest-plugin',
|
||||||
|
enforce: 'post',
|
||||||
|
closeBundle() {
|
||||||
|
forceDisableUseDynamicUrl();
|
||||||
|
},
|
||||||
|
|
||||||
|
configureServer(server) {
|
||||||
|
server.httpServer?.once('listening', () => {
|
||||||
|
const updated = forceDisableUseDynamicUrl();
|
||||||
|
if (updated) {
|
||||||
|
server.ws.send({ type: 'full-reload' });
|
||||||
|
console.log('** updated **');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Implement retry mechanism for file watching
|
||||||
|
const watchWithRetry = () => {
|
||||||
|
if (!fs.existsSync(manifestPath)) {
|
||||||
|
console.log('Manifest not found, retrying in 1 second...');
|
||||||
|
setTimeout(watchWithRetry, 1000);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
fs.watchFile(manifestPath, () => {
|
||||||
|
try {
|
||||||
|
const manifestContents = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
|
||||||
|
if (manifestContents.web_accessible_resources?.some((resource: any) => resource.use_dynamic_url)) {
|
||||||
|
const updated = forceDisableUseDynamicUrl();
|
||||||
|
if (updated) {
|
||||||
|
server.ws.send({ type: 'full-reload' });
|
||||||
|
console.log('** updated **');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.log('Error reading manifest, will retry on next change:', error.message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
watchWithRetry();
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
writeBundle() {
|
||||||
|
console.log('### writeBundle ##');
|
||||||
|
forceDisableUseDynamicUrl();
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
function forceDisableUseDynamicUrl() {
|
||||||
|
if (!fs.existsSync(manifestPath)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const manifestContents = JSON.parse(fs.readFileSync(manifestPath, 'utf8')) as Awaited<ManifestV3Export>;
|
||||||
|
|
||||||
|
if (typeof manifestContents === 'function' || !manifestContents.web_accessible_resources) return false;
|
||||||
|
if (manifestContents.web_accessible_resources.every((resource) => !resource.use_dynamic_url)) return false;
|
||||||
|
|
||||||
|
manifestContents.web_accessible_resources.forEach((resource) => {
|
||||||
|
if (resource.use_dynamic_url) resource.use_dynamic_url = false;
|
||||||
|
});
|
||||||
|
|
||||||
|
fs.writeFileSync(manifestPath, JSON.stringify(manifestContents, null, 2));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
+55
-161
@@ -1,199 +1,94 @@
|
|||||||
/**
|
const glob = require('glob');
|
||||||
* @fileoverview
|
const semver = require('semver');
|
||||||
* This script is a command-line utility for publishing the BetterSEQTA+ extension.
|
const { execSync } = require('child_process');
|
||||||
* It automates the process of finding the latest built extension ZIP files for specified
|
const path = require('path');
|
||||||
* browsers, zipping the project source code (for Firefox), and then invoking the
|
|
||||||
* `publish-extension` tool with the appropriate arguments.
|
|
||||||
*
|
|
||||||
* To use this script, invoke it with Node.js followed by browser arguments:
|
|
||||||
* e.g., `node lib/publish.js --b chrome firefox`
|
|
||||||
* or `node lib/publish.js --b chrome`
|
|
||||||
* or `node lib/publish.js --b firefox`
|
|
||||||
*/
|
|
||||||
|
|
||||||
const glob = require("glob");
|
|
||||||
const semver = require("semver");
|
|
||||||
const { execSync } = require("child_process");
|
|
||||||
const path = require("path");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Determines the latest version string from a list of filenames that include version numbers.
|
|
||||||
* Filenames are expected to follow a pattern like `betterseqtaplus@3.4.5.1-chrome.zip`.
|
|
||||||
* This function handles potential 4-part versions (e.g., `3.4.5.1`) by trimming them
|
|
||||||
* to 3 parts (e.g., `3.4.5`) for comparison using the `semver` library. After identifying
|
|
||||||
* the latest semver-compatible version, it returns the original full version string
|
|
||||||
* (e.g., "3.4.5.1") that corresponds to this latest version.
|
|
||||||
*
|
|
||||||
* @param {string[]} files An array of filenames.
|
|
||||||
* @returns {string | null} The latest version string (e.g., "3.4.5.1") found among the files,
|
|
||||||
* or `null` if no valid version numbers are found or no files are provided.
|
|
||||||
*/
|
|
||||||
function getLatestVersion(files) {
|
function getLatestVersion(files) {
|
||||||
console.log("Files passed to getLatestVersion:", files);
|
console.log('Files passed to getLatestVersion:', files);
|
||||||
|
|
||||||
const versions = files
|
const versions = files.map(file => {
|
||||||
.map((file) => {
|
const match = file.match(/@([\d\.]+)-/);
|
||||||
const match = file.match(/@([\d\.]+)-/);
|
console.log('Matching file:', file, 'Version found:', match ? match[1] : 'None');
|
||||||
console.log(
|
|
||||||
"Matching file:",
|
|
||||||
file,
|
|
||||||
"Version found:",
|
|
||||||
match ? match[1] : "None",
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!match) return null;
|
if (!match) return null;
|
||||||
|
|
||||||
const fullVersion = match[1]; // Original version (e.g., 3.4.5.1)
|
const fullVersion = match[1]; // Original version (e.g., 3.4.5.1)
|
||||||
// Trim to 3 parts for semver comparison, as semver typically handles X.Y.Z
|
const semverVersion = fullVersion.split('.').slice(0, 3).join('.'); // Trim to 3.4.5
|
||||||
const semverVersion = fullVersion.split(".").slice(0, 3).join(".");
|
|
||||||
|
|
||||||
return { fullVersion, semverVersion };
|
return { fullVersion, semverVersion };
|
||||||
})
|
}).filter(Boolean);
|
||||||
.filter(Boolean); // Remove null entries if any file didn't match
|
|
||||||
|
|
||||||
console.log(
|
console.log('Extracted versions:', versions.map(v => v.semverVersion));
|
||||||
"Extracted versions:",
|
|
||||||
versions.map((v) => v.semverVersion),
|
|
||||||
);
|
|
||||||
|
|
||||||
if (versions.length === 0) {
|
|
||||||
console.log("No versions extracted.");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find latest version using the trimmed semver format
|
// Find latest version using the trimmed semver format
|
||||||
const latestSemver = semver.maxSatisfying(
|
const latestSemver = semver.maxSatisfying(versions.map(v => v.semverVersion), '*');
|
||||||
versions.map((v) => v.semverVersion),
|
console.log('Latest SemVer-compatible version:', latestSemver);
|
||||||
"*", // Satisfy any version, effectively finding the max
|
|
||||||
);
|
|
||||||
console.log("Latest SemVer-compatible version:", latestSemver);
|
|
||||||
|
|
||||||
if (!latestSemver) {
|
// Get the full version that matches the latest SemVer version
|
||||||
console.log("Could not determine latest semver version.");
|
const latestVersion = versions.find(v => v.semverVersion === latestSemver)?.fullVersion || null;
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get the original full version string that matches the identified latest SemVer version
|
console.log('Final selected latest version:', latestVersion);
|
||||||
const latestVersionData = versions.find(
|
return latestVersion;
|
||||||
(v) => v.semverVersion === latestSemver,
|
|
||||||
);
|
|
||||||
const latestFullVersion = latestVersionData ? latestVersionData.fullVersion : null;
|
|
||||||
|
|
||||||
console.log("Final selected latest version:", latestFullVersion);
|
|
||||||
return latestFullVersion;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Finds the path to the latest built ZIP file for a specific browser.
|
|
||||||
* It constructs a glob pattern based on the browser name (e.g., `dist/betterseqtaplus@*-*chrome.zip`),
|
|
||||||
* finds all matching files, and then uses `getLatestVersion` to identify the version string
|
|
||||||
* of the most recent file. Finally, it returns the full path to that specific file.
|
|
||||||
*
|
|
||||||
* @param {string} browser A string indicating the target browser (e.g., "chrome", "firefox").
|
|
||||||
* @returns {string | undefined} The filepath string to the latest ZIP file for the specified browser,
|
|
||||||
* or `undefined` if no matching file is found or if the latest version
|
|
||||||
* cannot be determined.
|
|
||||||
*/
|
|
||||||
function getLatestFiles(browser) {
|
function getLatestFiles(browser) {
|
||||||
const pattern = `dist/betterseqtaplus@*-*${browser}.zip`;
|
const pattern = `dist/betterseqtaplus@*-*${browser}.zip`;
|
||||||
console.log("Glob pattern:", pattern);
|
console.log('Glob pattern:', pattern);
|
||||||
|
|
||||||
const files = glob.sync(pattern);
|
const files = glob.sync(pattern);
|
||||||
console.log("Files found for browser", browser, ":", files);
|
console.log('Files found for browser', browser, ':', files);
|
||||||
|
|
||||||
if (files.length === 0) {
|
|
||||||
console.log("No files found for browser", browser);
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
const latestVersion = getLatestVersion(files);
|
const latestVersion = getLatestVersion(files);
|
||||||
if (!latestVersion) {
|
|
||||||
console.log("Could not determine latest version for browser", browser);
|
|
||||||
return undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find the exact file by matching the original full version string
|
// Find the exact file by matching the original full version
|
||||||
const latestFile = files.find((file) => file.includes(`@${latestVersion}-`));
|
const latestFile = files.find(file => file.includes(`@${latestVersion}-`));
|
||||||
|
|
||||||
console.log("Latest file for browser", browser, ":", latestFile);
|
console.log('Latest file for browser', browser, ':', latestFile);
|
||||||
return latestFile;
|
return latestFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a ZIP file of the project's source code, excluding specified development-related
|
|
||||||
* files and directories such as `node_modules`, `dist`, `.git`, etc.
|
|
||||||
* It uses the `7z` command-line tool to perform the archiving.
|
|
||||||
* The output filename is fixed as `dist/betterseqtaplus@latest-sources.zip`.
|
|
||||||
*
|
|
||||||
* @returns {string} The filename of the created ZIP file (e.g., `dist/betterseqtaplus@latest-sources.zip`).
|
|
||||||
*/
|
|
||||||
function zipSources() {
|
function zipSources() {
|
||||||
const zipFileName = `dist/betterseqtaplus@latest-sources.zip`;
|
const zipFileName = `dist/betterseqtaplus@latest-sources.zip`;
|
||||||
|
|
||||||
const excludePatterns = [
|
const excludePatterns = [
|
||||||
"node_modules",
|
'node_modules',
|
||||||
"dist",
|
'dist',
|
||||||
".env*",
|
'.env*',
|
||||||
".git",
|
'.git',
|
||||||
".github",
|
'.github',
|
||||||
".vscode",
|
'.vscode',
|
||||||
"LICENSE",
|
'LICENSE',
|
||||||
"package.json",
|
'package.json'
|
||||||
]
|
].map(pattern => `-x!${pattern}`).join(' ');
|
||||||
.map((pattern) => `-x!${pattern}`) // Format for 7z exclude syntax
|
|
||||||
.join(" ");
|
|
||||||
|
|
||||||
// Command to zip the current directory's contents into zipFileName, applying exclude patterns
|
|
||||||
const zipCommand = `7z a ${zipFileName} . ${excludePatterns}`;
|
const zipCommand = `7z a ${zipFileName} . ${excludePatterns}`;
|
||||||
|
|
||||||
console.log("Zipping project sources with command:", zipCommand);
|
console.log('Zipping project sources with command:', zipCommand);
|
||||||
execSync(zipCommand, { stdio: "inherit" }); // Execute synchronously and show output
|
execSync(zipCommand, { stdio: 'inherit' });
|
||||||
|
|
||||||
return zipFileName;
|
return zipFileName;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Orchestrates the extension publishing process for the specified browsers.
|
|
||||||
* This function performs the following steps:
|
|
||||||
* 1. Calls `getLatestFiles` to find the latest built ZIP for Chrome if "chrome" is in `browsers`.
|
|
||||||
* 2. Calls `getLatestFiles` to find the latest built ZIP for Firefox if "firefox" is in `browsers`.
|
|
||||||
* 3. Calls `zipSources` to create a source code ZIP if "firefox" is in `browsers` (required for Mozilla Add-ons).
|
|
||||||
* 4. Validates that all required files were found and that at least one browser was specified. Exits if not.
|
|
||||||
* 5. Constructs the `publish-extension` command-line string with the appropriate arguments
|
|
||||||
* based on the found ZIP files for the specified browsers.
|
|
||||||
* 6. Executes the constructed `publish-extension` command.
|
|
||||||
*
|
|
||||||
* @param {string[]} browsers An array of browser strings (e.g., ["chrome", "firefox"]) for which to publish the extension.
|
|
||||||
*/
|
|
||||||
function runPublishCommand(browsers) {
|
function runPublishCommand(browsers) {
|
||||||
const chromeZip = browsers.includes("chrome")
|
const chromeZip = browsers.includes('chrome') ? getLatestFiles('chrome') : null;
|
||||||
? getLatestFiles("chrome")
|
const firefoxZip = browsers.includes('firefox') ? getLatestFiles('firefox') : null;
|
||||||
: null;
|
const firefoxSourcesZip = browsers.includes('firefox') ? zipSources() : null;
|
||||||
const firefoxZip = browsers.includes("firefox")
|
|
||||||
? getLatestFiles("firefox")
|
|
||||||
: null;
|
|
||||||
// Sources are typically only needed for Firefox submissions
|
|
||||||
const firefoxSourcesZip = browsers.includes("firefox") ? zipSources() : null;
|
|
||||||
|
|
||||||
console.log("Chrome zip:", chromeZip);
|
console.log('Chrome zip:', chromeZip);
|
||||||
console.log("Firefox zip:", firefoxZip);
|
console.log('Firefox zip:', firefoxZip);
|
||||||
console.log("Firefox sources zip:", firefoxSourcesZip);
|
console.log('Firefox sources zip:', firefoxSourcesZip);
|
||||||
|
|
||||||
if (browsers.length === 0) {
|
if (browsers.length === 0) {
|
||||||
console.log("No browsers specified. Exiting.");
|
console.log('No browsers specified. Exiting.');
|
||||||
process.exit(0); // Exit gracefully if no action is needed
|
process.exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if required files are missing for the specified browsers
|
if ((browsers.includes('chrome') && !chromeZip) || (browsers.includes('firefox') && (!firefoxZip || !firefoxSourcesZip))) {
|
||||||
if (
|
console.error('Could not find required zip files for specified browsers.');
|
||||||
(browsers.includes("chrome") && !chromeZip) ||
|
process.exit(1);
|
||||||
(browsers.includes("firefox") && (!firefoxZip || !firefoxSourcesZip))
|
|
||||||
) {
|
|
||||||
console.error("Could not find required zip files for specified browsers.");
|
|
||||||
process.exit(1); // Exit with error status
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let command = "publish-extension";
|
let command = 'publish-extension';
|
||||||
if (chromeZip) {
|
if (chromeZip) {
|
||||||
command += ` --chrome-zip ${chromeZip}`;
|
command += ` --chrome-zip ${chromeZip}`;
|
||||||
}
|
}
|
||||||
@@ -201,14 +96,13 @@ function runPublishCommand(browsers) {
|
|||||||
command += ` --firefox-zip ${firefoxZip} --firefox-sources-zip ${firefoxSourcesZip}`;
|
command += ` --firefox-zip ${firefoxZip} --firefox-sources-zip ${firefoxSourcesZip}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("Running command:", command);
|
console.log('Running command:', command);
|
||||||
execSync(command, { stdio: "inherit" }); // Execute and show output
|
execSync(command, { stdio: 'inherit' });
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse command-line arguments to determine which browsers to publish for
|
// Parse command-line arguments
|
||||||
const args = process.argv.slice(2);
|
const args = process.argv.slice(2);
|
||||||
const browserIndex = args.indexOf("--b"); // Find the --b flag
|
const browserIndex = args.indexOf('--b');
|
||||||
// If --b is found, take all subsequent arguments as browser names
|
|
||||||
const browsers = browserIndex !== -1 ? args.slice(browserIndex + 1) : [];
|
const browsers = browserIndex !== -1 ? args.slice(browserIndex + 1) : [];
|
||||||
|
|
||||||
runPublishCommand(browsers);
|
runPublishCommand(browsers);
|
||||||
+11
-49
@@ -1,55 +1,17 @@
|
|||||||
import fs from "fs";
|
import fs from 'fs';
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a Vite plugin designed to improve the reliability of Hot Module Replacement (HMR)
|
|
||||||
* for global CSS files.
|
|
||||||
*
|
|
||||||
* When a JavaScript/TypeScript module that imports a CSS file is updated, Vite's HMR
|
|
||||||
* might not always reliably update the styles injected by that global CSS. This plugin
|
|
||||||
* attempts to mitigate this by listening for hot updates. If an updated module
|
|
||||||
* has direct importers that are CSS files (e.g., a JS file imports a global CSS file),
|
|
||||||
* this plugin will "touch" those CSS files by updating their access and modification
|
|
||||||
* timestamps using `fs.utimesSync`. This action can help signal to Vite or the browser
|
|
||||||
* that the CSS file has changed, potentially triggering a more reliable style reload.
|
|
||||||
*
|
|
||||||
* @returns {import('vite').Plugin} A Vite plugin object configured with `name` and `handleHotUpdate` hooks.
|
|
||||||
*/
|
|
||||||
export default function touchGlobalCSSPlugin() {
|
export default function touchGlobalCSSPlugin() {
|
||||||
return {
|
return {
|
||||||
/**
|
name: 'touch-global-css',
|
||||||
* The unique name of this Vite plugin.
|
|
||||||
* This name is used by Vite for identification purposes and will appear in logs.
|
|
||||||
* @type {string}
|
|
||||||
*/
|
|
||||||
name: "touch-global-css",
|
|
||||||
/**
|
|
||||||
* A Vite hook that is called when a module is hot-updated.
|
|
||||||
* This function inspects the importers of the updated module. If any of these
|
|
||||||
* importers are CSS files, their filesystem timestamps are updated ("touched").
|
|
||||||
*
|
|
||||||
* @param {object} context The context object provided by Vite's `handleHotUpdate` hook.
|
|
||||||
* @param {Array<import('vite').ModuleNode>} context.modules An array of `ModuleNode` instances that have been updated.
|
|
||||||
* This plugin specifically accesses `modules[0]._clientModule.importers`
|
|
||||||
* to find CSS files that import the updated module.
|
|
||||||
*/
|
|
||||||
handleHotUpdate({ modules }) {
|
handleHotUpdate({ modules }) {
|
||||||
// It's assumed `modules[0]` is the primary updated module of interest.
|
// log all of the staticImportedUrls
|
||||||
// `_clientModule` and `importers` might be internal or less stable Vite APIs.
|
const importers = modules[0]._clientModule.importers
|
||||||
const importers = modules[0]?._clientModule?.importers;
|
importers.forEach((importer) => {
|
||||||
if (importers) {
|
if (importer.file.includes('.css')) {
|
||||||
importers.forEach((importer) => {
|
console.log("touching", importer.file)
|
||||||
// Check if the importer is a CSS file
|
fs.utimesSync(importer.file, new Date(), new Date())
|
||||||
if (importer.file && importer.file.includes(".css")) {
|
}
|
||||||
console.log("[touch-global-css] touching", importer.file);
|
})
|
||||||
try {
|
}
|
||||||
// Update the access and modification times of the CSS file to the current time
|
|
||||||
fs.utimesSync(importer.file, new Date(), new Date());
|
|
||||||
} catch (err) {
|
|
||||||
console.error(`[touch-global-css] Error touching file ${importer.file}:`, err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
+69
-205
@@ -1,240 +1,104 @@
|
|||||||
import type { ManifestV3Export } from "@crxjs/vite-plugin";
|
import type { ManifestV3Export } from '@crxjs/vite-plugin'
|
||||||
import { type AnyCase, createEnum, ObjectValues } from "./utils";
|
import { type AnyCase, createEnum } from './utils'
|
||||||
|
|
||||||
/**
|
|
||||||
* Enumerates supported JavaScript frameworks for project generation or configuration.
|
|
||||||
*/
|
|
||||||
export const FrameworkEnum = {
|
export const FrameworkEnum = {
|
||||||
React: "React",
|
React: 'React',
|
||||||
Vanilla: "Vanilla",
|
Vanilla: 'Vanilla',
|
||||||
Preact: "Preact",
|
Preact: 'Preact',
|
||||||
Lit: "Lit",
|
Lit: 'Lit',
|
||||||
Svelte: "Svelte",
|
Svelte: 'Svelte',
|
||||||
Vue: "Vue",
|
Vue: 'Vue',
|
||||||
} as const;
|
} as const
|
||||||
|
|
||||||
/**
|
|
||||||
* Enumerates supported web browsers, typically for targeting builds or configurations.
|
|
||||||
*/
|
|
||||||
export const BrowserEnum = {
|
export const BrowserEnum = {
|
||||||
Chrome: "Chrome",
|
Chrome: 'Chrome',
|
||||||
Brave: "Brave",
|
Brave: 'Brave',
|
||||||
Opera: "Opera",
|
Opera: 'Opera',
|
||||||
Edge: "Edge",
|
Edge: 'Edge',
|
||||||
Firefox: "Firefox",
|
Firefox: 'Firefox',
|
||||||
Safari: "Safari",
|
Safari: 'Safari',
|
||||||
} as const;
|
} as const
|
||||||
|
|
||||||
/**
|
|
||||||
* @private
|
|
||||||
* Enumerates supported programming languages for project setup.
|
|
||||||
* This enum is not exported, suggesting it's for internal use within this module or related modules.
|
|
||||||
*/
|
|
||||||
const LanguageEnum = {
|
const LanguageEnum = {
|
||||||
TypeScript: "TypeScript",
|
TypeScript: 'TypeScript',
|
||||||
JavaScript: "JavaScript",
|
JavaScript: 'JavaScript',
|
||||||
} as const;
|
} as const
|
||||||
|
|
||||||
/**
|
|
||||||
* Enumerates supported styling options or libraries.
|
|
||||||
*/
|
|
||||||
export const StyleEnum = {
|
export const StyleEnum = {
|
||||||
Tailwind: "Tailwind",
|
Tailwind: 'Tailwind',
|
||||||
} as const;
|
} as const
|
||||||
|
|
||||||
/**
|
|
||||||
* Enumerates supported package managers.
|
|
||||||
*/
|
|
||||||
export const PackageManagerEnum = {
|
export const PackageManagerEnum = {
|
||||||
Bun: "Bun",
|
Bun: 'Bun',
|
||||||
PnPm: "PnPm",
|
PnPm: 'PnPm',
|
||||||
Npm: "Npm",
|
Npm: 'Npm',
|
||||||
Yarn: "Yarn",
|
Yarn: 'Yarn',
|
||||||
} as const;
|
} as const
|
||||||
|
|
||||||
/**
|
// see: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/firefox-webext-browser/index.d.ts
|
||||||
* Defines the structure for browser-specific settings within a web extension manifest.
|
|
||||||
* This is particularly used for Firefox (gecko) extensions to specify properties like
|
|
||||||
* an extension ID, and minimum/maximum supported browser versions.
|
|
||||||
* The structure is based on common manifest extensions for Firefox.
|
|
||||||
* See: https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings
|
|
||||||
* The link in the original code (// see: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/firefox-webext-browser/index.d.ts)
|
|
||||||
* also points to type definitions that include this structure.
|
|
||||||
*
|
|
||||||
* @property {object} [browser_specific_settings] - Container for browser-specific settings.
|
|
||||||
* @property {object} [browser_specific_settings.gecko] - Settings specific to Gecko-based browsers (e.g., Firefox).
|
|
||||||
* @property {string} [browser_specific_settings.gecko.id] - The unique identifier for the extension in Firefox.
|
|
||||||
* @property {string} [browser_specific_settings.gecko.strict_min_version] - The minimum version of Firefox the extension is compatible with.
|
|
||||||
* @property {string} [browser_specific_settings.gecko.strict_max_version] - The maximum version of Firefox the extension is compatible with.
|
|
||||||
*/
|
|
||||||
export type BrowserSpecificSettings = {
|
export type BrowserSpecificSettings = {
|
||||||
browser_specific_settings?: {
|
browser_specific_settings?: {
|
||||||
gecko?: {
|
gecko?: {
|
||||||
id: string;
|
id: string
|
||||||
strict_min_version?: string;
|
strict_min_version?: string
|
||||||
strict_max_version?: string;
|
strict_max_version?: string
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
export type Manifest = ManifestV3Export
|
||||||
* Represents the structure of a Chrome Manifest V3 file.
|
export type ManifestIcons = chrome.runtime.ManifestIcons
|
||||||
* This type is an alias for `ManifestV3Export` from the `@crxjs/vite-plugin`,
|
export type ManifestBackground = chrome.runtime.ManifestV3['background']
|
||||||
* which provides a comprehensive definition for Chrome extension manifests.
|
|
||||||
*/
|
|
||||||
export type Manifest = ManifestV3Export;
|
|
||||||
|
|
||||||
/** Alias for the `icons` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestIcons = chrome.runtime.ManifestIcons;
|
|
||||||
/** Alias for the `background` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestBackground = chrome.runtime.ManifestV3["background"];
|
|
||||||
/** Alias for the `content_scripts` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestContentScripts =
|
export type ManifestContentScripts =
|
||||||
chrome.runtime.ManifestV3["content_scripts"];
|
chrome.runtime.ManifestV3['content_scripts']
|
||||||
/** Alias for the `web_accessible_resources` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestWebAccessibleResources =
|
export type ManifestWebAccessibleResources =
|
||||||
chrome.runtime.ManifestV3["web_accessible_resources"];
|
chrome.runtime.ManifestV3['web_accessible_resources']
|
||||||
/** Alias for the `commands` property within a Chrome Manifest V3. */
|
export type ManifestCommands = chrome.runtime.ManifestV3['commands']
|
||||||
export type ManifestCommands = chrome.runtime.ManifestV3["commands"];
|
export type ManifestAction = chrome.runtime.ManifestV3['action']
|
||||||
/** Alias for the `action` property (or `browser_action`/`page_action`) within a Chrome Manifest V3. */
|
export type ManifestPermissions = chrome.runtime.ManifestV3['permissions']
|
||||||
export type ManifestAction = chrome.runtime.ManifestV3["action"];
|
export type ManifestOptionsUI = chrome.runtime.ManifestV3['options_ui']
|
||||||
/** Alias for the `permissions` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestPermissions = chrome.runtime.ManifestV3["permissions"];
|
|
||||||
/** Alias for the `options_ui` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestOptionsUI = chrome.runtime.ManifestV3["options_ui"];
|
|
||||||
/** Alias for the `chrome_url_overrides` property within a Chrome Manifest V3. */
|
|
||||||
export type ManifestURLOverrides =
|
export type ManifestURLOverrides =
|
||||||
chrome.runtime.ManifestV3["chrome_url_overrides"];
|
chrome.runtime.ManifestV3['chrome_url_overrides']
|
||||||
|
|
||||||
/**
|
export type BrowserName<T extends string> = Capitalize<T> | Lowercase<T>
|
||||||
* Creates a type that accepts a string literal `T` in either its capitalized or lowercase form.
|
|
||||||
* Useful for defining types that should be case-insensitive for specific known strings.
|
|
||||||
* @template T - A string literal type.
|
|
||||||
*/
|
|
||||||
export type BrowserName<T extends string> = Capitalize<T> | Lowercase<T>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a record type where both keys and values are derived from a string literal `T`,
|
|
||||||
* specifically using `BrowserName<T>` which allows for capitalized or lowercase forms.
|
|
||||||
* This could be used to define an object where, for example, keys are 'Chrome' or 'chrome'
|
|
||||||
* and values are also 'Chrome' or 'chrome'.
|
|
||||||
* @template T - A string literal type, typically representing a browser name.
|
|
||||||
*/
|
|
||||||
export type BrowserEnumType<T extends string> = {
|
export type BrowserEnumType<T extends string> = {
|
||||||
[browser in BrowserName<T>]: BrowserName<T>;
|
[browser in BrowserName<T>]: BrowserName<T>
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
export type BuildMode = AnyCase<Browser>
|
||||||
* Represents the target browser for a build, allowing for various casings of browser names
|
|
||||||
* (e.g., "chrome", "Chrome", "CHROME") through the `AnyCase<Browser>` utility type.
|
|
||||||
* `Browser` itself is a union of specific browser name strings (e.g., "Chrome" | "Firefox").
|
|
||||||
*/
|
|
||||||
export type BuildMode = AnyCase<Browser>;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines an object structure that pairs a web extension `Manifest`
|
|
||||||
* with its target `browser` (represented as `AnyCase<Browser>`).
|
|
||||||
* This is commonly used in build processes to manage configurations for different browsers.
|
|
||||||
*/
|
|
||||||
export type BuildTarget = {
|
export type BuildTarget = {
|
||||||
manifest: Manifest;
|
manifest: Manifest
|
||||||
browser: AnyCase<Browser>;
|
browser: AnyCase<Browser>
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the configuration options for a build process.
|
|
||||||
* @property {"build" | "serve"} [command] - The type of build command (e.g., 'build' for production, 'serve' for development).
|
|
||||||
* @property {AnyCase<Browser> | string | undefined} [mode] - The target build mode, typically a browser name (allowing various casings)
|
|
||||||
* or potentially other custom mode strings.
|
|
||||||
*/
|
|
||||||
export type BuildConfig = {
|
export type BuildConfig = {
|
||||||
command?: "build" | "serve";
|
command?: 'build' | 'serve'
|
||||||
mode?: AnyCase<Browser> | string | undefined;
|
mode?: AnyCase<Browser> | string | undefined
|
||||||
};
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the structure for repository information, commonly found in `package.json`.
|
|
||||||
* @property {string} type - The type of the repository (e.g., "git").
|
|
||||||
* @property {string} [url] - The URL of the repository.
|
|
||||||
* @property {Bugs} [bugs] - An object containing information about where to report bugs.
|
|
||||||
*/
|
|
||||||
export interface Repository {
|
export interface Repository {
|
||||||
type: string;
|
type: string
|
||||||
url?: string;
|
url?: string
|
||||||
bugs?: Bugs;
|
bugs?: Bugs
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the structure for bug reporting information, often part of the `Repository` interface.
|
|
||||||
* @property {string} [url] - The URL of the issue tracker.
|
|
||||||
* @property {string} [email] - The email address for reporting bugs.
|
|
||||||
*/
|
|
||||||
export interface Bugs {
|
export interface Bugs {
|
||||||
url?: string;
|
url?: string
|
||||||
email?: string;
|
email?: string
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export type Browser = (typeof BrowserEnum)[keyof typeof BrowserEnum]
|
||||||
* A string literal union type representing supported browser names, derived from the values of `BrowserEnum`.
|
export const Browser: AnyCase<Browser> = createEnum(BrowserEnum)
|
||||||
* e.g., "Chrome" | "Firefox" | ...
|
|
||||||
*/
|
|
||||||
export type Browser = ObjectValues<typeof BrowserEnum>;
|
|
||||||
|
|
||||||
/**
|
export type PackageManager =
|
||||||
* A constant intended to provide access to browser names, potentially in various casings.
|
(typeof PackageManagerEnum)[keyof typeof PackageManagerEnum]
|
||||||
* Its type `AnyCase<Browser>` suggests it can be used where case-insensitivity for browser names is needed.
|
|
||||||
* The `createEnum(BrowserEnum)` call aims to produce a representation of browser names from `BrowserEnum`.
|
|
||||||
* Note: `createEnum` from `lib/utils.ts` has a declared return type of `ObjectValues<T>` (a union of values),
|
|
||||||
* while its implementation uses `Object.values()` which returns an array. This constant will hold the
|
|
||||||
* runtime array value, but its JSDoc type refers to the more restrictive `AnyCase<Browser>` union type.
|
|
||||||
*/
|
|
||||||
export const Browser: AnyCase<Browser> = createEnum(BrowserEnum);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A string literal union type representing supported package managers, derived from the values of `PackageManagerEnum`.
|
|
||||||
* e.g., "Bun" | "PnPm" | "Npm" | "Yarn"
|
|
||||||
*/
|
|
||||||
export type PackageManager = ObjectValues<typeof PackageManagerEnum>;
|
|
||||||
/**
|
|
||||||
* A constant intended to provide access to package manager names, potentially in various casings.
|
|
||||||
* Its type `AnyCase<PackageManager>` suggests it can be used where case-insensitivity for package manager names is needed.
|
|
||||||
* Utilizes `createEnum(PackageManagerEnum)`. Refer to notes on `Browser` constant regarding `createEnum` behavior.
|
|
||||||
*/
|
|
||||||
export const PackageManager: AnyCase<PackageManager> =
|
export const PackageManager: AnyCase<PackageManager> =
|
||||||
createEnum(PackageManagerEnum);
|
createEnum(PackageManagerEnum)
|
||||||
|
|
||||||
/**
|
export type Framework = (typeof FrameworkEnum)[keyof typeof FrameworkEnum]
|
||||||
* A string literal union type representing supported JavaScript frameworks, derived from the values of `FrameworkEnum`.
|
export const Framework: AnyCase<Framework> = createEnum(FrameworkEnum)
|
||||||
* e.g., "React" | "Vanilla" | ...
|
|
||||||
*/
|
|
||||||
export type Framework = ObjectValues<typeof FrameworkEnum>;
|
|
||||||
/**
|
|
||||||
* A constant intended to provide access to framework names, potentially in various casings.
|
|
||||||
* Its type `AnyCase<Framework>` suggests it can be used where case-insensitivity for framework names is needed.
|
|
||||||
* Utilizes `createEnum(FrameworkEnum)`. Refer to notes on `Browser` constant regarding `createEnum` behavior.
|
|
||||||
*/
|
|
||||||
export const Framework: AnyCase<Framework> = createEnum(FrameworkEnum);
|
|
||||||
|
|
||||||
/**
|
export type Style = (typeof StyleEnum)[keyof typeof StyleEnum]
|
||||||
* A string literal union type representing supported styling options, derived from the values of `StyleEnum`.
|
export const Style: AnyCase<Style> = createEnum(StyleEnum)
|
||||||
* e.g., "Tailwind"
|
|
||||||
*/
|
|
||||||
export type Style = ObjectValues<typeof StyleEnum>;
|
|
||||||
/**
|
|
||||||
* A constant intended to provide access to style option names, potentially in various casings.
|
|
||||||
* Its type `AnyCase<Style>` suggests it can be used where case-insensitivity for style names is needed.
|
|
||||||
* Utilizes `createEnum(StyleEnum)`. Refer to notes on `Browser` constant regarding `createEnum` behavior.
|
|
||||||
*/
|
|
||||||
export const Style: AnyCase<Style> = createEnum(StyleEnum);
|
|
||||||
|
|
||||||
/**
|
export type Language = (typeof LanguageEnum)[keyof typeof LanguageEnum]
|
||||||
* A string literal union type representing supported programming languages, derived from the values of `LanguageEnum`.
|
export const Language: AnyCase<Language> = createEnum(LanguageEnum)
|
||||||
* e.g., "TypeScript" | "JavaScript"
|
|
||||||
*/
|
|
||||||
export type Language = ObjectValues<typeof LanguageEnum>;
|
|
||||||
/**
|
|
||||||
* A constant intended to provide access to programming language names, potentially in various casings.
|
|
||||||
* Its type `AnyCase<Language>` suggests it can be used where case-insensitivity for language names is needed.
|
|
||||||
* Utilizes `createEnum(LanguageEnum)`. Refer to notes on `Browser` constant regarding `createEnum` behavior.
|
|
||||||
*/
|
|
||||||
export const Language: AnyCase<Language> = createEnum(LanguageEnum);
|
|
||||||
+6
-69
@@ -1,84 +1,21 @@
|
|||||||
/**
|
export type ObjectValues<T> = T[keyof T]
|
||||||
* Extracts a union type of all values from the properties of an object type `T`.
|
|
||||||
*
|
|
||||||
* @template T - An object type (typically a Record or an enum-like object).
|
|
||||||
* @example
|
|
||||||
* type MyObject = { a: "foo", b: "bar", c: 123 };
|
|
||||||
* type MyObjectValues = ObjectValues<MyObject>; // "foo" | "bar" | 123
|
|
||||||
*/
|
|
||||||
export type ObjectValues<T> = T[keyof T];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a union of an object's string values, often used to represent the set of possible values for an enum-like object.
|
|
||||||
* Note: The implementation `Object.values(enumObj) as unknown as ObjectValues<T>` returns an array at runtime,
|
|
||||||
* but the declared return type `ObjectValues<T>` is a union of the object's property values.
|
|
||||||
* This type signature suggests it's intended to represent the set of possible string values from `enumObj`.
|
|
||||||
*
|
|
||||||
* @template T - An object type where keys are strings and values are strings (e.g., `const MyEnum = { VAL_A: "A", VAL_B: "B" }`).
|
|
||||||
* @param {T} enumObj - The object from which to extract values.
|
|
||||||
* @returns {ObjectValues<T>} A union type representing all possible string values of the `enumObj`.
|
|
||||||
* For example, if `enumObj` is `{ A: "valA", B: "valB" }`, the return type is `"valA" | "valB"`.
|
|
||||||
* (Runtime behavior of `Object.values()` is to return an array like `["valA", "valB"]`).
|
|
||||||
*/
|
|
||||||
export function createEnum<T extends Record<string, string>>(enumObj: T) {
|
export function createEnum<T extends Record<string, string>>(enumObj: T) {
|
||||||
return Object.values(enumObj) as unknown as ObjectValues<T>;
|
return Object.values(enumObj) as unknown as ObjectValues<T>
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a union type that includes various case formats (uppercase, lowercase, capitalized, uncapitalized)
|
|
||||||
* of a given string literal type `T`.
|
|
||||||
*
|
|
||||||
* @template T - A string literal type.
|
|
||||||
* @example
|
|
||||||
* type MyString = "example";
|
|
||||||
* type MyStringAnyCase = AnyCase<MyString>; // "EXAMPLE" | "example" | "Example" | "example" (Uncapitalize<"Example"> is "example")
|
|
||||||
*/
|
|
||||||
export type AnyCase<T extends string> =
|
export type AnyCase<T extends string> =
|
||||||
| Uppercase<T>
|
| Uppercase<T>
|
||||||
| Lowercase<T>
|
| Lowercase<T>
|
||||||
| Capitalize<T>
|
| Capitalize<T>
|
||||||
| Uncapitalize<T>;
|
| Uncapitalize<T>
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a union type that includes various case formats (uppercase, lowercase, capitalized, uncapitalized)
|
|
||||||
* of the union of two given string literal types `T` and `K`.
|
|
||||||
* This is useful for representing a combined set of related string constants where case variations are permitted for each.
|
|
||||||
*
|
|
||||||
* @template T - A string literal type.
|
|
||||||
* @template K - Another string literal type.
|
|
||||||
* @example
|
|
||||||
* type Lang1 = "english";
|
|
||||||
* type Lang2 = "french";
|
|
||||||
* type CombinedLangsAnyCase = AnyCaseLanguage<Lang1, Lang2>;
|
|
||||||
* // Result includes: "ENGLISH" | "english" | "English" | "FRENCH" | "french" | "French" etc.
|
|
||||||
* // for all case variations of "english" and "french".
|
|
||||||
*/
|
|
||||||
export type AnyCaseLanguage<T extends string, K extends string> =
|
export type AnyCaseLanguage<T extends string, K extends string> =
|
||||||
| Uppercase<T | K>
|
| Uppercase<T | K>
|
||||||
| Lowercase<T | K>
|
| Lowercase<T | K>
|
||||||
| Capitalize<T | K>
|
| Capitalize<T | K>
|
||||||
| Uncapitalize<T | K>;
|
| Uncapitalize<T | K>
|
||||||
|
|
||||||
/**
|
|
||||||
* Extracts a new object type containing only the keys of `T` whose properties are optional
|
|
||||||
* (i.e., their type includes `undefined`). The values associated with these keys retain their original types.
|
|
||||||
*
|
|
||||||
* @template T - An object type.
|
|
||||||
* @example
|
|
||||||
* type MyObject = {
|
|
||||||
* requiredProp: string;
|
|
||||||
* optionalProp?: number;
|
|
||||||
* anotherOptional?: boolean | undefined;
|
|
||||||
* nullProp: string | null;
|
|
||||||
* };
|
|
||||||
* type MyOptionalProps = OptionalKeys<MyObject>;
|
|
||||||
* // MyOptionalProps would be conceptually equivalent to:
|
|
||||||
* // {
|
|
||||||
* // optionalProp?: number;
|
|
||||||
* // anotherOptional?: boolean | undefined;
|
|
||||||
* // }
|
|
||||||
* // The actual resulting type is an object type with only these optional keys.
|
|
||||||
*/
|
|
||||||
export type OptionalKeys<T> = {
|
export type OptionalKeys<T> = {
|
||||||
[K in keyof T as undefined extends T[K] ? K : never]: T[K];
|
[K in keyof T as undefined extends T[K] ? K : never]: T[K]
|
||||||
};
|
}
|
||||||
+13
-21
@@ -1,14 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "betterseqtaplus",
|
"name": "betterseqtaplus",
|
||||||
"version": "3.5.3",
|
"version": "3.4.6.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development add add heaps more features!",
|
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development add add heaps more features!",
|
||||||
"browserslist": "> 0.5%, last 2 versions, not dead",
|
"browserslist": "> 0.5%, last 2 versions, not dead",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"autoaudit": "npm audit && npm audit fix && npm run build",
|
|
||||||
"dev": "cross-env MODE=chrome vite dev",
|
"dev": "cross-env MODE=chrome vite dev",
|
||||||
"dev:firefox": "cross-env MODE=firefox vite build --watch",
|
"dev:firefox": "cross-env MODE=firefox vite build --watch",
|
||||||
"compile": "npm i && npm run build",
|
|
||||||
"build": "cross-env MODE=chrome vite build && cross-env MODE=firefox vite build",
|
"build": "cross-env MODE=chrome vite build && cross-env MODE=firefox vite build",
|
||||||
"build:chrome": "cross-env MODE=chrome vite build",
|
"build:chrome": "cross-env MODE=chrome vite build",
|
||||||
"build:firefox": "cross-env MODE=firefox vite build",
|
"build:firefox": "cross-env MODE=firefox vite build",
|
||||||
@@ -30,26 +28,26 @@
|
|||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": {
|
"author": {
|
||||||
"name": "SethBurkart123",
|
"name": "SethBurkart123",
|
||||||
"email": "betterseqta.plus@gmail.com",
|
"email": "betterseqta@betterseqta.com",
|
||||||
"url": "https://github.com/BetterSEQTA/BetterSEQTA-plus"
|
"url": "https://github.com/BetterSEQTA/BetterSEQTA-plus"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/plugin-transform-runtime": "^7.26.9",
|
"@babel/plugin-transform-runtime": "^7.26.9",
|
||||||
"@babel/runtime": "^7.26.9",
|
"@babel/runtime": "^7.26.9",
|
||||||
"@bedframe/cli": "^0.0.95",
|
"@bedframe/cli": "^0.0.91",
|
||||||
"@crxjs/vite-plugin": "^2.2.0",
|
"@crxjs/vite-plugin": "2.0.0-beta.25",
|
||||||
"@types/mime-types": "^3.0.1",
|
"@types/mime-types": "^2.1.4",
|
||||||
"@types/react": "^19.0.10",
|
"@types/react": "^19.0.10",
|
||||||
"@types/react-dom": "^19.0.4",
|
"@types/react-dom": "^19.0.4",
|
||||||
"cross-env": "^10.0.0",
|
"cross-env": "^7.0.3",
|
||||||
"dependency-cruiser": "^17.0.1",
|
"dependency-cruiser": "^16.10.0",
|
||||||
"eslint": "^9.33.0",
|
"eslint": "9.22.0",
|
||||||
"glob": "^11.0.1",
|
"glob": "^11.0.1",
|
||||||
"mime-types": "^3.0.1",
|
"mime-types": "^2.1.35",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"process": "^0.11.10",
|
"process": "^0.11.10",
|
||||||
"publish-browser-extension": "^4.0.4",
|
"publish-browser-extension": "^3.0.0",
|
||||||
"sass": "^1.85.1",
|
"sass": "^1.85.1",
|
||||||
"sass-loader": "^16.0.5",
|
"sass-loader": "^16.0.5",
|
||||||
"semver": "^7.7.1",
|
"semver": "^7.7.1",
|
||||||
@@ -57,7 +55,6 @@
|
|||||||
"url": "^0.11.4"
|
"url": "^0.11.4"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@bedframe/core": "^0.0.46",
|
|
||||||
"@codemirror/autocomplete": "^6.18.6",
|
"@codemirror/autocomplete": "^6.18.6",
|
||||||
"@codemirror/commands": "^6.8.0",
|
"@codemirror/commands": "^6.8.0",
|
||||||
"@codemirror/lang-css": "^6.3.1",
|
"@codemirror/lang-css": "^6.3.1",
|
||||||
@@ -68,25 +65,22 @@
|
|||||||
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
||||||
"@tailwindcss/forms": "^0.5.10",
|
"@tailwindcss/forms": "^0.5.10",
|
||||||
"@tsconfig/svelte": "^5.0.4",
|
"@tsconfig/svelte": "^5.0.4",
|
||||||
"@types/chrome": "^0.1.4",
|
"@types/chrome": "^0.0.308",
|
||||||
"@types/color": "^4.2.0",
|
"@types/color": "^4.2.0",
|
||||||
"@types/lodash": "^4.17.16",
|
"@types/lodash": "^4.17.16",
|
||||||
"@types/node": "^24.3.0",
|
"@types/node": "^22.13.10",
|
||||||
"@types/qrcode": "^1.5.6",
|
|
||||||
"@types/sortablejs": "^1.15.8",
|
"@types/sortablejs": "^1.15.8",
|
||||||
"@types/uuid": "^10.0.0",
|
"@types/uuid": "^10.0.0",
|
||||||
"@types/webextension-polyfill": "^0.12.3",
|
"@types/webextension-polyfill": "^0.12.3",
|
||||||
"@uiw/codemirror-extensions-color": "^4.23.10",
|
"@uiw/codemirror-extensions-color": "^4.23.10",
|
||||||
"@uiw/codemirror-theme-github": "^4.23.10",
|
"@uiw/codemirror-theme-github": "^4.23.10",
|
||||||
"autoprefixer": "^10.4.21",
|
"autoprefixer": "^10.4.21",
|
||||||
"canvas-confetti": "^1.9.3",
|
"client-vector-search": "../client-vector-search",
|
||||||
"codemirror": "^6.0.1",
|
"codemirror": "^6.0.1",
|
||||||
"color": "^5.0.0",
|
"color": "^5.0.0",
|
||||||
"dompurify": "^3.2.4",
|
"dompurify": "^3.2.4",
|
||||||
"embeddia": "^1.2.1",
|
|
||||||
"embla-carousel-autoplay": "^8.5.2",
|
"embla-carousel-autoplay": "^8.5.2",
|
||||||
"embla-carousel-svelte": "^8.5.2",
|
"embla-carousel-svelte": "^8.5.2",
|
||||||
"esbuild": "^0.25.3",
|
|
||||||
"events": "^3.3.0",
|
"events": "^3.3.0",
|
||||||
"flexsearch": "^0.8.147",
|
"flexsearch": "^0.8.147",
|
||||||
"fuse.js": "^7.1.0",
|
"fuse.js": "^7.1.0",
|
||||||
@@ -96,9 +90,7 @@
|
|||||||
"mathjs": "^14.4.0",
|
"mathjs": "^14.4.0",
|
||||||
"million": "^3.1.11",
|
"million": "^3.1.11",
|
||||||
"motion": "^12.4.12",
|
"motion": "^12.4.12",
|
||||||
"pdfjs-dist": "^5.4.530",
|
|
||||||
"postcss": "^8.5.3",
|
"postcss": "^8.5.3",
|
||||||
"qrcode": "^1.5.4",
|
|
||||||
"react": "17",
|
"react": "17",
|
||||||
"react-best-gradient-color-picker": "3.0.11",
|
"react-best-gradient-color-picker": "3.0.11",
|
||||||
"react-dom": "17",
|
"react-dom": "17",
|
||||||
|
|||||||
+126
@@ -0,0 +1,126 @@
|
|||||||
|
--- a/Users/sethburkart/Documents/Coding/betterseqta-plus/src/plugins/core/settings.ts
|
||||||
|
+++ b/Users/sethburkart/Documents/Coding/betterseqta-plus/src/plugins/core/settings.ts
|
||||||
|
@@ -2,7 +2,7 @@
|
||||||
|
|
||||||
|
// Base interfaces for our settings
|
||||||
|
interface BaseSettingOptions {
|
||||||
|
- title: string;
|
||||||
|
+ readonly title: string; // Mark as readonly where appropriate
|
||||||
|
description?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -11,21 +11,21 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
interface StringSettingOptions extends BaseSettingOptions {
|
||||||
|
- default: string;
|
||||||
|
+ readonly default: string;
|
||||||
|
maxLength?: number;
|
||||||
|
pattern?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface NumberSettingOptions extends BaseSettingOptions {
|
||||||
|
- default: number;
|
||||||
|
+ readonly default: number;
|
||||||
|
min?: number;
|
||||||
|
max?: number;
|
||||||
|
step?: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SelectSettingOptions<T extends string> extends BaseSettingOptions {
|
||||||
|
- default: T;
|
||||||
|
- options: readonly T[];
|
||||||
|
+ readonly default: T;
|
||||||
|
+ readonly options: readonly T[];
|
||||||
|
}
|
||||||
|
|
||||||
|
// The actual decorators
|
||||||
|
@@ -34,14 +34,16 @@
|
||||||
|
// Ensure the settings property exists on the constructor's prototype
|
||||||
|
const proto = target.constructor.prototype;
|
||||||
|
if (!proto.hasOwnProperty('settings')) {
|
||||||
|
- proto.settings = {};
|
||||||
|
+ // Initialize with a base type that can be extended
|
||||||
|
+ Object.defineProperty(proto, 'settings', {
|
||||||
|
+ value: {},
|
||||||
|
+ writable: true, // Allows adding properties
|
||||||
|
+ configurable: true,
|
||||||
|
+ enumerable: true
|
||||||
|
+ });
|
||||||
|
}
|
||||||
|
-
|
||||||
|
+
|
||||||
|
// Add the setting to the prototype's settings object with const assertion
|
||||||
|
proto.settings[propertyKey] = {
|
||||||
|
type: 'boolean' as const,
|
||||||
|
...options
|
||||||
|
};
|
||||||
|
- };
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-export function StringSetting(options: StringSettingOptions): PropertyDecorator {
|
||||||
|
- return (target: Object, propertyKey: string | symbol) => {
|
||||||
|
- // Ensure the settings property exists on the constructor's prototype
|
||||||
|
- const proto = target.constructor.prototype;
|
||||||
|
- if (!proto.hasOwnProperty('settings')) {
|
||||||
|
- proto.settings = {};
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // Add the setting to the prototype's settings object with const assertion
|
||||||
|
- proto.settings[propertyKey] = {
|
||||||
|
- type: 'string' as const,
|
||||||
|
- ...options
|
||||||
|
- };
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -50,14 +52,16 @@
|
||||||
|
// Ensure the settings property exists on the constructor's prototype
|
||||||
|
const proto = target.constructor.prototype;
|
||||||
|
if (!proto.hasOwnProperty('settings')) {
|
||||||
|
- proto.settings = {};
|
||||||
|
+ Object.defineProperty(proto, 'settings', {
|
||||||
|
+ value: {},
|
||||||
|
+ writable: true,
|
||||||
|
+ configurable: true,
|
||||||
|
+ enumerable: true
|
||||||
|
+ });
|
||||||
|
}
|
||||||
|
-
|
||||||
|
+
|
||||||
|
// Add the setting to the prototype's settings object with const assertion
|
||||||
|
proto.settings[propertyKey] = {
|
||||||
|
type: 'number' as const,
|
||||||
|
...options
|
||||||
|
};
|
||||||
|
- };
|
||||||
|
-}
|
||||||
|
-
|
||||||
|
-export function SelectSetting<T extends string>(options: SelectSettingOptions<T>): PropertyDecorator {
|
||||||
|
- return (target: Object, propertyKey: string | symbol) => {
|
||||||
|
- // Ensure the settings property exists on the constructor's prototype
|
||||||
|
- const proto = target.constructor.prototype;
|
||||||
|
- if (!proto.hasOwnProperty('settings')) {
|
||||||
|
- proto.settings = {};
|
||||||
|
- }
|
||||||
|
-
|
||||||
|
- // Add the setting to the prototype's settings object with const assertion
|
||||||
|
- proto.settings[propertyKey] = {
|
||||||
|
- type: 'select' as const,
|
||||||
|
- ...options
|
||||||
|
- };
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Base plugin class that handles settings
|
||||||
|
export abstract class BasePlugin<T extends PluginSettings = PluginSettings> {
|
||||||
|
// The settings property will be populated by decorators
|
||||||
|
- settings!: T;
|
||||||
|
-
|
||||||
|
+ // Keep the instance property and constructor logic as is,
|
||||||
|
+ // as changing it would require changing animated-background/index.ts
|
||||||
|
+ settings!: T; // Use definite assignment assertion
|
||||||
|
+
|
||||||
|
constructor() {
|
||||||
|
// Copy settings from the prototype to the instance
|
||||||
|
// This ensures that each instance has its own settings object
|
||||||
+31
-96
@@ -1,130 +1,65 @@
|
|||||||
import {
|
import {
|
||||||
initializeSettingsState,
|
initializeSettingsState,
|
||||||
settingsState,
|
settingsState,
|
||||||
} from "@/seqta/utils/listeners/SettingsState";
|
} from "@/seqta/utils/listeners/SettingsState"
|
||||||
import documentLoadCSS from "@/css/documentload.scss?inline";
|
import documentLoadCSS from "@/css/documentload.scss?inline"
|
||||||
import icon48 from "@/resources/icons/icon-48.png?base64";
|
import icon48 from "@/resources/icons/icon-48.png?base64"
|
||||||
import browser from "webextension-polyfill";
|
import browser from "webextension-polyfill"
|
||||||
|
|
||||||
import * as plugins from "@/plugins";
|
import * as plugins from "@/plugins"
|
||||||
import { main } from "@/seqta/main";
|
import { main } from "@/seqta/main"
|
||||||
import { delay } from "./seqta/utils/delay";
|
|
||||||
import { initializeHideSensitiveToggle } from "@/seqta/utils/hideSensitiveToggle";
|
|
||||||
|
|
||||||
function registerFetchSeqtaAppLinkListener() {
|
|
||||||
browser.runtime.onMessage.addListener((request, _sender, sendResponse) => {
|
|
||||||
if (request?.type !== "fetchSeqtaAppLink") return false;
|
|
||||||
void (async () => {
|
|
||||||
try {
|
|
||||||
const res = await fetch(`${location.origin}/seqta/student/load/profile`, {
|
|
||||||
method: "POST",
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
credentials: "include",
|
|
||||||
body: JSON.stringify({}),
|
|
||||||
});
|
|
||||||
const data = await res.json();
|
|
||||||
const statusOk = data?.status === "200" || data?.status === 200;
|
|
||||||
const raw = data?.payload?.app_link;
|
|
||||||
const appLink = typeof raw === "string" && raw.length > 0 ? raw : null;
|
|
||||||
sendResponse({ appLink: statusOk ? appLink : null });
|
|
||||||
} catch {
|
|
||||||
sendResponse({ appLink: null });
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
export let MenuOptionsOpen = false;
|
export let MenuOptionsOpen = false
|
||||||
|
|
||||||
var IsSEQTAPage = false;
|
var IsSEQTAPage = false
|
||||||
let hasSEQTAText = false;
|
let hasSEQTAText = false
|
||||||
|
|
||||||
// This check is placed outside of the document load event due to issues with EP (https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues/84)
|
// This check is placed outside of the document load event due to issues with EP (https://github.com/BetterSEQTA/BetterSEQTA-Plus/issues/84)
|
||||||
if (document.childNodes[1]) {
|
if (document.childNodes[1]) {
|
||||||
hasSEQTAText =
|
hasSEQTAText =
|
||||||
document.childNodes[1].textContent?.includes(
|
document.childNodes[1].textContent?.includes(
|
||||||
"Copyright (c) SEQTA Software",
|
"Copyright (c) SEQTA Software",
|
||||||
) ?? false;
|
) ?? false
|
||||||
init();
|
init()
|
||||||
}
|
}
|
||||||
|
|
||||||
async function init() {
|
async function init() {
|
||||||
if (
|
const hasSEQTATitle = document.title.includes("SEQTA Learn")
|
||||||
hasSEQTAText &&
|
|
||||||
(document.title.includes("SEQTA Learn") ||
|
|
||||||
document.title.includes("SEQTA Engage")) &&
|
|
||||||
!IsSEQTAPage
|
|
||||||
) {
|
|
||||||
IsSEQTAPage = true;
|
|
||||||
console.info("[BetterSEQTA+] Verified SEQTA Page");
|
|
||||||
|
|
||||||
registerFetchSeqtaAppLinkListener();
|
if (hasSEQTAText && hasSEQTATitle && !IsSEQTAPage) { // Verify we are on a SEQTA page
|
||||||
|
IsSEQTAPage = true
|
||||||
const documentLoadStyle = document.createElement("style");
|
console.info("[BetterSEQTA+] Verified SEQTA Page")
|
||||||
documentLoadStyle.textContent = documentLoadCSS;
|
|
||||||
document.head.appendChild(documentLoadStyle);
|
|
||||||
|
|
||||||
replaceIcons();
|
|
||||||
|
|
||||||
const observer = new MutationObserver((mutations) => {
|
|
||||||
for (const mutation of mutations) {
|
|
||||||
|
|
||||||
if (
|
|
||||||
mutation.type === "attributes" &&
|
|
||||||
mutation.target instanceof HTMLLinkElement &&
|
|
||||||
mutation.target.rel.includes("icon") &&
|
|
||||||
mutation.attributeName === "href"
|
|
||||||
) {
|
|
||||||
replaceIcons();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
observer.observe(document.head, {
|
|
||||||
subtree: true,
|
|
||||||
attributes: true,
|
|
||||||
attributeFilter: ["href"],
|
|
||||||
});
|
|
||||||
|
|
||||||
|
const documentLoadStyle = document.createElement("style")
|
||||||
|
documentLoadStyle.textContent = documentLoadCSS
|
||||||
|
document.head.appendChild(documentLoadStyle)
|
||||||
|
|
||||||
|
const icon = document.querySelector('link[rel*="icon"]')! as HTMLLinkElement
|
||||||
|
icon.href = icon48 // Change the icon
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await initializeSettingsState();
|
await initializeSettingsState()
|
||||||
|
|
||||||
if (typeof settingsState.onoff === "undefined") {
|
if (typeof settingsState.onoff === "undefined") {
|
||||||
await browser.runtime.sendMessage({ type: "setDefaultStorage" });
|
browser.runtime.sendMessage({ type: "setDefaultStorage" })
|
||||||
|
|
||||||
await delay(5);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
await main();
|
await main()
|
||||||
plugins.Monofile();
|
|
||||||
|
|
||||||
if (settingsState.onoff) {
|
if (settingsState.onoff) {
|
||||||
|
// Initialize legacy plugins
|
||||||
|
plugins.Monofile()
|
||||||
|
|
||||||
|
// Initialize new plugin system
|
||||||
await plugins.initializePlugins();
|
await plugins.initializePlugins();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settingsState.devMode) {
|
|
||||||
initializeHideSensitiveToggle();
|
|
||||||
}
|
|
||||||
|
|
||||||
console.info(
|
console.info(
|
||||||
"[BetterSEQTA+] Successfully initialised BetterSEQTA+, starting to load assets.",
|
"[BetterSEQTA+] Successfully initialised BetterSEQTA+, starting to load assets.",
|
||||||
);
|
)
|
||||||
} catch (error) {
|
} catch (error: any) {
|
||||||
console.error(error);
|
console.error(error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
function replaceIcons() {
|
|
||||||
document
|
|
||||||
.querySelectorAll<HTMLLinkElement>('link[rel*="icon"]')
|
|
||||||
.forEach((link) => {
|
|
||||||
if (link.href !== icon48) {
|
|
||||||
link.href = icon48;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
+187
-321
@@ -1,338 +1,152 @@
|
|||||||
import browser from "webextension-polyfill";
|
import browser from 'webextension-polyfill'
|
||||||
import type { SettingsState } from "@/types/storage";
|
import type { SettingsState } from "@/types/storage";
|
||||||
import { fetchNews } from "./background/news";
|
import { fetchNews } from './background/news';
|
||||||
|
|
||||||
function reloadSeqtaPages() {
|
function reloadSeqtaPages() {
|
||||||
const result = browser.tabs.query({});
|
const result = browser.tabs.query({})
|
||||||
function open(tabs: any) {
|
function open (tabs: any) {
|
||||||
for (let tab of tabs) {
|
for (let tab of tabs) {
|
||||||
if (
|
if (tab.title.includes('SEQTA Learn')) {
|
||||||
tab.title?.includes("SEQTA Learn") ||
|
|
||||||
tab.title?.includes("SEQTA Engage")
|
|
||||||
) {
|
|
||||||
browser.tabs.reload(tab.id);
|
browser.tabs.reload(tab.id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
result.then(open, console.error);
|
result.then(open, console.error)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Callback for sending a response back to the message sender */
|
// @ts-ignore
|
||||||
type MessageSender = { (response?: unknown): void };
|
browser.runtime.onMessage.addListener((request: any, _: any, sendResponse: (response?: any) => void) => {
|
||||||
|
|
||||||
function handleFetchThemes(request: any, sendResponse: MessageSender): boolean {
|
switch (request.type) {
|
||||||
const { token } = request;
|
case 'reloadTabs':
|
||||||
const apiUrl = `https://betterseqta.org/api/themes?type=betterseqta&limit=100&nocache=${Date.now()}`;
|
reloadSeqtaPages();
|
||||||
const githubUrl = `https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Themes/main/store/themes.json?nocache=${Date.now()}`;
|
break;
|
||||||
const headers: Record<string, string> = {};
|
|
||||||
if (token) headers["Authorization"] = `Bearer ${token}`;
|
case 'extensionPages':
|
||||||
fetch(apiUrl, { cache: "no-store", headers })
|
browser.tabs.query({}).then(function (tabs) {
|
||||||
.then((r) => r.json())
|
for (let tab of tabs) {
|
||||||
.then(sendResponse)
|
if (tab.url?.includes('chrome-extension://')) {
|
||||||
.catch((err) => {
|
browser.tabs.sendMessage(tab.id!, request);
|
||||||
console.warn("[Background] fetchThemes API failed, trying GitHub fallback:", err?.message);
|
|
||||||
fetch(githubUrl, { cache: "no-store" })
|
|
||||||
.then((r) => r.json())
|
|
||||||
.then((data) => sendResponse({ success: true, data: { themes: data.themes ?? [] } }))
|
|
||||||
.catch((fallbackErr) => {
|
|
||||||
console.error("[Background] fetchThemes GitHub fallback error:", fallbackErr);
|
|
||||||
sendResponse({ success: false, error: fallbackErr?.message });
|
|
||||||
});
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleFetchThemeDetails(request: any, sendResponse: MessageSender): boolean {
|
|
||||||
const { themeId, token } = request;
|
|
||||||
if (!themeId || typeof themeId !== "string") {
|
|
||||||
sendResponse({ success: false, error: "Missing themeId" });
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
const headers: Record<string, string> = {};
|
|
||||||
if (token) headers["Authorization"] = `Bearer ${token}`;
|
|
||||||
fetch(`https://betterseqta.org/api/themes/${themeId}`, { cache: "no-store", headers })
|
|
||||||
.then((r) => r.json())
|
|
||||||
.then(sendResponse)
|
|
||||||
.catch((err) => {
|
|
||||||
console.error("[Background] fetchThemeDetails error:", err);
|
|
||||||
sendResponse({ success: false, error: err?.message });
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleFetchFromUrl(request: any, sendResponse: MessageSender): boolean {
|
|
||||||
const { url } = request;
|
|
||||||
if (!url || typeof url !== "string") {
|
|
||||||
sendResponse({ error: "Missing url" });
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
fetch(url, { cache: "no-store" })
|
|
||||||
.then((r) => r.json())
|
|
||||||
.then((data) => sendResponse({ data }))
|
|
||||||
.catch((err) => {
|
|
||||||
console.error("[Background] fetchFromUrl error:", err);
|
|
||||||
sendResponse({ error: err?.message });
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function parseJsonResponse(r: Response): Promise<any> {
|
|
||||||
const text = await r.text();
|
|
||||||
try {
|
|
||||||
return text ? JSON.parse(text) : {};
|
|
||||||
} catch {
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleCloudReserveClient(request: any, sendResponse: MessageSender): boolean {
|
|
||||||
const redirect_uri = request.redirect_uri ?? "https://accounts.betterseqta.org/auth/bsplus/callback";
|
|
||||||
fetch("https://accounts.betterseqta.org/api/bsplus/client/reserve", {
|
|
||||||
method: "POST",
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
body: JSON.stringify({ redirect_uri }),
|
|
||||||
})
|
|
||||||
.then(async (r) => {
|
|
||||||
const data = await parseJsonResponse(r);
|
|
||||||
if (!r.ok) sendResponse({ error: data?.error ?? `Reserve failed (${r.status})` });
|
|
||||||
else sendResponse(data);
|
|
||||||
})
|
|
||||||
.catch((err) => {
|
|
||||||
console.error("[Background] cloudReserveClient error:", err);
|
|
||||||
sendResponse({ error: err?.message ?? "Network error" });
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleCloudLogin(request: any, sendResponse: MessageSender): boolean {
|
|
||||||
const { client_id, redirect_uri, login, password } = request;
|
|
||||||
if (!client_id || !redirect_uri || !login || !password) {
|
|
||||||
sendResponse({ error: "Missing client_id, redirect_uri, login, or password" });
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
fetch("https://accounts.betterseqta.org/api/bsplus/login", {
|
|
||||||
method: "POST",
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
body: JSON.stringify({ client_id, redirect_uri, login, password }),
|
|
||||||
})
|
|
||||||
.then(async (r) => {
|
|
||||||
const data = await parseJsonResponse(r);
|
|
||||||
if (!r.ok) sendResponse({ error: data?.error ?? "Login failed" });
|
|
||||||
else sendResponse(data);
|
|
||||||
})
|
|
||||||
.catch((err) => {
|
|
||||||
console.error("[Background] cloudLogin error:", err);
|
|
||||||
sendResponse({ error: err?.message ?? "Network error" });
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleCloudRefresh(request: any, sendResponse: MessageSender): boolean {
|
|
||||||
const { refresh_token, client_id } = request;
|
|
||||||
if (!refresh_token || !client_id) {
|
|
||||||
sendResponse({ error: "Missing refresh_token or client_id" });
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
fetch("https://accounts.betterseqta.org/api/bsplus/refresh", {
|
|
||||||
method: "POST",
|
|
||||||
headers: { "Content-Type": "application/json" },
|
|
||||||
body: JSON.stringify({ refresh_token, client_id }),
|
|
||||||
})
|
|
||||||
.then(async (r) => {
|
|
||||||
const data = await parseJsonResponse(r);
|
|
||||||
if (!r.ok) sendResponse({ error: data?.error ?? "Refresh failed" });
|
|
||||||
else sendResponse(data);
|
|
||||||
})
|
|
||||||
.catch((err) => {
|
|
||||||
console.error("[Background] cloudRefresh error:", err);
|
|
||||||
sendResponse({ error: err?.message ?? "Network error" });
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleCloudFavorite(request: any, sendResponse: MessageSender): boolean {
|
|
||||||
const { themeId, token, action } = request;
|
|
||||||
if (!themeId || !token) {
|
|
||||||
sendResponse({ success: false, error: "Theme ID and token required" });
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
const isFavorite = action === "favorite";
|
|
||||||
fetch(`https://betterseqta.org/api/themes/${themeId}/favorite`, {
|
|
||||||
method: isFavorite ? "POST" : "DELETE",
|
|
||||||
headers: { Authorization: `Bearer ${token}` },
|
|
||||||
})
|
|
||||||
.then((r) => r.json())
|
|
||||||
.then(sendResponse)
|
|
||||||
.catch((err) => {
|
|
||||||
console.error("[Background] cloudFavorite error:", err);
|
|
||||||
sendResponse({ success: false, error: err?.message });
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Handler for a message type; receives request, sendResponse, and optional sender (for tab routing) */
|
|
||||||
type MessageHandler = {
|
|
||||||
(request: any, sendResponse: MessageSender, sender?: browser.Runtime.MessageSender): boolean | void;
|
|
||||||
};
|
|
||||||
|
|
||||||
function isSeqtaOrigin(origin: string): boolean {
|
|
||||||
try {
|
|
||||||
const u = new URL(origin);
|
|
||||||
return u.hostname.includes("seqta") || u.hostname.endsWith(".edu.au");
|
|
||||||
} catch {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const MESSAGE_HANDLERS: Record<string, MessageHandler> = {
|
|
||||||
reloadTabs: () => reloadSeqtaPages(),
|
|
||||||
extensionPages: (req) => {
|
|
||||||
browser.tabs.query({}).then((tabs) => {
|
|
||||||
for (const tab of tabs) {
|
|
||||||
if (tab.url?.includes("chrome-extension://")) browser.tabs.sendMessage(tab.id!, req);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
currentTab: (req, sendResponse) => {
|
|
||||||
browser.tabs.query({ active: true, currentWindow: true }).then((tabs) => {
|
|
||||||
browser.tabs.sendMessage(tabs[0].id!, req).then(sendResponse);
|
|
||||||
});
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
githubTab: () => {
|
|
||||||
void browser.tabs.create({ url: "github.com/BetterSEQTA/BetterSEQTA-Plus" });
|
|
||||||
},
|
|
||||||
setDefaultStorage: () => SetStorageValue(getDefaultValues()),
|
|
||||||
sendNews: (req, sendResponse) => {
|
|
||||||
fetchNews(req.source ?? "australia", sendResponse);
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
fetchThemes: handleFetchThemes,
|
|
||||||
fetchThemeDetails: handleFetchThemeDetails,
|
|
||||||
fetchFromUrl: handleFetchFromUrl,
|
|
||||||
cloudReserveClient: handleCloudReserveClient,
|
|
||||||
cloudLogin: handleCloudLogin,
|
|
||||||
cloudRefresh: handleCloudRefresh,
|
|
||||||
cloudFavorite: handleCloudFavorite,
|
|
||||||
getSeqtaSession: (req: { baseUrl?: string }, sendResponse: MessageSender, sender?: browser.Runtime.MessageSender) => {
|
|
||||||
(async () => {
|
|
||||||
try {
|
|
||||||
let tabId = sender?.tab?.id;
|
|
||||||
let originForCheck: string | undefined = req.baseUrl;
|
|
||||||
|
|
||||||
if (tabId == null) {
|
|
||||||
const tabs = await browser.tabs.query({ active: true, lastFocusedWindow: true });
|
|
||||||
const tab = tabs[0];
|
|
||||||
if (!tab?.id || !tab.url) {
|
|
||||||
sendResponse({ appLink: null });
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
tabId = tab.id;
|
|
||||||
if (!originForCheck) originForCheck = new URL(tab.url).origin;
|
|
||||||
} else if (!originForCheck && sender?.tab?.url) {
|
|
||||||
originForCheck = new URL(sender.tab.url).origin;
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'currentTab':
|
||||||
|
browser.tabs.query({ active: true, currentWindow: true }).then(function (tabs) {
|
||||||
|
browser.tabs.sendMessage(tabs[0].id!, request).then(function (response) {
|
||||||
|
sendResponse(response);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return true;
|
||||||
|
|
||||||
if (!originForCheck || !isSeqtaOrigin(originForCheck)) {
|
case 'githubTab':
|
||||||
sendResponse({ appLink: null });
|
browser.tabs.create({ url: 'github.com/BetterSEQTA/BetterSEQTA-Plus' });
|
||||||
return;
|
break;
|
||||||
}
|
|
||||||
|
case 'setDefaultStorage':
|
||||||
|
SetStorageValue(DefaultValues);
|
||||||
|
break;
|
||||||
|
|
||||||
const reply = (await browser.tabs.sendMessage(tabId, { type: "fetchSeqtaAppLink" })) as
|
case 'sendNews':
|
||||||
| { appLink?: string | null }
|
fetchNews(request.source ?? 'australia', sendResponse);
|
||||||
| undefined;
|
return true;
|
||||||
const appLink = typeof reply?.appLink === "string" && reply.appLink.length > 0 ? reply.appLink : null;
|
|
||||||
sendResponse({ appLink });
|
|
||||||
} catch (err) {
|
|
||||||
console.error("[Background] getSeqtaSession error:", err);
|
|
||||||
sendResponse({ appLink: null });
|
|
||||||
}
|
|
||||||
})();
|
|
||||||
return true;
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
browser.runtime.onMessage.addListener(
|
|
||||||
// @ts-ignore - OnMessageListener expects literal true for async, we return boolean
|
|
||||||
(request: any, sender: browser.Runtime.MessageSender, sendResponse: MessageSender) => {
|
|
||||||
const handler = MESSAGE_HANDLERS[request.type];
|
|
||||||
if (handler) {
|
|
||||||
const result = handler(request, sendResponse, sender);
|
|
||||||
return result === true;
|
|
||||||
}
|
|
||||||
console.log("Unknown request type");
|
|
||||||
return false;
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
function detectLowEndDevice(): boolean {
|
|
||||||
// Check for low-end hardware indicators
|
|
||||||
const lowCoreCount = navigator.hardwareConcurrency && navigator.hardwareConcurrency < 4;
|
|
||||||
const lowMemory = (navigator as any).deviceMemory && (navigator as any).deviceMemory <= 2;
|
|
||||||
|
|
||||||
return lowCoreCount || lowMemory;
|
default:
|
||||||
}
|
console.log('Unknown request type');
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
function getDefaultValues(): SettingsState {
|
const DefaultValues: SettingsState = {
|
||||||
const isLowEndDevice = detectLowEndDevice();
|
onoff: true,
|
||||||
|
animatedbk: true,
|
||||||
return {
|
bksliderinput: "50",
|
||||||
onoff: true,
|
transparencyEffects: false,
|
||||||
animatedbk: true,
|
lessonalert: true,
|
||||||
bksliderinput: "50",
|
defaultmenuorder: [],
|
||||||
transparencyEffects: false,
|
menuitems: {
|
||||||
lessonalert: true,
|
assessments: { toggle: true },
|
||||||
defaultmenuorder: [],
|
courses: { toggle: true },
|
||||||
menuitems: {
|
dashboard: { toggle: true },
|
||||||
assessments: { toggle: true },
|
documents: { toggle: true },
|
||||||
courses: { toggle: true },
|
forums: { toggle: true },
|
||||||
dashboard: { toggle: true },
|
goals: { toggle: true },
|
||||||
documents: { toggle: true },
|
home: { toggle: true },
|
||||||
forums: { toggle: true },
|
messages: { toggle: true },
|
||||||
goals: { toggle: true },
|
myed: { toggle: true },
|
||||||
home: { toggle: true },
|
news: { toggle: true },
|
||||||
messages: { toggle: true },
|
notices: { toggle: true },
|
||||||
myed: { toggle: true },
|
portals: { toggle: true },
|
||||||
news: { toggle: true },
|
reports: { toggle: true },
|
||||||
notices: { toggle: true },
|
settings: { toggle: true },
|
||||||
portals: { toggle: true },
|
timetable: { toggle: true },
|
||||||
reports: { toggle: true },
|
welcome: { toggle: true },
|
||||||
settings: { toggle: true },
|
},
|
||||||
timetable: { toggle: true },
|
menuorder: [],
|
||||||
welcome: { toggle: true },
|
subjectfilters: {},
|
||||||
|
selectedTheme: '',
|
||||||
|
selectedColor: 'linear-gradient(40deg, rgba(201,61,0,1) 0%, RGBA(170, 5, 58, 1) 100%)',
|
||||||
|
originalSelectedColor: '',
|
||||||
|
DarkMode: true,
|
||||||
|
animations: true,
|
||||||
|
assessmentsAverage: true,
|
||||||
|
defaultPage: 'home',
|
||||||
|
shortcuts: [
|
||||||
|
{
|
||||||
|
name: 'YouTube',
|
||||||
|
enabled: false,
|
||||||
},
|
},
|
||||||
menuorder: [],
|
{
|
||||||
subjectfilters: {},
|
name: 'Outlook',
|
||||||
selectedTheme: "",
|
enabled: true,
|
||||||
selectedColor:
|
},
|
||||||
"linear-gradient(40deg, rgba(201,61,0,1) 0%, RGBA(170, 5, 58, 1) 100%)",
|
{
|
||||||
originalSelectedColor: "",
|
name: 'Office',
|
||||||
DarkMode: true,
|
enabled: true,
|
||||||
animations: !isLowEndDevice,
|
},
|
||||||
assessmentsAverage: false,
|
{
|
||||||
defaultPage: "home",
|
name: 'Spotify',
|
||||||
shortcuts: [
|
enabled: false,
|
||||||
{
|
},
|
||||||
name: "Outlook",
|
{
|
||||||
enabled: true,
|
name: 'Google',
|
||||||
},
|
enabled: true,
|
||||||
{
|
},
|
||||||
name: "Office",
|
{
|
||||||
enabled: true,
|
name: 'DuckDuckGo',
|
||||||
},
|
enabled: false,
|
||||||
{
|
},
|
||||||
name: "Google",
|
{
|
||||||
enabled: true,
|
name: 'Cool Math Games',
|
||||||
},
|
enabled: false,
|
||||||
],
|
},
|
||||||
customshortcuts: [],
|
{
|
||||||
lettergrade: false,
|
name: 'SACE',
|
||||||
newsSource: "australia",
|
enabled: false,
|
||||||
iconOnlySidebar: false,
|
},
|
||||||
adaptiveThemeColour: false,
|
{
|
||||||
adaptiveThemeGradient: false,
|
name: 'Google Scholar',
|
||||||
};
|
enabled: false,
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
name: 'Gmail',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Netflix',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Education Perfect',
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
customshortcuts: [],
|
||||||
|
lettergrade: false,
|
||||||
|
newsSource: 'australia',
|
||||||
|
};
|
||||||
|
|
||||||
function SetStorageValue(object: any) {
|
function SetStorageValue(object: any) {
|
||||||
for (var i in object) {
|
for (var i in object) {
|
||||||
@@ -340,11 +154,63 @@ function SetStorageValue(object: any) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
browser.runtime.onInstalled.addListener(function (event) {
|
function convertBksliderToSpeed(bksliderinput: number): number {
|
||||||
browser.storage.local.remove(["justupdated"]);
|
const minBase = 50;
|
||||||
browser.storage.local.remove(["data"]);
|
const maxBase = 150;
|
||||||
|
|
||||||
if (event.reason == "install" || event.reason == "update") {
|
const scaledValue = 2 + ((maxBase - bksliderinput) / (maxBase - minBase)) ** 4;
|
||||||
|
const baseSpeed = 3;
|
||||||
|
|
||||||
|
const speed = baseSpeed / scaledValue;
|
||||||
|
return speed;
|
||||||
|
}
|
||||||
|
|
||||||
|
async function migrateLegacySettings() {
|
||||||
|
const storage = await browser.storage.local.get(null) as unknown as SettingsState;
|
||||||
|
|
||||||
|
// Animated Background Migration
|
||||||
|
if ('animatedbk' in storage || 'bksliderinput' in storage) {
|
||||||
|
const animatedSettings = {
|
||||||
|
enabled: storage.animatedbk ?? true,
|
||||||
|
speed: storage.bksliderinput ? convertBksliderToSpeed(parseFloat(storage.bksliderinput)) : 1
|
||||||
|
};
|
||||||
|
await browser.storage.local.set({ 'plugin.animated-background.settings': animatedSettings });
|
||||||
|
}
|
||||||
|
|
||||||
|
// Assessments Average Migration
|
||||||
|
if ('assessmentsAverage' in storage || 'lettergrade' in storage) {
|
||||||
|
const assessmentsSettings = {
|
||||||
|
enabled: storage.assessmentsAverage ?? true,
|
||||||
|
lettergrade: storage.lettergrade ?? false
|
||||||
|
};
|
||||||
|
await browser.storage.local.set({ 'plugin.assessments-average.settings': assessmentsSettings });
|
||||||
|
}
|
||||||
|
|
||||||
|
if ('selectedTheme' in storage) {
|
||||||
|
const themesSettings = { enabled: true };
|
||||||
|
await browser.storage.local.set({ 'plugin.themes.settings': themesSettings });
|
||||||
|
}
|
||||||
|
if (storage.notificationCollector !== false) {
|
||||||
|
await browser.storage.local.set({ 'plugin.notificationCollector.settings': { enabled: true } });
|
||||||
|
} else {
|
||||||
|
await browser.storage.local.set({ 'plugin.notificationCollector.settings': { enabled: false } });
|
||||||
|
}
|
||||||
|
|
||||||
|
const keysToRemove = [
|
||||||
|
'animatedbk',
|
||||||
|
'bksliderinput',
|
||||||
|
'assessmentsAverage',
|
||||||
|
'lettergrade'
|
||||||
|
];
|
||||||
|
await browser.storage.local.remove(keysToRemove);
|
||||||
|
}
|
||||||
|
|
||||||
|
browser.runtime.onInstalled.addListener(function (event) {
|
||||||
|
browser.storage.local.remove(['justupdated']);
|
||||||
|
browser.storage.local.remove(['data']);
|
||||||
|
|
||||||
|
if ( event.reason == 'install' || event.reason == 'update' ) {
|
||||||
browser.storage.local.set({ justupdated: true });
|
browser.storage.local.set({ justupdated: true });
|
||||||
|
migrateLegacySettings();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
+23
-61
@@ -1,36 +1,17 @@
|
|||||||
import Parser from "rss-parser";
|
import Parser from 'rss-parser';
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetches news articles specifically for Australia from the NewsAPI.
|
|
||||||
*
|
|
||||||
* This function handles a specific case for fetching Australian news. It includes a
|
|
||||||
* mechanism to retry the fetch operation by appending "%00" to the URL if a
|
|
||||||
* rate limit error (`response.code == "rateLimited"`) is encountered. This is
|
|
||||||
* likely a workaround for cache-busting or bypassing certain rate-limiting measures.
|
|
||||||
*
|
|
||||||
* @param {string} url The NewsAPI URL to fetch Australian news from.
|
|
||||||
* @param {any} sendResponse A callback function (likely from a browser extension message listener)
|
|
||||||
* to send the fetched news data back to the caller.
|
|
||||||
* It's called with an object like `{ news: responseData }`.
|
|
||||||
*/
|
|
||||||
const fetchAustraliaNews = async (url: string, sendResponse: any) => {
|
const fetchAustraliaNews = async (url: string, sendResponse: any) => {
|
||||||
fetch(url)
|
fetch(url)
|
||||||
.then((result) => result.json())
|
.then((result) => result.json())
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
if (response.code == "rateLimited") {
|
if (response.code == 'rateLimited') {
|
||||||
fetchAustraliaNews((url += "%00"), sendResponse);
|
fetchAustraliaNews(url += '%00', sendResponse);
|
||||||
} else {
|
} else {
|
||||||
sendResponse({ news: response });
|
sendResponse({ news: response });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* A record mapping lowercase country codes (e.g., "usa", "canada") to an array
|
|
||||||
* of RSS feed URLs for news sources in that country.
|
|
||||||
*
|
|
||||||
* @type {Record<string, string[]>}
|
|
||||||
*/
|
|
||||||
const rssFeedsByCountry: Record<string, string[]> = {
|
const rssFeedsByCountry: Record<string, string[]> = {
|
||||||
usa: [
|
usa: [
|
||||||
"https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
|
"https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml",
|
||||||
@@ -50,13 +31,13 @@ const rssFeedsByCountry: Record<string, string[]> = {
|
|||||||
"https://critica.com.pa/rss.xml",
|
"https://critica.com.pa/rss.xml",
|
||||||
"https://www.panamaamerica.com.pa/rss.xml",
|
"https://www.panamaamerica.com.pa/rss.xml",
|
||||||
"https://noticiassin.com/feed/",
|
"https://noticiassin.com/feed/",
|
||||||
"https://elcapitalfinanciero.com/feed/",
|
"https://elcapitalfinanciero.com/feed/"
|
||||||
],
|
],
|
||||||
canada: [
|
canada: [
|
||||||
"https://www.cbc.ca/cmlink/rss-topstories",
|
"https://www.cbc.ca/cmlink/rss-topstories",
|
||||||
"https://calgaryherald.com/feed",
|
"https://calgaryherald.com/feed",
|
||||||
"https://ottawacitizen.com/feed",
|
"https://ottawacitizen.com/feed",
|
||||||
"https://www.montrealgazette.com/feed",
|
"https://www.montrealgazette.com/feed"
|
||||||
],
|
],
|
||||||
singapore: [
|
singapore: [
|
||||||
"https://www.straitstimes.com/news/singapore/rss.xml",
|
"https://www.straitstimes.com/news/singapore/rss.xml",
|
||||||
@@ -68,45 +49,25 @@ const rssFeedsByCountry: Record<string, string[]> = {
|
|||||||
],
|
],
|
||||||
japan: [
|
japan: [
|
||||||
"https://www3.nhk.or.jp/nhkworld/en/news/feeds/",
|
"https://www3.nhk.or.jp/nhkworld/en/news/feeds/",
|
||||||
"https://news.livedoor.com/topics/rss/int.xml",
|
"https://news.livedoor.com/topics/rss/int.xml"
|
||||||
|
],
|
||||||
|
netherlands: [
|
||||||
|
"https://www.dutchnews.nl/feed/",
|
||||||
|
"https://www.nrc.nl/rss/"
|
||||||
],
|
],
|
||||||
netherlands: ["https://www.dutchnews.nl/feed/", "https://www.nrc.nl/rss/"],
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
export async function fetchNews(source: string, sendResponse: any) {
|
||||||
* Fetches news articles based on a specified source.
|
if (source === "australia") {
|
||||||
*
|
|
||||||
* The source can be:
|
|
||||||
* 1. The string "australia": Fetches news from Australian sources via NewsAPI,
|
|
||||||
* handled by the `fetchAustraliaNews` function.
|
|
||||||
* 2. A lowercase country code (e.g., "usa", "canada"): Fetches news from a predefined
|
|
||||||
* list of RSS feeds for that country, as specified in `rssFeedsByCountry`.
|
|
||||||
* 3. A direct RSS feed URL (starting with "http"): Fetches news directly from this URL.
|
|
||||||
*
|
|
||||||
* The fetched articles are then sent back to the caller using the `sendResponse` callback.
|
|
||||||
*
|
|
||||||
* @param {string} source The news source identifier. This can be "australia", a
|
|
||||||
* lowercase country code, or a direct RSS feed URL.
|
|
||||||
* @param {any} sendResponse A callback function (typically from a browser extension
|
|
||||||
* message listener, like `chrome.runtime.onMessage`)
|
|
||||||
* used to send the fetched news data back to the caller.
|
|
||||||
* It's called with an object like `{ news: { articles: [...] } }`.
|
|
||||||
*/
|
|
||||||
export async function fetchNews(source: string | undefined, sendResponse: any) {
|
|
||||||
const normalizedSource = typeof source === "string" && source.trim()
|
|
||||||
? source.trim()
|
|
||||||
: "australia";
|
|
||||||
|
|
||||||
if (normalizedSource === "australia") {
|
|
||||||
const date = new Date();
|
const date = new Date();
|
||||||
|
|
||||||
const from =
|
const from =
|
||||||
date.getFullYear() +
|
date.getFullYear() +
|
||||||
"-" +
|
'-' +
|
||||||
(date.getMonth() + 1) +
|
(date.getMonth() + 1) +
|
||||||
"-" +
|
'-' +
|
||||||
(date.getDate() - 5);
|
(date.getDate() - 5);
|
||||||
|
|
||||||
const url = `https://newsapi.org/v2/everything?domains=abc.net.au&from=${from}&apiKey=17c0da766ba347c89d094449504e3080`;
|
const url = `https://newsapi.org/v2/everything?domains=abc.net.au&from=${from}&apiKey=17c0da766ba347c89d094449504e3080`;
|
||||||
fetchAustraliaNews(url, sendResponse);
|
fetchAustraliaNews(url, sendResponse);
|
||||||
|
|
||||||
@@ -115,15 +76,16 @@ export async function fetchNews(source: string | undefined, sendResponse: any) {
|
|||||||
|
|
||||||
const parser = new Parser();
|
const parser = new Parser();
|
||||||
let feeds: string[];
|
let feeds: string[];
|
||||||
console.log("fetchNews", normalizedSource);
|
console.log('fetchNews', source)
|
||||||
|
|
||||||
if (rssFeedsByCountry[normalizedSource.toLowerCase()]) {
|
if (rssFeedsByCountry[source.toLowerCase()]) {
|
||||||
feeds = rssFeedsByCountry[normalizedSource.toLowerCase()];
|
// If the source is a country, fetch from predefined feeds
|
||||||
} else if (normalizedSource.startsWith("http")) {
|
feeds = rssFeedsByCountry[source.toLowerCase()];
|
||||||
feeds = [normalizedSource];
|
} else if (source.startsWith("http")) {
|
||||||
|
// If the source is a URL, use it directly
|
||||||
|
feeds = [source];
|
||||||
} else {
|
} else {
|
||||||
console.warn("[BetterSEQTA+] Invalid news source, falling back to Australia", normalizedSource);
|
throw new Error("Invalid source. Provide a country code or a valid RSS feed URL.");
|
||||||
return fetchNews("australia", sendResponse);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const articlesPromises = feeds.map(async (feedUrl) => {
|
const articlesPromises = feeds.map(async (feedUrl) => {
|
||||||
|
|||||||
@@ -15,44 +15,12 @@
|
|||||||
* along with EvenBetterSEQTA. If not, see <https://www.gnu.org/licenses/>.
|
* along with EvenBetterSEQTA. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@use "injected/popup.scss";
|
@use 'injected/popup.scss';
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "Roboto";
|
|
||||||
src: url("https://fonts.gstatic.com/s/roboto/v50/KFO7CnqEu92Fr1ME7kSn66aGLdTylUAMa3yUBA.woff2")
|
|
||||||
format("woff2");
|
|
||||||
font-weight: 700;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: swap;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "IconFamily";
|
|
||||||
src: url("@/resources/fonts/IconFamily.woff") format("woff");
|
|
||||||
font-weight: normal;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
@layer base, override;
|
|
||||||
|
|
||||||
@layer override {
|
|
||||||
* {
|
|
||||||
font-family: Rubik, sans-serif !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.iconFamily,
|
|
||||||
.iconFamily *,
|
|
||||||
[class~="iconFamily"],
|
|
||||||
[class~="iconFamily"] * {
|
|
||||||
font-family: "IconFamily" !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background: #161616 !important;
|
background: #161616 !important;
|
||||||
background-color: #161616;
|
background-color: #161616;
|
||||||
font-family: Roboto, system-ui, -apple-system, sans-serif !important;
|
font-family: Rubik, Roboto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip svg {
|
.tooltip svg {
|
||||||
@@ -109,9 +77,7 @@ html {
|
|||||||
transform-origin: top;
|
transform-origin: top;
|
||||||
transition: transform 0.2s;
|
transition: transform 0.2s;
|
||||||
}
|
}
|
||||||
body:has(.outside-container:not(.hide))
|
body:has(.outside-container:not(.hide)) #AddedSettings.tooltip:hover > .tooltiptext {
|
||||||
#AddedSettings.tooltip:hover
|
|
||||||
> .tooltiptext {
|
|
||||||
transform: scale(0);
|
transform: scale(0);
|
||||||
}
|
}
|
||||||
.assessmenttooltip svg {
|
.assessmenttooltip svg {
|
||||||
@@ -125,58 +91,4 @@ body:has(.outside-container:not(.hide))
|
|||||||
top: 115% !important;
|
top: 115% !important;
|
||||||
background: var(--text-primary) !important;
|
background: var(--text-primary) !important;
|
||||||
color: var(--theme-primary) !important;
|
color: var(--theme-primary) !important;
|
||||||
}
|
}
|
||||||
.fixed-tooltip {
|
|
||||||
display: inline-block;
|
|
||||||
z-index: 5 !important;
|
|
||||||
width: 28px;
|
|
||||||
background: none;
|
|
||||||
box-shadow: none;
|
|
||||||
padding: 2px;
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
.fixed-tooltip svg {
|
|
||||||
fill: var(--theme-primary);
|
|
||||||
}
|
|
||||||
.tooltiptext-fixed {
|
|
||||||
width: 120px;
|
|
||||||
transform: scale(0);
|
|
||||||
transition: transform 0.2s;
|
|
||||||
transform-origin: top;
|
|
||||||
background: var(--background-primary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
text-align: center;
|
|
||||||
border-radius: 6px;
|
|
||||||
padding: 2px;
|
|
||||||
position: fixed;
|
|
||||||
z-index: 1000;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
margin-left: -62px;
|
|
||||||
}
|
|
||||||
.tooltiptext-fixed::after {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
bottom: 100%;
|
|
||||||
left: 50%;
|
|
||||||
margin-left: -5px;
|
|
||||||
border-width: 5px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: transparent transparent var(--text-primary) transparent;
|
|
||||||
}
|
|
||||||
.tooltiptext-fixed.show {
|
|
||||||
transform: scale(1);
|
|
||||||
transform-origin: top;
|
|
||||||
transition: transform 0.2s;
|
|
||||||
}
|
|
||||||
.tooltiptext-fixed p:hover {
|
|
||||||
cursor: pointer;
|
|
||||||
background: rgba(0, 0, 0, 0.3) !important;
|
|
||||||
transition: 200ms;
|
|
||||||
}
|
|
||||||
.tooltiptext-fixed p {
|
|
||||||
border-radius: 8px !important;
|
|
||||||
padding-top: 2px;
|
|
||||||
padding-bottom: 2px;
|
|
||||||
margin: 2px;
|
|
||||||
}
|
|
||||||
@@ -1 +1 @@
|
|||||||
import "./documentload.scss";
|
import './documentload.scss';
|
||||||
|
|||||||
+3
-11
@@ -15,7 +15,7 @@
|
|||||||
* along with EvenBetterSEQTA. If not, see <https://www.gnu.org/licenses/>.
|
* along with EvenBetterSEQTA. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -25,9 +25,7 @@ body {
|
|||||||
span,
|
span,
|
||||||
body {
|
body {
|
||||||
color: white !important;
|
color: white !important;
|
||||||
text-shadow:
|
text-shadow: 1px 1px 2px #161616, 0 0 1em #161616;
|
||||||
1px 1px 2px #161616,
|
|
||||||
0 0 1em #161616;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@@ -113,10 +111,4 @@ body {
|
|||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
transition: text-shadow 0.5s;
|
transition: text-shadow 0.5s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.cke_panel_listItem > a {
|
|
||||||
&:hover {
|
|
||||||
background: #3d3d3e !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+319
-1069
File diff suppressed because it is too large
Load Diff
@@ -36,7 +36,5 @@
|
|||||||
transform-origin: 70% 0;
|
transform-origin: 70% 0;
|
||||||
will-change: opacity, transform;
|
will-change: opacity, transform;
|
||||||
transform: translateZ(0); // promotes GPU rendering
|
transform: translateZ(0); // promotes GPU rendering
|
||||||
transition:
|
transition: opacity 0.05s, transform 0.05s;
|
||||||
opacity 0.05s,
|
}
|
||||||
transform 0.05s;
|
|
||||||
}
|
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sub:has(ul > li.hasChildren.active) > .nav > .back {
|
.sub:has(ul>li.hasChildren.active) > .nav > .back {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -35,19 +35,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
#menu .sub {
|
#menu .sub {
|
||||||
transition: transform 0.3s ease, left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: transform 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu > ul:has(li.hasChildren.active) > li.active {
|
#menu > ul:has(li.hasChildren.active) > li.active {
|
||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Icon-only collapsed: submenu slides over narrow icons */
|
|
||||||
body.icon-only-sidebar:not(:has(#menu li.hasChildren.active)) #menu > ul:has(li.hasChildren.active) > li::before,
|
|
||||||
body.icon-only-sidebar:not(:has(#menu li.hasChildren.active)) #menu > ul ul:has(li.hasChildren.active) > li::before,
|
|
||||||
body.icon-only-sidebar:not(:has(#menu li.hasChildren.active)) #menu > ul:has(li.hasChildren.active) > li > label,
|
|
||||||
body.icon-only-sidebar:not(:has(#menu li.hasChildren.active)) #menu > ul:has(li.hasChildren.active) > li > svg,
|
|
||||||
body.icon-only-sidebar:not(:has(#menu li.hasChildren.active)) #menu > ul ul:has(li.hasChildren.active) > li > label,
|
|
||||||
body.icon-only-sidebar:not(:has(#menu li.hasChildren.active)) #menu > ul ul:has(li.hasChildren.active) > li > svg {
|
|
||||||
transform: translateX(-70px);
|
|
||||||
}
|
|
||||||
@@ -12,4 +12,4 @@ html:not(.dark) {
|
|||||||
--theme-primary: #ffffff;
|
--theme-primary: #ffffff;
|
||||||
--theme-secondary: #e5e7eb;
|
--theme-secondary: #e5e7eb;
|
||||||
--text-primary: black;
|
--text-primary: black;
|
||||||
}
|
}
|
||||||
@@ -8,6 +8,7 @@ html.transparencyEffects:not(.dark) {
|
|||||||
--background-secondary: rgba(229, 231, 235, 0.6);
|
--background-secondary: rgba(229, 231, 235, 0.6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
html.transparencyEffects {
|
html.transparencyEffects {
|
||||||
/* Background Fixes */
|
/* Background Fixes */
|
||||||
[class*="notifications__item___"],
|
[class*="notifications__item___"],
|
||||||
@@ -21,9 +22,6 @@ html.transparencyEffects {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Blurs */
|
/* Blurs */
|
||||||
.search,
|
|
||||||
.document,
|
|
||||||
.border,
|
|
||||||
.draggable,
|
.draggable,
|
||||||
.notice,
|
.notice,
|
||||||
[class*="BasicPanel__BasicPanel___"],
|
[class*="BasicPanel__BasicPanel___"],
|
||||||
@@ -39,33 +37,38 @@ html.transparencyEffects {
|
|||||||
[class*="LabelList__selected___"],
|
[class*="LabelList__selected___"],
|
||||||
.buttonChecklist,
|
.buttonChecklist,
|
||||||
.pane,
|
.pane,
|
||||||
.legacy-root button,
|
.legacy-root button, .legacy-root a,
|
||||||
.legacy-root a,
|
|
||||||
[class*="MessageList__MessageList___"] {
|
[class*="MessageList__MessageList___"] {
|
||||||
backdrop-filter: blur(80px);
|
backdrop-filter: blur(80px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.filter-select,
|
|
||||||
.uiShortText.search,
|
|
||||||
.report {
|
.report {
|
||||||
backdrop-filter: blur(10px) !important;
|
backdrop-filter: blur(10px) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu,
|
|
||||||
.kanban-column,
|
|
||||||
.whatsnewContainer,
|
.whatsnewContainer,
|
||||||
[class*="Message__Message___"] {
|
[class*="Message__Message___"] {
|
||||||
backdrop-filter: blur(50px);
|
backdrop-filter: blur(50px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#menu {
|
||||||
|
backdrop-filter: blur(20px);
|
||||||
|
}
|
||||||
|
|
||||||
.title > a {
|
.title > a {
|
||||||
backdrop-filter: blur(0px) !important;
|
backdrop-filter: blur(0px) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search,
|
||||||
|
.document,
|
||||||
|
.border {
|
||||||
|
backdrop-filter: blur(80px);
|
||||||
|
}
|
||||||
|
|
||||||
#main > .dashboard {
|
#main > .dashboard {
|
||||||
section,
|
section,
|
||||||
.dashlet {
|
.dashlet {
|
||||||
backdrop-filter: blur(8px);
|
backdrop-filter: blur(8px);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Vendored
+8
-8
@@ -1,11 +1,11 @@
|
|||||||
declare module "*.mp4";
|
declare module '*.mp4';
|
||||||
declare module "*.woff";
|
declare module '*.woff';
|
||||||
declare module "*.scss";
|
declare module '*.scss';
|
||||||
declare module "*.png";
|
declare module '*.png';
|
||||||
declare module "*.html";
|
declare module '*.html';
|
||||||
declare module "*.svelte";
|
declare module '*.svelte';
|
||||||
|
|
||||||
declare module "*?inlineWorker" {
|
declare module '*?inlineWorker' {
|
||||||
const value: () => Worker;
|
const value: () => Worker;
|
||||||
export default value;
|
export default value;
|
||||||
}
|
}
|
||||||
@@ -33,4 +33,4 @@ declare module "*.gif?base64" {
|
|||||||
declare module "*.svg?base64" {
|
declare module "*.svg?base64" {
|
||||||
const value: string;
|
const value: string;
|
||||||
export default value;
|
export default value;
|
||||||
}
|
}
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
{
|
|
||||||
"last_updated": "2024-06-15T12:00:00Z",
|
|
||||||
"whatsnew_html": "<div class=\"whatsnewTextContainer\" style=\"overflow-y: auto; font-size: 1.3rem; line-height: 1.6;\"><p>It has come to our attention that several schools have expressed concerns about BetterSEQTA+. This is very disheartening, so we have decided to release a statement on the situation.</p><p>To view our privacy policy, please click the <strong>shield icon</strong> in the settings menu, or <a href=\"https://betterseqta.org/privacy\" target=\"_blank\" rel=\"noopener noreferrer\" id=\"privacy-link\" style=\"color: inherit; text-decoration: underline; cursor: pointer; white-space: nowrap;\">click here</a>.</p><p style=\"font-weight: bold; margin-top: 15px;\">We never collect any information from you, and aim to provide the best features possible.</p></div>"
|
|
||||||
}
|
|
||||||
@@ -2,6 +2,6 @@
|
|||||||
let { onClick, text } = $props<{ onClick: () => void, text: string, [key: string]: any }>();
|
let { onClick, text } = $props<{ onClick: () => void, text: string, [key: string]: any }>();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<button onclick={onClick} class='px-5 py-1.5 text-[0.75rem] shadow-2xl border dark:bg-[#38373D]/50 bg-[#DDDDDD]/50 border-[#DDDDDD]/30 dark:border-[#38373D]/30 dark:text-white rounded-lg'>
|
<button onclick={onClick} class='px-4 py-1 text-[0.75rem] dark:bg-[#38373D] bg-[#DDDDDD] dark:text-white rounded-md'>
|
||||||
{text}
|
{text}
|
||||||
</button>
|
</button>
|
||||||
@@ -2,16 +2,6 @@ div:has(> #rbgcp-wrapper) {
|
|||||||
background: transparent !important;
|
background: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#rbgcp-inputs-wrap {
|
|
||||||
padding-top: 4px !important;
|
|
||||||
margin-bottom: -8px;
|
|
||||||
|
|
||||||
#rbgcp-hex-input,
|
|
||||||
#rbgcp-input {
|
|
||||||
height: 28px !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.dark {
|
.dark {
|
||||||
#rbgcp-wrapper {
|
#rbgcp-wrapper {
|
||||||
div[style="padding-top: 11px; position: relative;"] div {
|
div[style="padding-top: 11px; position: relative;"] div {
|
||||||
|
|||||||
@@ -81,20 +81,20 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if standalone}
|
{#if standalone}
|
||||||
<div class="h-auto overflow-clip rounded-xl">
|
<div class="h-auto rounded-xl overflow-clip">
|
||||||
<ReactAdapter customOnChange={customOnChange} customState={customState} savePresets={savePresets} el={ColourPicker} />
|
<ReactAdapter customOnChange={customOnChange} customState={customState} savePresets={savePresets} el={ColourPicker} />
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
||||||
<div
|
<div
|
||||||
bind:this={background}
|
bind:this={background}
|
||||||
class="flex absolute top-0 left-0 z-50 justify-center items-center w-full h-full shadow-2xl cursor-pointer bg-black/20 border border-[#DDDDDD]/30 dark:border-[#38373D]/30"
|
class="absolute top-0 left-0 z-50 flex items-center justify-center w-full h-full cursor-pointer bg-black/20"
|
||||||
onclick={handleBackgroundClick}
|
onclick={handleBackgroundClick}
|
||||||
onkeydown={(e) => { e.key === 'Enter' && handleBackgroundClick }}
|
onkeydown={(e) => { e.key === 'Enter' && handleBackgroundClick }}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
bind:this={content}
|
bind:this={content}
|
||||||
class="p-4 h-auto bg-white rounded-xl border shadow-lg cursor-auto dark:bg-zinc-800 border-zinc-100 dark:border-zinc-700"
|
class="h-auto p-4 bg-white border shadow-lg cursor-auto rounded-xl dark:bg-zinc-800 border-zinc-100 dark:border-zinc-700"
|
||||||
>
|
>
|
||||||
<ReactAdapter customOnChange={customOnChange} customState={customState} savePresets={savePresets} el={ColourPicker} />
|
<ReactAdapter customOnChange={customOnChange} customState={customState} savePresets={savePresets} el={ColourPicker} />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import ColorPicker from "react-best-gradient-color-picker";
|
import ColorPicker from "react-best-gradient-color-picker"
|
||||||
import { useEffect, useRef, useState } from "react";
|
import { useEffect, useRef, useState } from "react"
|
||||||
import { settingsState } from "@/seqta/utils/listeners/SettingsState.ts";
|
import { settingsState } from "@/seqta/utils/listeners/SettingsState.ts"
|
||||||
|
|
||||||
const defaultPresets = [
|
const defaultPresets = [
|
||||||
"linear-gradient(30deg, rgba(229,209,218,1) 0%, RGBA(235,169,202,1) 46%, rgba(214,155,162,1) 100%)",
|
"linear-gradient(30deg, rgba(229,209,218,1) 0%, RGBA(235,169,202,1) 46%, rgba(214,155,162,1) 100%)",
|
||||||
@@ -22,12 +22,12 @@ const defaultPresets = [
|
|||||||
"rgba(30, 64, 175, 0.89)",
|
"rgba(30, 64, 175, 0.89)",
|
||||||
"rgba(134, 25, 143, 1)",
|
"rgba(134, 25, 143, 1)",
|
||||||
"rgba(14, 165, 233, 0.9)",
|
"rgba(14, 165, 233, 0.9)",
|
||||||
];
|
]
|
||||||
|
|
||||||
interface PickerProps {
|
interface PickerProps {
|
||||||
customOnChange?: (color: string) => void;
|
customOnChange?: (color: string) => void
|
||||||
customState?: string;
|
customState?: string
|
||||||
savePresets?: boolean;
|
savePresets?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function Picker({
|
export default function Picker({
|
||||||
@@ -35,49 +35,37 @@ export default function Picker({
|
|||||||
customState,
|
customState,
|
||||||
savePresets = true,
|
savePresets = true,
|
||||||
}: PickerProps) {
|
}: PickerProps) {
|
||||||
const [customThemeColor, setCustomThemeColor] = useState<string | null>();
|
const [customThemeColor, setCustomThemeColor] = useState<string | null>()
|
||||||
const [presets, setPresets] = useState<string[]>();
|
const [presets, setPresets] = useState<string[]>()
|
||||||
|
|
||||||
const latestValuesRef = useRef({
|
const latestValuesRef = useRef({ customThemeColor, customOnChange, savePresets, presets });
|
||||||
customThemeColor,
|
|
||||||
customOnChange,
|
|
||||||
savePresets,
|
|
||||||
presets,
|
|
||||||
});
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (customState !== undefined && customState !== null) {
|
if (customState !== undefined && customState !== null) {
|
||||||
setCustomThemeColor(customState);
|
setCustomThemeColor(customState)
|
||||||
} else {
|
} else {
|
||||||
setCustomThemeColor(settingsState.selectedColor ?? null);
|
setCustomThemeColor(settingsState.selectedColor ?? null)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (presets === undefined) {
|
if (presets === undefined) {
|
||||||
const savedPresets = localStorage.getItem("colorPickerPresets");
|
const savedPresets = localStorage.getItem("colorPickerPresets")
|
||||||
setPresets(savedPresets ? JSON.parse(savedPresets) : defaultPresets);
|
setPresets(savedPresets ? JSON.parse(savedPresets) : defaultPresets)
|
||||||
}
|
}
|
||||||
}, []);
|
}, [])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
latestValuesRef.current = {
|
latestValuesRef.current = { customThemeColor, customOnChange, savePresets, presets };
|
||||||
customThemeColor,
|
|
||||||
customOnChange,
|
|
||||||
savePresets,
|
|
||||||
presets,
|
|
||||||
};
|
|
||||||
}, [customThemeColor, customOnChange, savePresets, presets]);
|
}, [customThemeColor, customOnChange, savePresets, presets]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
return () => {
|
return () => {
|
||||||
const { customThemeColor, customOnChange, savePresets, presets } =
|
const { customThemeColor, customOnChange, savePresets, presets } = latestValuesRef.current;
|
||||||
latestValuesRef.current;
|
if (!(customThemeColor && !customOnChange && savePresets && presets)) return;
|
||||||
if (!(customThemeColor && !customOnChange && savePresets && presets))
|
|
||||||
return;
|
|
||||||
|
|
||||||
// Only proceed if presets are different (avoid unnecessary updates)
|
// Only proceed if presets are different (avoid unnecessary updates)
|
||||||
const existingIndex = presets.indexOf(customThemeColor);
|
const existingIndex = presets.indexOf(customThemeColor);
|
||||||
let updatedPresets;
|
let updatedPresets;
|
||||||
|
|
||||||
if (existingIndex === 0) {
|
if (existingIndex === 0) {
|
||||||
// No need to update if the selected color is already the first element
|
// No need to update if the selected color is already the first element
|
||||||
return;
|
return;
|
||||||
@@ -90,33 +78,31 @@ export default function Picker({
|
|||||||
} else {
|
} else {
|
||||||
updatedPresets = [customThemeColor, ...presets].slice(0, 18);
|
updatedPresets = [customThemeColor, ...presets].slice(0, 18);
|
||||||
}
|
}
|
||||||
|
|
||||||
localStorage.setItem(
|
localStorage.setItem("colorPickerPresets", JSON.stringify(updatedPresets));
|
||||||
"colorPickerPresets",
|
}
|
||||||
JSON.stringify(updatedPresets),
|
}, [])
|
||||||
);
|
|
||||||
};
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (customThemeColor && !customOnChange) {
|
if (customThemeColor && !customOnChange) {
|
||||||
settingsState.selectedColor = customThemeColor;
|
settingsState.selectedColor = customThemeColor
|
||||||
}
|
}
|
||||||
}, [customThemeColor, customOnChange]);
|
}, [customThemeColor, customOnChange])
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ColorPicker
|
<ColorPicker
|
||||||
disableDarkMode={true}
|
disableDarkMode={true}
|
||||||
presets={presets}
|
presets={presets}
|
||||||
|
hideInputs={customOnChange ? false : true}
|
||||||
value={customThemeColor ?? ""}
|
value={customThemeColor ?? ""}
|
||||||
onChange={(color: string) => {
|
onChange={(color: string) => {
|
||||||
if (customOnChange) {
|
if (customOnChange) {
|
||||||
customOnChange(color);
|
customOnChange(color)
|
||||||
setCustomThemeColor(color);
|
setCustomThemeColor(color)
|
||||||
} else {
|
} else {
|
||||||
setCustomThemeColor(color);
|
setCustomThemeColor(color)
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,172 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { fade } from "svelte/transition";
|
|
||||||
import browser from "webextension-polyfill";
|
|
||||||
import QRCode from "qrcode";
|
|
||||||
import { portal } from "../utils/portal";
|
|
||||||
|
|
||||||
let showQrModal = $state(false);
|
|
||||||
let qrDataUrl = $state<string | null>(null);
|
|
||||||
let appLink = $state<string | null>(null);
|
|
||||||
let errorMessage = $state<string | null>(null);
|
|
||||||
let isLoading = $state(false);
|
|
||||||
let isStandalone = $state(false);
|
|
||||||
|
|
||||||
function isExtensionPage(): boolean {
|
|
||||||
return (
|
|
||||||
window.location.protocol === "chrome-extension:" ||
|
|
||||||
window.location.protocol === "moz-extension:"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function isSeqtaUrl(url: string): boolean {
|
|
||||||
try {
|
|
||||||
const u = new URL(url);
|
|
||||||
return u.hostname.includes("seqta") || u.hostname.endsWith(".edu.au");
|
|
||||||
} catch {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function normalizeBaseUrl(url: string): string {
|
|
||||||
try {
|
|
||||||
const u = new URL(url);
|
|
||||||
return u.origin;
|
|
||||||
} catch {
|
|
||||||
return url;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function getAppLink(): Promise<string | null> {
|
|
||||||
let baseUrl: string | undefined;
|
|
||||||
|
|
||||||
if (isExtensionPage()) {
|
|
||||||
baseUrl = undefined;
|
|
||||||
} else {
|
|
||||||
baseUrl = normalizeBaseUrl(window.location.href);
|
|
||||||
if (!isSeqtaUrl(baseUrl)) return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { appLink: link } = (await browser.runtime.sendMessage({
|
|
||||||
type: "getSeqtaSession",
|
|
||||||
baseUrl,
|
|
||||||
})) as { appLink: string | null };
|
|
||||||
return link ?? null;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function generateQrCode() {
|
|
||||||
errorMessage = null;
|
|
||||||
qrDataUrl = null;
|
|
||||||
isLoading = true;
|
|
||||||
|
|
||||||
try {
|
|
||||||
isStandalone = isExtensionPage();
|
|
||||||
const link = await getAppLink();
|
|
||||||
|
|
||||||
if (!link) {
|
|
||||||
if (isStandalone) {
|
|
||||||
errorMessage =
|
|
||||||
"Open SEQTA Learn in a tab and log in, then open settings from that tab to generate a QR code.";
|
|
||||||
} else {
|
|
||||||
errorMessage = "Please log in to SEQTA Learn first.";
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const dataUrl = await QRCode.toDataURL(link, { width: 256, margin: 2 });
|
|
||||||
appLink = link;
|
|
||||||
qrDataUrl = dataUrl;
|
|
||||||
showQrModal = true;
|
|
||||||
} catch (err) {
|
|
||||||
console.error("[ConnectMobileApp] Failed to generate QR:", err);
|
|
||||||
errorMessage = "Failed to generate QR code. Please try again.";
|
|
||||||
} finally {
|
|
||||||
isLoading = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function closeModal() {
|
|
||||||
showQrModal = false;
|
|
||||||
qrDataUrl = null;
|
|
||||||
appLink = null;
|
|
||||||
errorMessage = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
function openAppLink() {
|
|
||||||
if (appLink) window.location.href = appLink;
|
|
||||||
}
|
|
||||||
|
|
||||||
function downloadQrImage() {
|
|
||||||
if (!qrDataUrl) return;
|
|
||||||
const link = document.createElement("a");
|
|
||||||
link.href = qrDataUrl;
|
|
||||||
link.download = "desqta-login-qr.png";
|
|
||||||
link.click();
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div class="flex flex-col gap-1 items-end">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={generateQrCode}
|
|
||||||
disabled={isLoading}
|
|
||||||
class="px-5 py-1.5 text-[0.75rem] text-nowrap shadow-2xl border dark:bg-[#38373D]/50 bg-[#DDDDDD]/50 border-[#DDDDDD]/30 dark:border-[#38373D]/30 dark:text-white rounded-lg disabled:opacity-50 disabled:cursor-not-allowed transition-opacity">
|
|
||||||
{isLoading ? "Generating..." : "Generate QR"}
|
|
||||||
</button>
|
|
||||||
{#if errorMessage}
|
|
||||||
<p class="text-xs text-right text-amber-600 dark:text-amber-400">{errorMessage}</p>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{#if showQrModal && qrDataUrl}
|
|
||||||
<div
|
|
||||||
use:portal
|
|
||||||
class="fixed cursor-auto inset-0 z-[10000] flex justify-center items-center bg-black/50 {isStandalone ? 'backdrop-blur-sm' : ''}"
|
|
||||||
role="button"
|
|
||||||
tabindex="-1"
|
|
||||||
onclick={(e) => {
|
|
||||||
if (e.target === e.currentTarget) closeModal();
|
|
||||||
}}
|
|
||||||
onkeydown={(e) => {
|
|
||||||
if (e.key === "Escape") closeModal();
|
|
||||||
}}
|
|
||||||
transition:fade={{ duration: 150 }}>
|
|
||||||
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
|
||||||
<div
|
|
||||||
class="p-6 mx-4 w-full max-w-sm bg-white rounded-2xl shadow-2xl dark:bg-zinc-800"
|
|
||||||
onclick={(e) => e.stopPropagation()}
|
|
||||||
onkeydown={(e) => e.stopPropagation()}>
|
|
||||||
<div class="flex justify-between items-center mb-4">
|
|
||||||
<h2 class="text-lg font-bold text-zinc-900 dark:text-white">Scan with DesQTA</h2>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={closeModal}
|
|
||||||
class="p-2 rounded-lg transition-colors text-zinc-500 hover:text-zinc-700 hover:bg-zinc-100 dark:hover:text-zinc-400 dark:hover:bg-zinc-700"
|
|
||||||
aria-label="Close">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-5 h-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="flex justify-center p-4 bg-white rounded-xl dark:bg-zinc-900">
|
|
||||||
<img src={qrDataUrl} alt="SEQTA Learn app link QR code" class="w-64 h-64" />
|
|
||||||
</div>
|
|
||||||
<div class="flex flex-col gap-2 mt-4">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={openAppLink}
|
|
||||||
class="px-4 py-2.5 w-full text-sm font-medium text-white bg-indigo-600 rounded-lg transition-colors dark:bg-indigo-500 hover:bg-indigo-700 dark:hover:bg-indigo-600">
|
|
||||||
Sign into DesQTA Desktop
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={downloadQrImage}
|
|
||||||
class="px-4 py-2 w-full text-xs font-medium rounded-lg border transition-colors text-zinc-500 dark:text-zinc-400 border-zinc-200 dark:border-zinc-600 hover:bg-zinc-50 dark:hover:bg-zinc-800/50">
|
|
||||||
Download QR as image
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<p class="mt-2 text-sm text-center text-zinc-600 dark:text-zinc-400">
|
|
||||||
Or scan this QR code with DesQTA on your phone.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { fade } from 'svelte/transition';
|
|
||||||
import { animate } from 'motion';
|
|
||||||
|
|
||||||
let { onConfirm, onCancel, title, message } = $props<{
|
|
||||||
onConfirm: () => void;
|
|
||||||
onCancel: () => void;
|
|
||||||
title: string;
|
|
||||||
message: string;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
let modalElement: HTMLElement;
|
|
||||||
|
|
||||||
$effect(() => {
|
|
||||||
if (modalElement) {
|
|
||||||
animate(
|
|
||||||
modalElement,
|
|
||||||
{ scale: [0.9, 1], opacity: [0, 1] },
|
|
||||||
{
|
|
||||||
type: 'spring',
|
|
||||||
stiffness: 300,
|
|
||||||
damping: 25
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="flex fixed inset-0 z-[10000] justify-center items-center bg-black/50"
|
|
||||||
style="position: fixed; top: 0; left: 0; right: 0; bottom: 0;"
|
|
||||||
onclick={(e) => {
|
|
||||||
if (e.target === e.currentTarget) onCancel();
|
|
||||||
}}
|
|
||||||
onkeydown={(e) => {
|
|
||||||
if (e.key === 'Escape') onCancel();
|
|
||||||
}}
|
|
||||||
role="button"
|
|
||||||
tabindex="-1"
|
|
||||||
transition:fade={{ duration: 150 }}
|
|
||||||
>
|
|
||||||
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
|
||||||
<div
|
|
||||||
bind:this={modalElement}
|
|
||||||
class="p-4 mx-4 w-full max-w-md bg-white rounded-2xl shadow-2xl dark:bg-zinc-800"
|
|
||||||
onclick={(e) => e.stopPropagation()}
|
|
||||||
onkeydown={(e) => e.stopPropagation()}
|
|
||||||
>
|
|
||||||
<h2 class="mb-3 text-xl font-bold text-gray-900 dark:text-white">
|
|
||||||
{title}
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div class="mb-6 text-lg text-gray-700 whitespace-pre-line dark:text-gray-300">
|
|
||||||
{message}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="flex gap-3 justify-end">
|
|
||||||
<button
|
|
||||||
onclick={onCancel}
|
|
||||||
class="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg transition-colors hover:bg-gray-200 dark:bg-zinc-700 dark:text-gray-200 dark:hover:bg-zinc-600"
|
|
||||||
>
|
|
||||||
Cancel
|
|
||||||
</button>
|
|
||||||
<button
|
|
||||||
onclick={onConfirm}
|
|
||||||
class="px-4 py-2 text-sm font-medium text-white bg-green-600 rounded-lg shadow-inner transition-colors hover:bg-green-700 dark:bg-green-500 dark:hover:bg-green-600"
|
|
||||||
>
|
|
||||||
Enable
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
@@ -1,227 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { isValidHotkey, parseHotkey } from '@/plugins/built-in/globalSearch/src/utils/hotkeyUtils';
|
|
||||||
|
|
||||||
let { value, onChange } = $props<{
|
|
||||||
value: string,
|
|
||||||
onChange: (newValue: string) => void
|
|
||||||
}>();
|
|
||||||
|
|
||||||
let isRecording = $state(false);
|
|
||||||
let recordedKeys = $state<Set<string>>(new Set());
|
|
||||||
let inputElement = $state<HTMLInputElement>();
|
|
||||||
|
|
||||||
const formatKeyForHotkey = (key: string): string => {
|
|
||||||
// Map special keys to their hotkey format
|
|
||||||
const keyMap: Record<string, string> = {
|
|
||||||
'Control': 'ctrl',
|
|
||||||
'Meta': 'cmd',
|
|
||||||
'Alt': 'alt',
|
|
||||||
'Shift': 'shift',
|
|
||||||
' ': 'space',
|
|
||||||
'ArrowUp': 'up',
|
|
||||||
'ArrowDown': 'down',
|
|
||||||
'ArrowLeft': 'left',
|
|
||||||
'ArrowRight': 'right',
|
|
||||||
'Escape': 'esc',
|
|
||||||
'Enter': 'enter',
|
|
||||||
'Tab': 'tab',
|
|
||||||
'Backspace': 'backspace',
|
|
||||||
'Delete': 'delete',
|
|
||||||
};
|
|
||||||
|
|
||||||
return keyMap[key] || key.toLowerCase();
|
|
||||||
};
|
|
||||||
|
|
||||||
const formatKeyForDisplay = (key: string): string => {
|
|
||||||
// Map keys to their display format
|
|
||||||
const isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0;
|
|
||||||
const keyMap: Record<string, string> = {
|
|
||||||
'ctrl': isMac ? '⌃' : 'Ctrl',
|
|
||||||
'cmd': '⌘',
|
|
||||||
'meta': '⌘',
|
|
||||||
'alt': isMac ? '⌥' : 'Alt',
|
|
||||||
'shift': isMac ? '⇧' : 'Shift',
|
|
||||||
'space': 'Space',
|
|
||||||
'up': '↑',
|
|
||||||
'down': '↓',
|
|
||||||
'left': '←',
|
|
||||||
'right': '→',
|
|
||||||
'esc': 'Esc',
|
|
||||||
'enter': 'Enter',
|
|
||||||
'tab': 'Tab',
|
|
||||||
'backspace': 'Backspace',
|
|
||||||
'delete': 'Delete',
|
|
||||||
};
|
|
||||||
|
|
||||||
return keyMap[key.toLowerCase()] || key.toUpperCase();
|
|
||||||
};
|
|
||||||
|
|
||||||
const getHotkeyParts = (hotkeyString: string): string[] => {
|
|
||||||
if (!hotkeyString || !isValidHotkey(hotkeyString)) {
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
|
|
||||||
const parsed = parseHotkey(hotkeyString);
|
|
||||||
const parts: string[] = [];
|
|
||||||
|
|
||||||
// Add modifiers in a consistent order
|
|
||||||
if (parsed.ctrl) parts.push('ctrl');
|
|
||||||
if (parsed.meta) parts.push('cmd');
|
|
||||||
if (parsed.alt) parts.push('alt');
|
|
||||||
if (parsed.shift) parts.push('shift');
|
|
||||||
|
|
||||||
// Add the main key
|
|
||||||
if (parsed.key) parts.push(parsed.key);
|
|
||||||
|
|
||||||
return parts;
|
|
||||||
};
|
|
||||||
|
|
||||||
const startRecording = () => {
|
|
||||||
isRecording = true;
|
|
||||||
recordedKeys.clear();
|
|
||||||
inputElement?.focus();
|
|
||||||
};
|
|
||||||
|
|
||||||
const stopRecording = () => {
|
|
||||||
if (recordedKeys.size > 0) {
|
|
||||||
if (recordedKeys.has('esc')) {
|
|
||||||
onChange('');
|
|
||||||
isRecording = false;
|
|
||||||
recordedKeys.clear();
|
|
||||||
inputElement?.blur();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Build the hotkey string
|
|
||||||
const modifiers: string[] = [];
|
|
||||||
let mainKey = '';
|
|
||||||
|
|
||||||
for (const key of recordedKeys) {
|
|
||||||
if (['ctrl', 'cmd', 'alt', 'shift'].includes(key)) {
|
|
||||||
modifiers.push(key);
|
|
||||||
} else {
|
|
||||||
mainKey = key;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (mainKey) {
|
|
||||||
const hotkeyString = [...modifiers, mainKey].join('+');
|
|
||||||
if (isValidHotkey(hotkeyString)) {
|
|
||||||
onChange(hotkeyString);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
isRecording = false;
|
|
||||||
recordedKeys.clear();
|
|
||||||
inputElement?.blur();
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleKeyDown = (e: KeyboardEvent) => {
|
|
||||||
if (!isRecording) return;
|
|
||||||
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
|
|
||||||
const key = formatKeyForHotkey(e.key);
|
|
||||||
|
|
||||||
// Add modifiers
|
|
||||||
if (e.ctrlKey) recordedKeys.add('ctrl');
|
|
||||||
if (e.metaKey) recordedKeys.add('cmd');
|
|
||||||
if (e.altKey) recordedKeys.add('alt');
|
|
||||||
if (e.shiftKey) recordedKeys.add('shift');
|
|
||||||
|
|
||||||
// Add the main key (ignore modifier keys themselves)
|
|
||||||
if (!['ctrl', 'cmd', 'alt', 'shift'].includes(key)) {
|
|
||||||
recordedKeys.add(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Auto-stop recording if we have a main key
|
|
||||||
if (!['ctrl', 'cmd', 'alt', 'shift'].includes(key)) {
|
|
||||||
setTimeout(stopRecording, 100);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleKeyUp = (e: KeyboardEvent) => {
|
|
||||||
if (!isRecording) return;
|
|
||||||
e.preventDefault();
|
|
||||||
e.stopPropagation();
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleBlur = () => {
|
|
||||||
if (isRecording) {
|
|
||||||
stopRecording();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
$effect(() => {
|
|
||||||
if (isRecording && inputElement) {
|
|
||||||
inputElement.focus();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Get the parts to display
|
|
||||||
const hotkeyParts = $derived(isRecording
|
|
||||||
? Array.from(recordedKeys).map(formatKeyForDisplay)
|
|
||||||
: getHotkeyParts(value).map(formatKeyForDisplay));
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div class="flex gap-2 items-center">
|
|
||||||
<div class="relative">
|
|
||||||
{#if isRecording}
|
|
||||||
<!-- Recording state -->
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center px-3 py-1.5 text-sm rounded-md dark:bg-[#38373D]/50 bg-[#DDDDDD]/50 border-[#DDDDDD]/30 dark:border-[#38373D]/30 dark:text-white border cursor-pointer text-nowrap"
|
|
||||||
onclick={startRecording}
|
|
||||||
onkeydown={startRecording}
|
|
||||||
role="button"
|
|
||||||
tabindex="0"
|
|
||||||
>
|
|
||||||
Press keys...
|
|
||||||
</div>
|
|
||||||
{:else if hotkeyParts.length > 0}
|
|
||||||
<!-- Display current hotkey -->
|
|
||||||
<div
|
|
||||||
class="flex gap-1 items-center text-sm rounded-md border-none cursor-pointer dark:text-white"
|
|
||||||
onclick={startRecording}
|
|
||||||
onkeydown={startRecording}
|
|
||||||
role="button"
|
|
||||||
tabindex="0"
|
|
||||||
>
|
|
||||||
{#each hotkeyParts as part}
|
|
||||||
<div class="size-8 text-sm flex items-center justify-center rounded-md border dark:bg-[#38373D]/50 bg-[#DDDDDD]/50 border-[#DDDDDD]/30 dark:border-[#38373D]/30">
|
|
||||||
{part}
|
|
||||||
</div>
|
|
||||||
{/each}
|
|
||||||
</div>
|
|
||||||
{:else}
|
|
||||||
<!-- Empty state -->
|
|
||||||
<div
|
|
||||||
class="flex items-center justify-center px-3 py-2 text-sm rounded-md dark:bg-[#38373D]/50 bg-[#DDDDDD] dark:text-white border-none cursor-pointer text-nowrap"
|
|
||||||
onclick={startRecording}
|
|
||||||
onkeydown={startRecording}
|
|
||||||
role="button"
|
|
||||||
tabindex="0"
|
|
||||||
>
|
|
||||||
<span class="text-gray-500 dark:text-gray-400">Click to set</span>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
<!-- Hidden input for focus management -->
|
|
||||||
<input
|
|
||||||
bind:this={inputElement}
|
|
||||||
type="text"
|
|
||||||
readonly
|
|
||||||
class="absolute inset-0 opacity-0 pointer-events-none"
|
|
||||||
onkeydown={handleKeyDown}
|
|
||||||
onkeyup={handleKeyUp}
|
|
||||||
onblur={handleBlur}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
input:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -8,5 +8,5 @@
|
|||||||
aria-label="Color Picker Swatch"
|
aria-label="Color Picker Swatch"
|
||||||
onclick={onClick}
|
onclick={onClick}
|
||||||
style="background: {$settingsState.selectedColor}"
|
style="background: {$settingsState.selectedColor}"
|
||||||
class="w-16 h-8 rounded-md shadow-2xl ring-[1px] ring-[#DDDDDD]/30 dark:ring-[#38373D]/30"
|
class="w-16 h-8 rounded-md"
|
||||||
></button>
|
></button>
|
||||||
@@ -8,75 +8,15 @@
|
|||||||
let select: HTMLSelectElement;
|
let select: HTMLSelectElement;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="select-wrapper relative w-full overflow-hidden rounded-2xl border shadow-2xl">
|
<select
|
||||||
<select
|
bind:this={select}
|
||||||
bind:this={select}
|
value={state}
|
||||||
value={state}
|
onchange={() => onChange(select.value)}
|
||||||
onchange={() => onChange(select.value)}
|
class="px-4 py-1 text-[0.75rem] dark:bg-[#38373D] bg-[#DDDDDD] dark:text-white rounded-md w-full"
|
||||||
class="select-input w-full appearance-none border-none bg-transparent px-4 py-2.5 pr-10 text-[0.875rem] font-medium transition-colors"
|
>
|
||||||
>
|
{#each options as option}
|
||||||
{#each options as option}
|
<option value={option.value}>
|
||||||
<option value={option.value}>
|
{option.label}
|
||||||
{option.label}
|
</option>
|
||||||
</option>
|
{/each}
|
||||||
{/each}
|
</select>
|
||||||
</select>
|
|
||||||
<span class="select-icon pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3" aria-hidden="true">
|
|
||||||
<svg viewBox="0 0 20 20" fill="currentColor" class="h-4 w-4">
|
|
||||||
<path fill-rule="evenodd" d="M5.23 7.21a.75.75 0 0 1 1.06.02L10 11.168l3.71-3.938a.75.75 0 1 1 1.08 1.04l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 0 1 .02-1.06Z" clip-rule="evenodd"></path>
|
|
||||||
</svg>
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
.select-wrapper {
|
|
||||||
background: color-mix(in srgb, var(--background-primary) 88%, transparent);
|
|
||||||
border-color: color-mix(in srgb, var(--theme-offset-bg, var(--background-secondary)) 72%, transparent);
|
|
||||||
border-radius: 18px;
|
|
||||||
color: var(--text-primary);
|
|
||||||
transition:
|
|
||||||
background-color 180ms ease,
|
|
||||||
border-color 180ms ease,
|
|
||||||
box-shadow 180ms ease,
|
|
||||||
transform 180ms ease;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-wrapper:hover {
|
|
||||||
background: color-mix(in srgb, var(--background-primary) 94%, var(--background-secondary) 6%);
|
|
||||||
border-color: color-mix(in srgb, var(--theme-offset-bg, var(--background-secondary)) 88%, transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-wrapper:focus-within {
|
|
||||||
background: color-mix(in srgb, var(--background-primary) 96%, var(--background-secondary) 4%);
|
|
||||||
border-color: color-mix(in srgb, var(--text-primary) 22%, var(--theme-offset-bg, var(--background-secondary)) 78%);
|
|
||||||
box-shadow: 0 0 0 1px color-mix(in srgb, var(--text-primary) 12%, transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-input {
|
|
||||||
color: var(--text-primary);
|
|
||||||
outline: none;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-input:hover,
|
|
||||||
.select-input:focus {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-input option {
|
|
||||||
background: var(--background-primary);
|
|
||||||
color: var(--text-primary);
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-icon {
|
|
||||||
color: color-mix(in srgb, var(--text-primary) 60%, transparent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.select-input {
|
|
||||||
color-scheme: light;
|
|
||||||
}
|
|
||||||
|
|
||||||
:global(.dark) .select-input {
|
|
||||||
color-scheme: dark;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -1,77 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { fade } from "svelte/transition";
|
|
||||||
import { animate } from "motion";
|
|
||||||
import { closeExtensionPopup } from "@/seqta/utils/Closers/closeExtensionPopup";
|
|
||||||
|
|
||||||
let { onClose } = $props<{ onClose: () => void }>();
|
|
||||||
let modalElement: HTMLElement;
|
|
||||||
|
|
||||||
$effect(() => {
|
|
||||||
if (modalElement) {
|
|
||||||
animate(modalElement, { scale: [0.9, 1], opacity: [0, 1] }, { type: "spring", stiffness: 300, damping: 25 });
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function handleSignIn() {
|
|
||||||
onClose();
|
|
||||||
if (document.getElementById("ExtensionPopup")) {
|
|
||||||
closeExtensionPopup();
|
|
||||||
} else {
|
|
||||||
window.close();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div
|
|
||||||
class="flex fixed inset-0 z-[10000] justify-center items-center bg-black/50"
|
|
||||||
onclick={(e) => {
|
|
||||||
if (e.target === e.currentTarget) onClose();
|
|
||||||
}}
|
|
||||||
onkeydown={(e) => {
|
|
||||||
if (e.key === "Escape") onClose();
|
|
||||||
}}
|
|
||||||
role="button"
|
|
||||||
tabindex="-1"
|
|
||||||
transition:fade={{ duration: 150 }}
|
|
||||||
>
|
|
||||||
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
|
||||||
<div
|
|
||||||
bind:this={modalElement}
|
|
||||||
class="p-4 mx-4 w-full max-w-md bg-white rounded-2xl shadow-2xl dark:bg-zinc-800 dark:text-white"
|
|
||||||
onclick={(e) => e.stopPropagation()}
|
|
||||||
onkeydown={(e) => e.stopPropagation()}
|
|
||||||
>
|
|
||||||
<h2 class="mb-3 text-xl font-bold text-zinc-900 dark:text-white">
|
|
||||||
Sign in to favorite themes
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<p class="mb-6 text-zinc-600 dark:text-zinc-400">
|
|
||||||
Sign in in the Theme Store to save favorites across devices, or create an account to get started.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="flex flex-wrap gap-2 justify-end">
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={onClose}
|
|
||||||
class="px-4 py-2 text-sm font-medium rounded-lg bg-zinc-200 dark:bg-zinc-700 text-zinc-700 dark:text-zinc-200 hover:bg-zinc-300 dark:hover:bg-zinc-600 transition-colors duration-200"
|
|
||||||
>
|
|
||||||
OK
|
|
||||||
</button>
|
|
||||||
<a
|
|
||||||
href="https://accounts.betterseqta.org/register"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
class="inline-flex items-center gap-2 px-4 py-2 text-sm font-medium rounded-lg border border-zinc-200 dark:border-zinc-600 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-zinc-800 transition-all duration-200"
|
|
||||||
>
|
|
||||||
Create account
|
|
||||||
</a>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={handleSignIn}
|
|
||||||
class="px-4 py-2 text-sm font-medium rounded-lg bg-zinc-800 dark:bg-zinc-200 text-white dark:text-zinc-900 hover:bg-zinc-700 dark:hover:bg-zinc-300 transition-colors duration-200"
|
|
||||||
>
|
|
||||||
Sign in
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
@@ -9,16 +9,16 @@
|
|||||||
let percentage = $derived(((state - min) / (max - min)) * 100);
|
let percentage = $derived(((state - min) / (max - min)) * 100);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="relative w-full min-w-0">
|
<div class="relative mx-auto w-full max-w-lg">
|
||||||
<input
|
<input
|
||||||
type="range"
|
type="range"
|
||||||
min={min}
|
min={min}
|
||||||
max={max}
|
max={max}
|
||||||
step={step}
|
step={step}
|
||||||
bind:value={state}
|
bind:value={state}
|
||||||
style={`background: linear-gradient(to right, #30d259ad 0%, #30D259 ${percentage}%, #dddddd ${percentage}%)`}
|
style={`background: linear-gradient(to right, #30D259 ${percentage}%, #dddddd ${percentage}%)`}
|
||||||
onchange={(e) => onChange(Number(e.currentTarget.value))}
|
onchange={(e) => onChange(Number(e.currentTarget.value))}
|
||||||
class="w-full h-1 rounded-full appearance-none cursor-pointer slider"
|
class="w-full h-1 rounded-full appearance-none cursor-pointer dark:bg-[#38373D] bg-[#DDDDDD] slider"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -38,7 +38,6 @@
|
|||||||
height: 24px;
|
height: 24px;
|
||||||
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
|
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.3);
|
||||||
background: white;
|
background: white;
|
||||||
color: #30d259ad;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.dark .switch[data-ison="true"],
|
.dark .switch[data-ison="true"],
|
||||||
.switch[data-ison="true"] {
|
.switch[data-ison="true"] {
|
||||||
background-color: #30d259;
|
background-color: #30D259;
|
||||||
}
|
}
|
||||||
@@ -30,7 +30,8 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="flex w-14 p-1 cursor-pointer transition-all duration-150 rounded-full bg-gradient-to-tr select-none shadow-2xl ring-[1px] ring-[#DDDDDD]/30 dark:ring-[#38373D]/30 {state ? 'to-[#30D259]/80 from-[#30D259] dark:from-[#30D259]/40 dark:to-[#30D259]' : 'dark:from-[#38373D]/50 dark:to-[#38373D] to-[#DDDDDD]/50 from-[#DDDDDD]'}"
|
class="flex w-14 p-1 cursor-pointer transition-all duration-150 rounded-full dark:bg-[#38373D] bg-[#DDDDDD] switch select-none"
|
||||||
|
data-ison={state}
|
||||||
onclick={() => onChange(!state)}
|
onclick={() => onChange(!state)}
|
||||||
onkeydown={(e) => e.key === "Enter" && onChange(!state)}
|
onkeydown={(e) => e.key === "Enter" && onChange(!state)}
|
||||||
role="switch"
|
role="switch"
|
||||||
@@ -41,4 +42,10 @@
|
|||||||
bind:this={handle}
|
bind:this={handle}
|
||||||
class="w-6 h-6 bg-white dark:bg-[#FEFEFE] rounded-full drop-shadow-md"
|
class="w-6 h-6 bg-white dark:bg-[#FEFEFE] rounded-full drop-shadow-md"
|
||||||
></div>
|
></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.switch[data-ison="true"] {
|
||||||
|
background-color: #30D259;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
.tab-width {
|
.tab-width {
|
||||||
width: var(--tab-width);
|
width: var(--tab-width);
|
||||||
}
|
}
|
||||||
@@ -3,7 +3,8 @@
|
|||||||
import './TabbedContainer.css';
|
import './TabbedContainer.css';
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
|
|
||||||
let { tabs, activeTab = $bindable(0) } = $props<{ tabs: { title: string, Content: any, props?: any }[]; activeTab?: number }>();
|
let { tabs } = $props<{ tabs: { title: string, Content: any, props?: any }[] }>();
|
||||||
|
let activeTab = $state(0);
|
||||||
let containerRef: HTMLElement | null = null;
|
let containerRef: HTMLElement | null = null;
|
||||||
let tabWidth = $state(0);
|
let tabWidth = $state(0);
|
||||||
|
|
||||||
@@ -42,7 +43,7 @@
|
|||||||
<div class="top-0 z-10 text-[0.875rem] pb-0.5 mx-4 px-2 tab-width-container">
|
<div class="top-0 z-10 text-[0.875rem] pb-0.5 mx-4 px-2 tab-width-container">
|
||||||
<div bind:this={containerRef} class="flex relative">
|
<div bind:this={containerRef} class="flex relative">
|
||||||
<MotionDiv
|
<MotionDiv
|
||||||
class="absolute top-0 left-0 z-0 h-full bg-gradient-to-tr dark:from-[#38373D]/80 dark:to-[#38373D] from-[#DDDDDD]/80 to-[#DDDDDD] rounded-full opacity-40 tab-width"
|
class="absolute top-0 left-0 z-0 h-full bg-[#DDDDDD] dark:bg-[#38373D] rounded-full opacity-40 tab-width"
|
||||||
animate={{ x: calcXPos(activeTab) }}
|
animate={{ x: calcXPos(activeTab) }}
|
||||||
transition={springTransition}
|
transition={springTransition}
|
||||||
/>
|
/>
|
||||||
@@ -64,9 +65,8 @@
|
|||||||
>
|
>
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
{#each tabs as { Content, props }, index}
|
{#each tabs as { Content, props }, index}
|
||||||
<div class="absolute focus:outline-none w-full pt-2 transition-opacity duration-300 overflow-y-scroll no-scrollbar pb-2 h-full tab {activeTab === index ? 'opacity-100 active' : 'opacity-0'}"
|
<div class="absolute focus:outline-none w-full transition-opacity duration-300 overflow-y-scroll no-scrollbar h-full tab {activeTab === index ? 'opacity-100 active' : 'opacity-0'}"
|
||||||
style="left: {index * 100}%;">
|
style="left: {index * 100}%;">
|
||||||
<div style="left: {index * 100}%;" class="fixed top-0 w-full h-8 bg-gradient-to-b to-transparent pointer-events-none z-[100] from-white dark:from-zinc-800 dark:to-transparent"></div>
|
|
||||||
<Content {...props} />
|
<Content {...props} />
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
|||||||
@@ -1,201 +0,0 @@
|
|||||||
<script lang="ts">
|
|
||||||
import { onMount } from "svelte";
|
|
||||||
import { cloudAuth } from "@/seqta/utils/CloudAuth";
|
|
||||||
|
|
||||||
let username = $state("");
|
|
||||||
let password = $state("");
|
|
||||||
let loading = $state(false);
|
|
||||||
let error = $state<string | null>(null);
|
|
||||||
let cloudState = $state(cloudAuth.state);
|
|
||||||
let open = $state(false);
|
|
||||||
let dropdownEl: HTMLElement;
|
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
const unsubscribe = cloudAuth.subscribe((state) => {
|
|
||||||
cloudState = state;
|
|
||||||
});
|
|
||||||
return unsubscribe;
|
|
||||||
});
|
|
||||||
|
|
||||||
function handleClickOutside(e: MouseEvent) {
|
|
||||||
if (dropdownEl && !dropdownEl.contains(e.target as Node)) {
|
|
||||||
open = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$effect(() => {
|
|
||||||
if (open) {
|
|
||||||
const timer = setTimeout(() => {
|
|
||||||
document.addEventListener("click", handleClickOutside);
|
|
||||||
}, 0);
|
|
||||||
return () => {
|
|
||||||
clearTimeout(timer);
|
|
||||||
document.removeEventListener("click", handleClickOutside);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
async function handleLogin() {
|
|
||||||
if (loading) return;
|
|
||||||
error = null;
|
|
||||||
if (!username.trim() || !password) {
|
|
||||||
error = "Please enter username and password";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
loading = true;
|
|
||||||
try {
|
|
||||||
const result = await cloudAuth.login(username.trim(), password);
|
|
||||||
if (result.success) {
|
|
||||||
password = "";
|
|
||||||
open = false;
|
|
||||||
} else {
|
|
||||||
error = result.error ?? "Login failed";
|
|
||||||
}
|
|
||||||
} finally {
|
|
||||||
loading = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleLogout() {
|
|
||||||
await cloudAuth.logout();
|
|
||||||
open = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getInitials(): string {
|
|
||||||
const u = cloudState.user;
|
|
||||||
if (!u) return "?";
|
|
||||||
if (u.displayName) return u.displayName.slice(0, 2).toUpperCase();
|
|
||||||
if (u.username) return u.username.slice(0, 2).toUpperCase();
|
|
||||||
if (u.email) return u.email.slice(0, 2).toUpperCase();
|
|
||||||
return "?";
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<div class="relative flex items-center" bind:this={dropdownEl}>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={() => (open = !open)}
|
|
||||||
class="flex items-center gap-2 px-3 py-2 rounded-lg bg-zinc-100/80 dark:bg-zinc-700/80 hover:bg-zinc-200/80 dark:hover:bg-zinc-600/80 transition-colors duration-200 text-base font-medium text-zinc-900 dark:text-white"
|
|
||||||
>
|
|
||||||
{#if cloudState.isLoggedIn}
|
|
||||||
{#if cloudState.user?.pfpUrl}
|
|
||||||
<img
|
|
||||||
src={cloudState.user.pfpUrl}
|
|
||||||
alt=""
|
|
||||||
class="w-8 h-8 rounded-full object-cover ring-2 ring-zinc-200 dark:ring-zinc-600"
|
|
||||||
/>
|
|
||||||
{:else}
|
|
||||||
<div class="flex items-center justify-center w-8 h-8 rounded-full bg-zinc-300 dark:bg-zinc-600 text-zinc-700 dark:text-zinc-200 font-semibold text-sm">
|
|
||||||
{getInitials()}
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
<span class="hidden max-w-24 truncate sm:inline text-base">
|
|
||||||
{cloudState.user?.displayName || cloudState.user?.username || cloudState.user?.email || "User"}
|
|
||||||
</span>
|
|
||||||
{:else}
|
|
||||||
<span class="text-xl font-IconFamily" aria-hidden="true">{'\ued53'}</span>
|
|
||||||
<span class="text-base font-medium">Sign in</span>
|
|
||||||
{/if}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
{#if open}
|
|
||||||
<!-- svelte-ignore a11y_click_events_have_key_events -->
|
|
||||||
<!-- svelte-ignore a11y_no_static_element_interactions -->
|
|
||||||
<div
|
|
||||||
class="absolute right-0 top-full mt-2 w-80 rounded-xl border border-zinc-200 dark:border-zinc-600 bg-white dark:bg-zinc-800 shadow-xl z-[100] overflow-hidden"
|
|
||||||
onclick={(e) => e.stopPropagation()}
|
|
||||||
>
|
|
||||||
<div class="p-4 border-b border-zinc-200 dark:border-zinc-600">
|
|
||||||
<h3 class="text-xl font-bold text-zinc-900 dark:text-white">BetterSEQTA Cloud</h3>
|
|
||||||
<p class="text-base text-zinc-500 dark:text-zinc-400">Sync favorites across devices</p>
|
|
||||||
</div>
|
|
||||||
<div class="p-4">
|
|
||||||
{#if cloudState.isLoggedIn}
|
|
||||||
<div class="flex flex-col gap-3">
|
|
||||||
<div class="flex items-center gap-3">
|
|
||||||
{#if cloudState.user?.pfpUrl}
|
|
||||||
<img
|
|
||||||
src={cloudState.user.pfpUrl}
|
|
||||||
alt=""
|
|
||||||
class="w-12 h-12 rounded-full object-cover ring-2 ring-zinc-200 dark:ring-zinc-600"
|
|
||||||
/>
|
|
||||||
{:else}
|
|
||||||
<div class="flex items-center justify-center w-12 h-12 rounded-full bg-zinc-300 dark:bg-zinc-600 text-zinc-700 dark:text-zinc-200 font-semibold text-base">
|
|
||||||
{getInitials()}
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
<div class="min-w-0 flex-1">
|
|
||||||
<p class="text-base font-medium text-zinc-900 dark:text-white truncate">
|
|
||||||
{cloudState.user?.displayName || cloudState.user?.username || cloudState.user?.email || "User"}
|
|
||||||
</p>
|
|
||||||
{#if cloudState.user?.email && cloudState.user?.email !== (cloudState.user?.displayName || cloudState.user?.username)}
|
|
||||||
<p class="text-base text-zinc-500 dark:text-zinc-400 truncate">{cloudState.user.email}</p>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
onclick={handleLogout}
|
|
||||||
class="w-full px-4 py-3 text-base font-medium rounded-lg bg-zinc-200 dark:bg-zinc-700 text-zinc-900 dark:text-white hover:bg-zinc-300 dark:hover:bg-zinc-600 transition-colors duration-200"
|
|
||||||
>
|
|
||||||
Sign out
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
{:else}
|
|
||||||
<p class="mb-4 text-base text-zinc-600 dark:text-zinc-400">
|
|
||||||
Sign in to favorite themes. Your favorites sync across devices when logged in.
|
|
||||||
</p>
|
|
||||||
<form
|
|
||||||
class="flex flex-col gap-3"
|
|
||||||
autocomplete="off"
|
|
||||||
onsubmit={(e) => {
|
|
||||||
e.preventDefault();
|
|
||||||
handleLogin();
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
name="betterseqta-cloud-username"
|
|
||||||
autocomplete="off"
|
|
||||||
placeholder="Email or username"
|
|
||||||
bind:value={username}
|
|
||||||
disabled={loading}
|
|
||||||
readonly
|
|
||||||
onfocus={(e) => e.currentTarget.removeAttribute('readonly')}
|
|
||||||
class="w-full px-4 py-3 text-base rounded-lg bg-zinc-100 dark:bg-zinc-800 dark:text-white border border-zinc-200 dark:border-zinc-600 focus:outline-none focus:ring-2 focus:ring-accent-ring focus:border-transparent transition-colors duration-200"
|
|
||||||
/>
|
|
||||||
<input
|
|
||||||
type="password"
|
|
||||||
name="betterseqta-cloud-password"
|
|
||||||
autocomplete="new-password"
|
|
||||||
placeholder="Password"
|
|
||||||
bind:value={password}
|
|
||||||
disabled={loading}
|
|
||||||
readonly
|
|
||||||
onfocus={(e) => e.currentTarget.removeAttribute('readonly')}
|
|
||||||
class="w-full px-4 py-3 text-base rounded-lg bg-zinc-100 dark:bg-zinc-800 dark:text-white border border-zinc-200 dark:border-zinc-600 focus:outline-none focus:ring-2 focus:ring-accent-ring focus:border-transparent transition-colors duration-200"
|
|
||||||
/>
|
|
||||||
{#if error}
|
|
||||||
<p class="text-base text-red-600 dark:text-red-400">{error}</p>
|
|
||||||
{/if}
|
|
||||||
<button
|
|
||||||
type="submit"
|
|
||||||
disabled={loading}
|
|
||||||
class="w-full px-4 py-3 text-base font-medium rounded-lg bg-zinc-800 dark:bg-zinc-200 text-white dark:text-zinc-900 hover:bg-zinc-700 dark:hover:bg-zinc-300 disabled:opacity-50 transition-colors duration-200"
|
|
||||||
>
|
|
||||||
{loading ? "Signing in..." : "Sign in"}
|
|
||||||
</button>
|
|
||||||
<a
|
|
||||||
href="https://accounts.betterseqta.org/register"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
class="inline-flex items-center justify-center gap-2 px-4 py-3 text-base font-medium rounded-lg border border-zinc-200 dark:border-zinc-600 text-zinc-700 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-zinc-800 transition-all duration-200"
|
|
||||||
>
|
|
||||||
Create account
|
|
||||||
</a>
|
|
||||||
</form>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
{#if coverThemes.length > 0}
|
{#if coverThemes.length > 0}
|
||||||
<div class="relative w-full overflow-clip rounded-xl transition-opacity" transition:fade>
|
<div class="relative w-full overflow-clip rounded-xl transition-opacity" transition:fade>
|
||||||
<div
|
<div
|
||||||
class="w-full aspect-[5/1] max-h-[500px]"
|
class="w-full aspect-8/3"
|
||||||
use:emblaCarouselSvelte={{ options, plugins }}
|
use:emblaCarouselSvelte={{ options, plugins }}
|
||||||
onemblaInit={onInit}
|
onemblaInit={onInit}
|
||||||
>
|
>
|
||||||
@@ -42,7 +42,7 @@
|
|||||||
onkeydown={(e) => { if (e.key === 'Enter') setDisplayTheme(theme) }}
|
onkeydown={(e) => { if (e.key === 'Enter') setDisplayTheme(theme) }}
|
||||||
onclick={() => setDisplayTheme(theme)}
|
onclick={() => setDisplayTheme(theme)}
|
||||||
>
|
>
|
||||||
<img src={theme.marqueeImage || theme.coverImage} alt="Theme Preview" class="object-cover w-full h-full" />
|
<img src={theme.marqueeImage} alt="Theme Preview" class="object-cover w-full h-full" />
|
||||||
<div class='absolute bottom-0 left-0 p-8 z-[1]'>
|
<div class='absolute bottom-0 left-0 p-8 z-[1]'>
|
||||||
<h2 class='text-4xl font-bold text-white'>{theme.name}</h2>
|
<h2 class='text-4xl font-bold text-white'>{theme.name}</h2>
|
||||||
<p class='text-lg text-white'>{theme.description}</p>
|
<p class='text-lg text-white'>{theme.description}</p>
|
||||||
|
|||||||
@@ -3,7 +3,6 @@
|
|||||||
import logoDark from '@/resources/icons/betterseqta-light-full.png';
|
import logoDark from '@/resources/icons/betterseqta-light-full.png';
|
||||||
import { closeStore } from '@/seqta/ui/renderStore'
|
import { closeStore } from '@/seqta/ui/renderStore'
|
||||||
import browser from 'webextension-polyfill';
|
import browser from 'webextension-polyfill';
|
||||||
import CloudHeader from './CloudHeader.svelte';
|
|
||||||
|
|
||||||
// Props
|
// Props
|
||||||
let { searchTerm, setSearchTerm, darkMode, activeTab, setActiveTab } = $props<{
|
let { searchTerm, setSearchTerm, darkMode, activeTab, setActiveTab } = $props<{
|
||||||
@@ -40,8 +39,6 @@
|
|||||||
>
|
>
|
||||||
Backgrounds
|
Backgrounds
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<CloudHeader />
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex relative gap-2">
|
<div class="flex relative gap-2">
|
||||||
|
|||||||
@@ -1,110 +1,19 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { Theme } from '@/interface/types/Theme'
|
import type { Theme } from '@/interface/types/Theme'
|
||||||
|
|
||||||
|
let { theme, onClick } = $props<{ theme: Theme; onClick: () => void }>();
|
||||||
|
|
||||||
import { fade } from 'svelte/transition';
|
import { fade } from 'svelte/transition';
|
||||||
import { onMount } from 'svelte';
|
|
||||||
import SignInToFavoriteModal from '@/interface/components/SignInToFavoriteModal.svelte';
|
|
||||||
|
|
||||||
let { theme, onClick, toggleFavorite, isLoggedIn } = $props<{
|
|
||||||
theme: Theme;
|
|
||||||
onClick: () => void;
|
|
||||||
toggleFavorite: (theme: Theme) => void;
|
|
||||||
isLoggedIn: boolean;
|
|
||||||
}>();
|
|
||||||
let menuOpen = $state(false);
|
|
||||||
let showSignInModal = $state(false);
|
|
||||||
let menuRef: HTMLDivElement;
|
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
const closeMenu = (e: MouseEvent) => {
|
|
||||||
if (menuOpen && menuRef && !menuRef.contains(e.target as Node)) {
|
|
||||||
menuOpen = false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
document.addEventListener('click', closeMenu);
|
|
||||||
return () => document.removeEventListener('click', closeMenu);
|
|
||||||
});
|
|
||||||
|
|
||||||
function handleCardClick(e: MouseEvent) {
|
|
||||||
if ((e.target as HTMLElement).closest('[data-theme-menu]')) return;
|
|
||||||
onClick();
|
|
||||||
}
|
|
||||||
|
|
||||||
function handleFavoriteClick(e: MouseEvent) {
|
|
||||||
e.stopPropagation();
|
|
||||||
if (isLoggedIn) {
|
|
||||||
toggleFavorite(theme);
|
|
||||||
} else {
|
|
||||||
showSignInModal = true;
|
|
||||||
}
|
|
||||||
menuOpen = false;
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="w-full cursor-pointer" role="button" tabindex="-1" onkeydown={onClick} onclick={handleCardClick}>
|
<div class="w-full cursor-pointer" role="button" tabindex="-1" onkeydown={onClick} onclick={onClick}>
|
||||||
<div class="bg-gray-50 w-full transition-all hover:scale-105 duration-500 relative group flex flex-col hover:shadow-2xl dark:hover:shadow-white/[0.1] dark:hover:shadow-white/[0.8] dark:bg-zinc-800 dark:border-white/[0.1] h-auto rounded-xl overflow-clip border" transition:fade>
|
<div class="bg-gray-50 w-full transition-all hover:scale-105 duration-500 relative group flex flex-col hover:shadow-2xl dark:hover:shadow-white/[0.1] hover:shadow-white/[0.8] dark:bg-zinc-800 dark:border-white/[0.1] h-auto rounded-xl overflow-clip border" transition:fade>
|
||||||
<!-- Menu dropdown -->
|
<div class="absolute bottom-1 left-3 z-10 mb-1 text-xl font-bold text-white">
|
||||||
<div class="absolute top-2 right-2 z-20" data-theme-menu bind:this={menuRef}>
|
{theme.name}
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="flex justify-center items-center w-8 h-8 rounded-lg bg-black/40 hover:bg-black/60 text-white transition-all"
|
|
||||||
onclick={(e) => { e.stopPropagation(); menuOpen = !menuOpen; }}
|
|
||||||
aria-label="Theme options"
|
|
||||||
>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" class="w-5 h-5">
|
|
||||||
<path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/>
|
|
||||||
</svg>
|
|
||||||
</button>
|
|
||||||
{#if menuOpen}
|
|
||||||
<div
|
|
||||||
class="absolute right-0 top-full mt-1 py-1 min-w-[140px] rounded-lg bg-white dark:bg-zinc-800 shadow-lg border border-zinc-200 dark:border-zinc-700"
|
|
||||||
role="menu"
|
|
||||||
>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="flex gap-2 items-center w-full px-3 py-2 text-left text-sm hover:bg-zinc-100 dark:hover:bg-zinc-700"
|
|
||||||
role="menuitem"
|
|
||||||
onclick={handleFavoriteClick}
|
|
||||||
title={isLoggedIn ? (theme.is_favorited ? 'Remove from favorites' : 'Add to favorites') : 'Sign in to favorite themes'}
|
|
||||||
>
|
|
||||||
<svg
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 24 24"
|
|
||||||
fill={theme.is_favorited ? 'currentColor' : 'none'}
|
|
||||||
stroke="currentColor"
|
|
||||||
stroke-width="2"
|
|
||||||
class="w-5 h-5 {theme.is_favorited ? 'text-red-500' : ''}"
|
|
||||||
>
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
|
|
||||||
</svg>
|
|
||||||
{theme.is_favorited ? 'Favorited' : 'Favorite'}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
<div class="absolute bottom-1 left-3 right-3 z-10 mb-1 flex flex-col gap-0.5">
|
|
||||||
<span class="text-xl font-bold text-white drop-shadow-md">{theme.name}</span>
|
|
||||||
<div class="flex gap-3 text-xs font-medium text-white/90 drop-shadow-sm">
|
|
||||||
<span class="flex items-center gap-1">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-3.5 h-3.5">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3" />
|
|
||||||
</svg>
|
|
||||||
{(theme.download_count ?? 0).toLocaleString()}
|
|
||||||
</span>
|
|
||||||
<span class="flex items-center gap-1">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill={theme.is_favorited ? 'currentColor' : 'none'} stroke="currentColor" stroke-width="1.5" class="w-3.5 h-3.5">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
|
|
||||||
</svg>
|
|
||||||
{(theme.favorite_count ?? 0).toLocaleString()}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class='absolute bottom-0 z-0 w-full h-3/4 bg-linear-to-t to-transparent from-black/80'></div>
|
<div class='absolute bottom-0 z-0 w-full h-3/4 bg-linear-to-t to-transparent from-black/80'></div>
|
||||||
<div class='w-full'>
|
<div class='w-full'>
|
||||||
<img src={theme.marqueeImage || theme.coverImage} alt="Theme Preview" class="object-cover w-full h-48 rounded-md" />
|
<img src={theme.marqueeImage} alt="Theme Preview" class="object-cover w-full h-48 rounded-md" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if showSignInModal}
|
|
||||||
<SignInToFavoriteModal onClose={() => (showSignInModal = false)} />
|
|
||||||
{/if}
|
|
||||||
|
|||||||
@@ -2,13 +2,7 @@
|
|||||||
import type { Theme } from '@/interface/types/Theme'
|
import type { Theme } from '@/interface/types/Theme'
|
||||||
import ThemeCard from './ThemeCard.svelte';
|
import ThemeCard from './ThemeCard.svelte';
|
||||||
|
|
||||||
let { themes, searchTerm, setDisplayTheme, toggleFavorite, isLoggedIn } = $props<{
|
let { themes, searchTerm, setDisplayTheme } = $props<{ themes: Theme[]; searchTerm: string, setDisplayTheme: (theme: Theme) => void }>();
|
||||||
themes: Theme[];
|
|
||||||
searchTerm: string;
|
|
||||||
setDisplayTheme: (theme: Theme) => void;
|
|
||||||
toggleFavorite: (theme: Theme) => void;
|
|
||||||
isLoggedIn: boolean;
|
|
||||||
}>();
|
|
||||||
|
|
||||||
let filteredThemes = $derived(themes.filter((theme: Theme) =>
|
let filteredThemes = $derived(themes.filter((theme: Theme) =>
|
||||||
theme.name.toLowerCase().includes(searchTerm.toLowerCase()) || theme.description.toLowerCase().includes(searchTerm.toLowerCase())
|
theme.name.toLowerCase().includes(searchTerm.toLowerCase()) || theme.description.toLowerCase().includes(searchTerm.toLowerCase())
|
||||||
@@ -18,12 +12,7 @@
|
|||||||
<div class="relative" >
|
<div class="relative" >
|
||||||
<div class="grid grid-cols-1 gap-4 py-12 mx-auto sm:grid-cols-2 lg:grid-cols-3">
|
<div class="grid grid-cols-1 gap-4 py-12 mx-auto sm:grid-cols-2 lg:grid-cols-3">
|
||||||
{#each filteredThemes as theme (theme.id)}
|
{#each filteredThemes as theme (theme.id)}
|
||||||
<ThemeCard
|
<ThemeCard theme={theme} onClick={() => setDisplayTheme(theme)} />
|
||||||
{theme}
|
|
||||||
onClick={() => setDisplayTheme(theme)}
|
|
||||||
{toggleFavorite}
|
|
||||||
{isLoggedIn}
|
|
||||||
/>
|
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
{#if filteredThemes.length !== 0}
|
{#if filteredThemes.length !== 0}
|
||||||
|
|||||||
@@ -2,9 +2,8 @@
|
|||||||
import type { Theme } from '@/interface/types/Theme'
|
import type { Theme } from '@/interface/types/Theme'
|
||||||
import { fade } from 'svelte/transition';
|
import { fade } from 'svelte/transition';
|
||||||
import { animate } from 'motion';
|
import { animate } from 'motion';
|
||||||
import SignInToFavoriteModal from '@/interface/components/SignInToFavoriteModal.svelte';
|
|
||||||
|
|
||||||
let { theme, currentThemes, setDisplayTheme, onInstall, onRemove, allThemes, displayTheme, toggleFavorite, isLoggedIn } = $props<{
|
let { theme, currentThemes, setDisplayTheme, onInstall, onRemove, allThemes, displayTheme } = $props<{
|
||||||
theme: Theme | null;
|
theme: Theme | null;
|
||||||
currentThemes: string[];
|
currentThemes: string[];
|
||||||
setDisplayTheme: (theme: Theme | null) => void;
|
setDisplayTheme: (theme: Theme | null) => void;
|
||||||
@@ -12,30 +11,15 @@
|
|||||||
onRemove: (themeId: string) => void;
|
onRemove: (themeId: string) => void;
|
||||||
allThemes: Theme[];
|
allThemes: Theme[];
|
||||||
displayTheme: Theme | null;
|
displayTheme: Theme | null;
|
||||||
toggleFavorite?: (theme: Theme) => void;
|
|
||||||
isLoggedIn?: boolean;
|
|
||||||
}>();
|
}>();
|
||||||
let installing = $state(false);
|
let installing = $state(false);
|
||||||
let showSignInModal = $state(false);
|
|
||||||
let modalElement: HTMLElement;
|
let modalElement: HTMLElement;
|
||||||
|
|
||||||
function handleFavoriteClick() {
|
|
||||||
if (isLoggedIn && toggleFavorite && theme) {
|
|
||||||
toggleFavorite(theme);
|
|
||||||
} else {
|
|
||||||
showSignInModal = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Function to get related themes
|
// Function to get related themes
|
||||||
function getRelatedThemes() {
|
function getRelatedThemes() {
|
||||||
if (!theme) return [];
|
|
||||||
return allThemes
|
return allThemes
|
||||||
.filter((t: Theme) => !!t && t.id !== theme.id)
|
.filter((t: Theme) => t.id !== theme.id)
|
||||||
.sort(
|
.sort((a: Theme, b: Theme) => a.name.localeCompare(theme.name) - b.name.localeCompare(theme.name))
|
||||||
(a: Theme, b: Theme) =>
|
|
||||||
a.name.localeCompare(theme.name) - b.name.localeCompare(theme.name),
|
|
||||||
)
|
|
||||||
.slice(0, 4);
|
.slice(0, 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,69 +72,36 @@
|
|||||||
onclick={(e) => e.stopPropagation()}
|
onclick={(e) => e.stopPropagation()}
|
||||||
onkeydown={(e) => e.stopPropagation()}
|
onkeydown={(e) => e.stopPropagation()}
|
||||||
>
|
>
|
||||||
{#if theme}
|
|
||||||
<div class="relative h-auto">
|
<div class="relative h-auto">
|
||||||
<div class="absolute top-0 right-0 flex gap-1 items-center">
|
<button class="absolute top-0 right-0 p-2 text-xl font-bold text-gray-600 font-IconFamily dark:text-gray-200" onclick={() => hideModal()}>
|
||||||
<button class="p-2 text-xl font-bold text-gray-600 font-IconFamily dark:text-gray-200" onclick={() => hideModal()}>
|
{'\ued8a'}
|
||||||
{'\ued8a'}
|
</button>
|
||||||
</button>
|
<h2 class="mb-4 text-2xl font-bold">
|
||||||
</div>
|
|
||||||
<h2 class="mb-2 text-2xl font-bold">
|
|
||||||
{theme.name}
|
{theme.name}
|
||||||
</h2>
|
</h2>
|
||||||
<div class="flex gap-4 mb-4 text-sm text-zinc-600 dark:text-zinc-400">
|
<img src={theme.marqueeImage} alt="Theme Cover" class="object-cover mb-4 w-full rounded-md" />
|
||||||
<span class="flex items-center gap-1.5">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M3 16.5v2.25A2.25 2.25 0 005.25 21h13.5A2.25 2.25 0 0021 18.75V16.5M16.5 12L12 16.5m0 0L7.5 12m4.5 4.5V3" />
|
|
||||||
</svg>
|
|
||||||
{(theme.download_count ?? 0).toLocaleString()} downloads
|
|
||||||
</span>
|
|
||||||
<span class="flex items-center gap-1.5">
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill={theme.is_favorited ? 'currentColor' : 'none'} stroke="currentColor" stroke-width="1.5" class="w-4 h-4">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
|
|
||||||
</svg>
|
|
||||||
{(theme.favorite_count ?? 0).toLocaleString()} favorites
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<img src={theme.marqueeImage || theme.coverImage} alt="Theme Cover" class="object-cover mb-4 w-full rounded-md" />
|
|
||||||
<p class="mb-4 text-gray-700 dark:text-gray-300">
|
<p class="mb-4 text-gray-700 dark:text-gray-300">
|
||||||
{theme.description}
|
{theme.description}
|
||||||
</p>
|
</p>
|
||||||
<div class="flex flex-wrap gap-2 mt-4 justify-end items-center">
|
{#if currentThemes.includes(theme.id)}
|
||||||
{#if toggleFavorite && theme}
|
<button onclick={async () => {installing = true; await onRemove(theme.id); installing = false}} class="flex relative justify-center items-center px-4 py-2 mt-4 ml-auto w-32 text-black rounded-full dark:text-white bg-zinc-300 dark:bg-zinc-700 dark:hover:bg-zinc-600/50 hover:bg-zinc-200">
|
||||||
<button
|
{#if installing}
|
||||||
type="button"
|
<svg class="absolute w-4 h-4 { installing ? 'opacity-100' : 'opacity-0' }" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||||
class="flex items-center gap-2 px-4 py-2 rounded-full transition-all duration-200 hover:scale-105 active:scale-95 {theme.is_favorited ? 'text-red-500 bg-red-500/10 dark:bg-red-500/20' : 'bg-zinc-200 dark:bg-zinc-700 dark:text-white hover:bg-zinc-300 dark:hover:bg-zinc-600'}"
|
<path stroke="currentColor" fill="currentColor" class="origin-center animate-spin-fast" d="M2,12A11.2,11.2,0,0,1,13,1.05C12.67,1,12.34,1,12,1a11,11,0,0,0,0,22c.34,0,.67,0,1-.05C6,23,2,17.74,2,12Z"/>
|
||||||
onclick={handleFavoriteClick}
|
|
||||||
title={isLoggedIn ? (theme.is_favorited ? 'Remove from favorites' : 'Add to favorites') : 'Sign in to favorite themes'}
|
|
||||||
aria-label={theme.is_favorited ? 'Unfavorite' : 'Favorite'}
|
|
||||||
>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill={theme.is_favorited ? 'currentColor' : 'none'} stroke="currentColor" stroke-width="2" class="w-5 h-5">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
|
|
||||||
</svg>
|
</svg>
|
||||||
{theme.is_favorited ? 'Favorited' : 'Favorite'}
|
{/if}
|
||||||
</button>
|
<span class="{ installing ? 'opacity-0' : 'opacity-100' }">Remove</span>
|
||||||
{/if}
|
</button>
|
||||||
{#if currentThemes.includes(theme.id)}
|
{:else}
|
||||||
<button onclick={async () => {installing = true; await onRemove(theme.id); installing = false}} class="flex relative justify-center items-center px-4 py-2 w-32 text-black rounded-full dark:text-white bg-zinc-300 dark:bg-zinc-700 dark:hover:bg-zinc-600/50 hover:bg-zinc-200 transition-all duration-200 hover:scale-105 active:scale-95">
|
<button onclick={async () => {installing = true; await onInstall(theme.id); installing = false}} class="flex relative justify-center items-center px-4 py-2 mt-4 ml-auto w-32 text-black rounded-full dark:text-white bg-zinc-300 dark:bg-zinc-700 dark:hover:bg-zinc-600/50 hover:bg-zinc-200">
|
||||||
{#if installing}
|
{#if installing}
|
||||||
<svg class="absolute w-4 h-4 { installing ? 'opacity-100' : 'opacity-0' }" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
<svg class="absolute w-4 h-4 { installing ? 'opacity-100' : 'opacity-0' }" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path stroke="currentColor" fill="currentColor" class="origin-center animate-spin-fast" d="M2,12A11.2,11.2,0,0,1,13,1.05C12.67,1,12.34,1,12,1a11,11,0,0,0,0,22c.34,0,.67,0,1-.05C6,23,2,17.74,2,12Z"/>
|
<path stroke="currentColor" fill="currentColor" class="origin-center animate-spin-fast" d="M2,12A11.2,11.2,0,0,1,13,1.05C12.67,1,12.34,1,12,1a11,11,0,0,0,0,22c.34,0,.67,0,1-.05C6,23,2,17.74,2,12Z"/>
|
||||||
</svg>
|
</svg>
|
||||||
{/if}
|
{/if}
|
||||||
<span class="{ installing ? 'opacity-0' : 'opacity-100' }">Remove</span>
|
<span class="{ installing ? 'opacity-0' : 'opacity-100' }">Install</span>
|
||||||
</button>
|
</button>
|
||||||
{:else}
|
{/if}
|
||||||
<button onclick={async () => {installing = true; await onInstall(theme.id); installing = false}} class="flex relative justify-center items-center px-4 py-2 w-32 text-black rounded-full dark:text-white bg-zinc-300 dark:bg-zinc-700 dark:hover:bg-zinc-600/50 hover:bg-zinc-200 transition-all duration-200 hover:scale-105 active:scale-95">
|
|
||||||
{#if installing}
|
|
||||||
<svg class="absolute w-4 h-4 { installing ? 'opacity-100' : 'opacity-0' }" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path stroke="currentColor" fill="currentColor" class="origin-center animate-spin-fast" d="M2,12A11.2,11.2,0,0,1,13,1.05C12.67,1,12.34,1,12,1a11,11,0,0,0,0,22c.34,0,.67,0,1-.05C6,23,2,17.74,2,12Z"/>
|
|
||||||
</svg>
|
|
||||||
{/if}
|
|
||||||
<span class="{ installing ? 'opacity-0' : 'opacity-100' }">Install</span>
|
|
||||||
</button>
|
|
||||||
{/if}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="my-8 border-b border-zinc-200 dark:border-zinc-700"></div>
|
<div class="my-8 border-b border-zinc-200 dark:border-zinc-700"></div>
|
||||||
|
|
||||||
@@ -165,22 +116,11 @@
|
|||||||
{relatedTheme.name}
|
{relatedTheme.name}
|
||||||
</div>
|
</div>
|
||||||
<div class="absolute bottom-0 z-0 w-full h-3/4 to-transparent from-black/80 bg-linear-to-t"></div>
|
<div class="absolute bottom-0 z-0 w-full h-3/4 to-transparent from-black/80 bg-linear-to-t"></div>
|
||||||
<img src={relatedTheme.marqueeImage || relatedTheme.coverImage} alt="Theme Preview" class="object-cover w-full h-48" />
|
<img src={relatedTheme.marqueeImage} alt="Theme Preview" class="object-cover w-full h-48" />
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
|
||||||
<div class="flex justify-center items-center h-full text-zinc-600 dark:text-zinc-300">
|
|
||||||
<button class="px-4 py-2 rounded-lg bg-zinc-200 dark:bg-zinc-700 transition-all duration-200 hover:scale-105 active:scale-95" onclick={() => hideModal()}>
|
|
||||||
Close
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if showSignInModal}
|
|
||||||
<SignInToFavoriteModal onClose={() => (showSignInModal = false)} />
|
|
||||||
{/if}
|
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import type { CustomTheme, ThemeList } from '@/types/CustomThemes'
|
import type { CustomTheme, ThemeList } from '@/types/CustomThemes'
|
||||||
import { onDestroy, onMount } from 'svelte'
|
import { onDestroy, onMount } from 'svelte'
|
||||||
import browser from 'webextension-polyfill'
|
|
||||||
import { OpenThemeCreator } from '@/plugins/built-in/themes/ThemeCreator'
|
import { OpenThemeCreator } from '@/plugins/built-in/themes/ThemeCreator'
|
||||||
import { OpenStorePage } from '@/seqta/ui/renderStore'
|
import { OpenStorePage } from '@/seqta/ui/renderStore'
|
||||||
import { themeUpdates } from '@/interface/hooks/ThemeUpdates'
|
import { themeUpdates } from '@/interface/hooks/ThemeUpdates'
|
||||||
import { closeExtensionPopup } from '@/seqta/utils/Closers/closeExtensionPopup'
|
import { closeExtensionPopup } from '@/seqta/utils/Closers/closeExtensionPopup'
|
||||||
import { ThemeManager } from '@/plugins/built-in/themes/theme-manager'
|
import { ThemeManager } from '@/plugins/built-in/themes/theme-manager'
|
||||||
import { cloudAuth } from '@/seqta/utils/CloudAuth'
|
|
||||||
import SignInToFavoriteModal from '@/interface/components/SignInToFavoriteModal.svelte'
|
|
||||||
|
|
||||||
const themeManager = ThemeManager.getInstance();
|
const themeManager = ThemeManager.getInstance();
|
||||||
|
|
||||||
@@ -16,26 +13,13 @@
|
|||||||
let { isEditMode } = $props<{ isEditMode: boolean }>();
|
let { isEditMode } = $props<{ isEditMode: boolean }>();
|
||||||
let isDragging = $state(false);
|
let isDragging = $state(false);
|
||||||
let tempTheme = $state(null);
|
let tempTheme = $state(null);
|
||||||
let favoriteStatus = $state<Record<string, boolean>>({});
|
|
||||||
let cloudLoggedIn = $state(cloudAuth.state.isLoggedIn);
|
|
||||||
let prevLoggedIn = $state(false);
|
|
||||||
let showSignInModal = $state(false);
|
|
||||||
|
|
||||||
cloudAuth.subscribe((s) => {
|
const handleThemeClick = async (theme: CustomTheme) => {
|
||||||
const now = s.isLoggedIn;
|
|
||||||
if (now && !prevLoggedIn && themes) void fetchThemes();
|
|
||||||
prevLoggedIn = now;
|
|
||||||
cloudLoggedIn = now;
|
|
||||||
});
|
|
||||||
|
|
||||||
const handleThemeClick = async (theme: CustomTheme, e: MouseEvent) => {
|
|
||||||
if (isEditMode) return;
|
if (isEditMode) return;
|
||||||
if (theme.id === themes?.selectedTheme) {
|
if (theme.id === themes?.selectedTheme) {
|
||||||
themeManager.setTransitionPoint(e.clientX, e.clientY);
|
|
||||||
await themeManager.disableTheme();
|
await themeManager.disableTheme();
|
||||||
themes.selectedTheme = '';
|
themes.selectedTheme = '';
|
||||||
} else {
|
} else {
|
||||||
themeManager.setTransitionPoint(e.clientX, e.clientY);
|
|
||||||
await themeManager.setTheme(theme.id);
|
await themeManager.setTheme(theme.id);
|
||||||
if (!themes) return;
|
if (!themes) return;
|
||||||
themes.selectedTheme = theme.id;
|
themes.selectedTheme = theme.id;
|
||||||
@@ -101,55 +85,11 @@
|
|||||||
themes: await themeManager.getAvailableThemes(),
|
themes: await themeManager.getAvailableThemes(),
|
||||||
selectedTheme: themeManager.getSelectedThemeId() || '',
|
selectedTheme: themeManager.getSelectedThemeId() || '',
|
||||||
}
|
}
|
||||||
if (themes && cloudLoggedIn) {
|
|
||||||
const token = await cloudAuth.getStoredToken();
|
|
||||||
if (token) {
|
|
||||||
const status: Record<string, boolean> = {};
|
|
||||||
await Promise.all(
|
|
||||||
themes.themes.map(async (t) => {
|
|
||||||
try {
|
|
||||||
const res = (await browser.runtime.sendMessage({
|
|
||||||
type: 'fetchThemeDetails',
|
|
||||||
themeId: t.id,
|
|
||||||
token,
|
|
||||||
})) as { success?: boolean; data?: { theme?: { is_favorited?: boolean } } };
|
|
||||||
if (res?.success && res?.data?.theme) {
|
|
||||||
status[t.id] = !!res.data.theme.is_favorited;
|
|
||||||
}
|
|
||||||
} catch {
|
|
||||||
// Theme may not exist on store (e.g. locally created)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
);
|
|
||||||
favoriteStatus = status;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
favoriteStatus = {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleToggleFavorite = async (theme: CustomTheme, e: MouseEvent) => {
|
|
||||||
e.stopPropagation();
|
|
||||||
if (!cloudLoggedIn) {
|
|
||||||
showSignInModal = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
const token = await cloudAuth.getStoredToken();
|
|
||||||
if (!token) return;
|
|
||||||
const isFavorite = !favoriteStatus[theme.id];
|
|
||||||
const result = (await browser.runtime.sendMessage({
|
|
||||||
type: 'cloudFavorite',
|
|
||||||
themeId: theme.id,
|
|
||||||
token,
|
|
||||||
action: isFavorite ? 'favorite' : 'unfavorite',
|
|
||||||
})) as { success?: boolean };
|
|
||||||
if (result?.success) {
|
|
||||||
favoriteStatus = { ...favoriteStatus, [theme.id]: isFavorite };
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
await fetchThemes();
|
await fetchThemes();
|
||||||
|
|
||||||
themeUpdates.addListener(fetchThemes);
|
themeUpdates.addListener(fetchThemes);
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -187,7 +127,7 @@
|
|||||||
{#each themes.themes as theme (theme.id)}
|
{#each themes.themes as theme (theme.id)}
|
||||||
<button
|
<button
|
||||||
class="relative group w-full aspect-theme flex justify-center items-center rounded-xl transition ring dark:ring-white ring-zinc-300 {theme.id === themes.selectedTheme ? 'dark:ring-2 ring-4' : 'ring-0'}"
|
class="relative group w-full aspect-theme flex justify-center items-center rounded-xl transition ring dark:ring-white ring-zinc-300 {theme.id === themes.selectedTheme ? 'dark:ring-2 ring-4' : 'ring-0'}"
|
||||||
onclick={(e) => handleThemeClick(theme, e)}
|
onclick={() => handleThemeClick(theme)}
|
||||||
>
|
>
|
||||||
{#if isEditMode}
|
{#if isEditMode}
|
||||||
<div
|
<div
|
||||||
@@ -202,18 +142,6 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if !isEditMode}
|
{#if !isEditMode}
|
||||||
<div
|
|
||||||
class="flex absolute right-24 top-1/4 z-20 place-items-center p-2 w-8 h-8 text-center rounded-full opacity-0 transition-all -translate-y-1/2 group-hover:opacity-100 group-hover:top-1/2 {(favoriteStatus[theme.id] ?? false) ? 'text-red-400' : 'text-white/80'} bg-black/50"
|
|
||||||
onclick={(event) => handleToggleFavorite(theme, event)}
|
|
||||||
onkeydown={(event) => { if (event.key === 'Enter' || event.key === ' ') handleToggleFavorite(theme, event as any) }}
|
|
||||||
role="button"
|
|
||||||
tabindex="-1"
|
|
||||||
title={cloudLoggedIn ? ((favoriteStatus[theme.id] ?? false) ? 'Remove from favorites' : 'Add to favorites') : 'Sign in to favorite themes'}
|
|
||||||
>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill={(favoriteStatus[theme.id] ?? false) ? 'currentColor' : 'none'} stroke="currentColor" stroke-width="2" class="w-5 h-5">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z" />
|
|
||||||
</svg>
|
|
||||||
</div>
|
|
||||||
<div
|
<div
|
||||||
class="absolute z-20 flex w-8 h-8 p-2 text-white transition-all rounded-full delay-[20ms] opacity-0 top-1/4 right-2 bg-black/50 place-items-center group-hover:opacity-100 group-hover:top-1/2 -translate-y-1/2"
|
class="absolute z-20 flex w-8 h-8 p-2 text-white transition-all rounded-full delay-[20ms] opacity-0 top-1/4 right-2 bg-black/50 place-items-center group-hover:opacity-100 group-hover:top-1/2 -translate-y-1/2"
|
||||||
onclick={(event) => { event.stopPropagation(); OpenThemeCreator(theme.id); closeExtensionPopup() }}
|
onclick={(event) => { event.stopPropagation(); OpenThemeCreator(theme.id); closeExtensionPopup() }}
|
||||||
@@ -281,7 +209,3 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if showSignInModal}
|
|
||||||
<SignInToFavoriteModal onClose={() => (showSignInModal = false)} />
|
|
||||||
{/if}
|
|
||||||
|
|||||||
@@ -1,20 +1,8 @@
|
|||||||
import { type DBSchema, type IDBPDatabase, openDB } from "idb";
|
import { type DBSchema, type IDBPDatabase, openDB } from 'idb';
|
||||||
|
|
||||||
/**
|
|
||||||
* Defines the schema for the IndexedDB database used for storing background image data.
|
|
||||||
*
|
|
||||||
* @interface BackgroundDB
|
|
||||||
* @extends {DBSchema}
|
|
||||||
* @property {object} backgrounds - The object store for background images.
|
|
||||||
* @property {string} backgrounds.key - The type of the key for the object store (in this case, it's `id` as defined in `keyPath`).
|
|
||||||
* @property {object} backgrounds.value - The structure of the objects stored.
|
|
||||||
* @property {string} backgrounds.value.id - The unique identifier for the background image record.
|
|
||||||
* @property {string} backgrounds.value.type - The MIME type of the image (e.g., "image/png", "image/jpeg").
|
|
||||||
* @property {Blob} backgrounds.value.blob - The binary large object (Blob) containing the image data.
|
|
||||||
*/
|
|
||||||
interface BackgroundDB extends DBSchema {
|
interface BackgroundDB extends DBSchema {
|
||||||
backgrounds: {
|
backgrounds: {
|
||||||
key: string; // Corresponds to the 'id' property due to keyPath: "id"
|
key: string;
|
||||||
value: {
|
value: {
|
||||||
id: string;
|
id: string;
|
||||||
type: string;
|
type: string;
|
||||||
@@ -25,100 +13,43 @@ interface BackgroundDB extends DBSchema {
|
|||||||
|
|
||||||
let db: IDBPDatabase<BackgroundDB> | null = null;
|
let db: IDBPDatabase<BackgroundDB> | null = null;
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes and opens an IndexedDB connection or returns an existing one.
|
|
||||||
* If the database doesn't exist or needs an upgrade, the `upgrade` callback
|
|
||||||
* creates the 'backgrounds' object store with 'id' as the keyPath.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @returns {Promise<IDBPDatabase<BackgroundDB>>} A promise that resolves with the database instance.
|
|
||||||
*/
|
|
||||||
export async function openDatabase(): Promise<IDBPDatabase<BackgroundDB>> {
|
export async function openDatabase(): Promise<IDBPDatabase<BackgroundDB>> {
|
||||||
if (db) return db;
|
if (db) return db;
|
||||||
|
|
||||||
db = await openDB<BackgroundDB>("BackgroundDB", 1, {
|
db = await openDB<BackgroundDB>('BackgroundDB', 1, {
|
||||||
upgrade(db: IDBPDatabase<BackgroundDB>) {
|
upgrade(db: IDBPDatabase<BackgroundDB>) {
|
||||||
db.createObjectStore("backgrounds", { keyPath: "id" });
|
db.createObjectStore('backgrounds', { keyPath: 'id' });
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
return db;
|
return db;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export async function readAllData(): Promise<Array<{ id: string; type: string; blob: Blob }>> {
|
||||||
* Retrieves all background image records from the 'backgrounds' object store in IndexedDB.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @returns {Promise<Array<{id: string, type: string, blob: Blob}>>} A promise that resolves with an array of all background image records.
|
|
||||||
*/
|
|
||||||
export async function readAllData(): Promise<
|
|
||||||
Array<{ id: string; type: string; blob: Blob }>
|
|
||||||
> {
|
|
||||||
const db = await openDatabase();
|
const db = await openDatabase();
|
||||||
return db.getAll("backgrounds");
|
return db.getAll('backgrounds');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export async function writeData(id: string, type: string, blob: Blob): Promise<void> {
|
||||||
* Writes or updates a background image record in the 'backgrounds' object store.
|
|
||||||
* If a record with the given `id` already exists, it will be updated. Otherwise, a new record is created.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @param {string} id - The unique identifier for the background image record.
|
|
||||||
* @param {string} type - The MIME type of the image (e.g., "image/png").
|
|
||||||
* @param {Blob} blob - The Blob object containing the image data.
|
|
||||||
* @returns {Promise<void>} A promise that resolves when the data has been successfully written.
|
|
||||||
*/
|
|
||||||
export async function writeData(
|
|
||||||
id: string,
|
|
||||||
type: string,
|
|
||||||
blob: Blob,
|
|
||||||
): Promise<void> {
|
|
||||||
const db = await openDatabase();
|
const db = await openDatabase();
|
||||||
await db.put("backgrounds", { id, type, blob });
|
await db.put('backgrounds', { id, type, blob });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Deletes a background image record from the 'backgrounds' object store by its ID.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @param {string} id - The unique identifier of the background image record to delete.
|
|
||||||
* @returns {Promise<void>} A promise that resolves when the data has been successfully deleted.
|
|
||||||
*/
|
|
||||||
export async function deleteData(id: string): Promise<void> {
|
export async function deleteData(id: string): Promise<void> {
|
||||||
const db = await openDatabase();
|
const db = await openDatabase();
|
||||||
await db.delete("backgrounds", id);
|
await db.delete('backgrounds', id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Clears all records from the 'backgrounds' object store in IndexedDB.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @returns {Promise<void>} A promise that resolves when all data has been successfully cleared.
|
|
||||||
*/
|
|
||||||
export async function clearAllData(): Promise<void> {
|
export async function clearAllData(): Promise<void> {
|
||||||
const db = await openDatabase();
|
const db = await openDatabase();
|
||||||
await db.clear("backgrounds");
|
await db.clear('backgrounds');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export async function getDataById(id: string): Promise<{ id: string; type: string; blob: Blob } | undefined> {
|
||||||
* Retrieves a single background image record from the 'backgrounds' object store by its ID.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @param {string} id - The unique identifier of the background image record to retrieve.
|
|
||||||
* @returns {Promise<{id: string, type: string, blob: Blob} | undefined>} A promise that resolves with the
|
|
||||||
* background image record if found, or undefined otherwise.
|
|
||||||
*/
|
|
||||||
export async function getDataById(
|
|
||||||
id: string,
|
|
||||||
): Promise<{ id: string; type: string; blob: Blob } | undefined> {
|
|
||||||
const db = await openDatabase();
|
const db = await openDatabase();
|
||||||
return db.get("backgrounds", id);
|
return db.get('backgrounds', id);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Closes the active IndexedDB connection and nullifies the global `db` variable.
|
|
||||||
* This is important to release resources and allow for proper database management.
|
|
||||||
*/
|
|
||||||
export function closeDatabase(): void {
|
export function closeDatabase(): void {
|
||||||
if (db) {
|
if (db) {
|
||||||
db.close();
|
db.close();
|
||||||
@@ -126,33 +57,19 @@ export function closeDatabase(): void {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
// Helper function to check if IndexedDB is supported
|
||||||
* Checks if IndexedDB is supported by the current browser environment.
|
|
||||||
*
|
|
||||||
* @returns {boolean} True if IndexedDB is supported, false otherwise.
|
|
||||||
*/
|
|
||||||
export function isIndexedDBSupported(): boolean {
|
export function isIndexedDBSupported(): boolean {
|
||||||
return "indexedDB" in window;
|
return 'indexedDB' in window;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
// Helper function to check if there's enough storage space
|
||||||
* Estimates available storage space and checks if it's sufficient for the specified `requiredSpace`.
|
export async function hasEnoughStorageSpace(requiredSpace: number): Promise<boolean> {
|
||||||
* Uses the `navigator.storage.estimate()` API if available.
|
if ('storage' in navigator && 'estimate' in navigator.storage) {
|
||||||
* If the API is not available or cannot determine space, it defaults to assuming enough space is available.
|
|
||||||
*
|
|
||||||
* @async
|
|
||||||
* @param {number} requiredSpace - The amount of storage space required, in bytes.
|
|
||||||
* @returns {Promise<boolean>} A promise that resolves with true if enough space is estimated to be available, false otherwise.
|
|
||||||
*/
|
|
||||||
export async function hasEnoughStorageSpace(
|
|
||||||
requiredSpace: number,
|
|
||||||
): Promise<boolean> {
|
|
||||||
if ("storage" in navigator && "estimate" in navigator.storage) {
|
|
||||||
const { quota, usage } = await navigator.storage.estimate();
|
const { quota, usage } = await navigator.storage.estimate();
|
||||||
if (quota !== undefined && usage !== undefined) {
|
if (quota !== undefined && usage !== undefined) {
|
||||||
return quota - usage > requiredSpace;
|
return (quota - usage) > requiredSpace;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// If we can't determine, assume there's enough space
|
// If we can't determine, assume there's enough space
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -1,21 +1,11 @@
|
|||||||
type BackgroundUpdateCallback = () => void;
|
type BackgroundUpdateCallback = () => void;
|
||||||
|
|
||||||
/**
|
|
||||||
* A singleton class used to notify listeners about generic background updates or events.
|
|
||||||
* These updates typically signify that UI components or other parts of the application
|
|
||||||
* might need to refresh or re-evaluate background-related data (e.g., after a new background
|
|
||||||
* image is added, removed, or changed).
|
|
||||||
*/
|
|
||||||
class BackgroundUpdates {
|
class BackgroundUpdates {
|
||||||
private static instance: BackgroundUpdates;
|
private static instance: BackgroundUpdates;
|
||||||
private listeners: Set<BackgroundUpdateCallback> = new Set();
|
private listeners: Set<BackgroundUpdateCallback> = new Set();
|
||||||
|
|
||||||
private constructor() {}
|
private constructor() {}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the singleton instance of the BackgroundUpdates class.
|
|
||||||
* @returns {BackgroundUpdates} The singleton instance.
|
|
||||||
*/
|
|
||||||
public static getInstance(): BackgroundUpdates {
|
public static getInstance(): BackgroundUpdates {
|
||||||
if (!BackgroundUpdates.instance) {
|
if (!BackgroundUpdates.instance) {
|
||||||
BackgroundUpdates.instance = new BackgroundUpdates();
|
BackgroundUpdates.instance = new BackgroundUpdates();
|
||||||
@@ -23,33 +13,16 @@ class BackgroundUpdates {
|
|||||||
return BackgroundUpdates.instance;
|
return BackgroundUpdates.instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a callback function to be invoked when a background update is triggered.
|
|
||||||
*
|
|
||||||
* @param {BackgroundUpdateCallback} callback The function to call when a background update occurs.
|
|
||||||
* This callback takes no arguments and returns void.
|
|
||||||
*/
|
|
||||||
public addListener(callback: BackgroundUpdateCallback): void {
|
public addListener(callback: BackgroundUpdateCallback): void {
|
||||||
this.listeners.add(callback);
|
this.listeners.add(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Unregisters a previously added callback function.
|
|
||||||
* After calling this method, the provided callback will no longer be invoked when a background update is triggered.
|
|
||||||
*
|
|
||||||
* @param {BackgroundUpdateCallback} callback The callback function to remove from the listeners.
|
|
||||||
*/
|
|
||||||
public removeListener(callback: BackgroundUpdateCallback): void {
|
public removeListener(callback: BackgroundUpdateCallback): void {
|
||||||
this.listeners.delete(callback);
|
this.listeners.delete(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Invokes all registered listener callbacks, signifying that a background update has occurred.
|
|
||||||
* This method should be called whenever a change to background data happens that requires
|
|
||||||
* other parts of the application to be notified.
|
|
||||||
*/
|
|
||||||
public triggerUpdate(): void {
|
public triggerUpdate(): void {
|
||||||
this.listeners.forEach((callback) => callback());
|
this.listeners.forEach(callback => callback());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
type SettingsPopupCallback = () => void;
|
type SettingsPopupCallback = () => void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This is a singleton that triggers an update when the settings popup is closed.
|
* This is a singleton that triggers an update when the settings popup is closed.
|
||||||
* This is used to close the colour picker.
|
* This is used to close the colour picker.
|
||||||
* Usage:
|
* Usage:
|
||||||
* settingsPopup.addListener(() => {
|
* settingsPopup.addListener(() => {
|
||||||
* console.log('Settings popup closed');
|
* console.log('Settings popup closed');
|
||||||
* });
|
* });
|
||||||
*/
|
*/
|
||||||
class SettingsPopup {
|
class SettingsPopup {
|
||||||
private static instance: SettingsPopup;
|
private static instance: SettingsPopup;
|
||||||
private listeners: Set<SettingsPopupCallback> = new Set();
|
private listeners: Set<SettingsPopupCallback> = new Set();
|
||||||
@@ -21,32 +21,16 @@ class SettingsPopup {
|
|||||||
return SettingsPopup.instance;
|
return SettingsPopup.instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a callback function to be invoked when the settings popup is closed.
|
|
||||||
*
|
|
||||||
* @param {SettingsPopupCallback} callback The function to call when the settings popup closes.
|
|
||||||
* This callback takes no arguments and returns void.
|
|
||||||
*/
|
|
||||||
public addListener(callback: SettingsPopupCallback): void {
|
public addListener(callback: SettingsPopupCallback): void {
|
||||||
this.listeners.add(callback);
|
this.listeners.add(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Unregisters a previously added callback function.
|
|
||||||
* After calling this method, the provided callback will no longer be invoked when the settings popup closes.
|
|
||||||
*
|
|
||||||
* @param {SettingsPopupCallback} callback The callback function to remove from the listeners.
|
|
||||||
*/
|
|
||||||
public removeListener(callback: SettingsPopupCallback): void {
|
public removeListener(callback: SettingsPopupCallback): void {
|
||||||
this.listeners.delete(callback);
|
this.listeners.delete(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Invokes all registered listener callbacks.
|
|
||||||
* This method should be called when the settings popup is closed to notify all subscribed components or services.
|
|
||||||
*/
|
|
||||||
public triggerClose(): void {
|
public triggerClose(): void {
|
||||||
this.listeners.forEach((callback) => callback());
|
this.listeners.forEach(callback => callback());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,21 +1,11 @@
|
|||||||
type ThemeUpdateCallback = () => void;
|
type ThemeUpdateCallback = () => void;
|
||||||
|
|
||||||
/**
|
|
||||||
* A singleton class used to notify listeners about theme-related updates.
|
|
||||||
* These updates can include events like theme changes, custom theme modifications,
|
|
||||||
* or any other event that might require UI components to refresh their appearance
|
|
||||||
* or re-apply theme styles.
|
|
||||||
*/
|
|
||||||
class ThemeUpdates {
|
class ThemeUpdates {
|
||||||
private static instance: ThemeUpdates;
|
private static instance: ThemeUpdates;
|
||||||
private listeners: Set<ThemeUpdateCallback> = new Set();
|
private listeners: Set<ThemeUpdateCallback> = new Set();
|
||||||
|
|
||||||
private constructor() {}
|
private constructor() {}
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the singleton instance of the ThemeUpdates class.
|
|
||||||
* @returns {ThemeUpdates} The singleton instance.
|
|
||||||
*/
|
|
||||||
public static getInstance(): ThemeUpdates {
|
public static getInstance(): ThemeUpdates {
|
||||||
if (!ThemeUpdates.instance) {
|
if (!ThemeUpdates.instance) {
|
||||||
ThemeUpdates.instance = new ThemeUpdates();
|
ThemeUpdates.instance = new ThemeUpdates();
|
||||||
@@ -23,33 +13,16 @@ class ThemeUpdates {
|
|||||||
return ThemeUpdates.instance;
|
return ThemeUpdates.instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a callback function to be invoked when a theme update is triggered.
|
|
||||||
*
|
|
||||||
* @param {ThemeUpdateCallback} callback The function to call when a theme update occurs.
|
|
||||||
* This callback takes no arguments and returns void.
|
|
||||||
*/
|
|
||||||
public addListener(callback: ThemeUpdateCallback): void {
|
public addListener(callback: ThemeUpdateCallback): void {
|
||||||
this.listeners.add(callback);
|
this.listeners.add(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Unregisters a previously added callback function.
|
|
||||||
* After calling this method, the provided callback will no longer be invoked when a theme update is triggered.
|
|
||||||
*
|
|
||||||
* @param {ThemeUpdateCallback} callback The callback function to remove from the listeners.
|
|
||||||
*/
|
|
||||||
public removeListener(callback: ThemeUpdateCallback): void {
|
public removeListener(callback: ThemeUpdateCallback): void {
|
||||||
this.listeners.delete(callback);
|
this.listeners.delete(callback);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Invokes all registered listener callbacks, signifying that a theme-related update has occurred.
|
|
||||||
* This method should be called whenever a change related to themes happens that requires
|
|
||||||
* other parts of the application to be notified.
|
|
||||||
*/
|
|
||||||
public triggerUpdate(): void {
|
public triggerUpdate(): void {
|
||||||
this.listeners.forEach((callback) => callback());
|
this.listeners.forEach(callback => callback());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
export let selectedBackground = $state<string | null>(null);
|
export let selectedBackground = $state<string | null>(null);
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
@import "./components/ColourPicker.css";
|
@import './components/ColourPicker.css';
|
||||||
|
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@@ -47,4 +47,4 @@ input {
|
|||||||
|
|
||||||
.editorHeight {
|
.editorHeight {
|
||||||
height: calc(100vh - 58px);
|
height: calc(100vh - 58px);
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
<title>BetterSEQTA+ Settings</title>
|
<title>BetterSEQTA+ Settings</title>
|
||||||
</head>
|
</head>
|
||||||
<body class="h-[600px]">
|
<body class="h-[600px]">
|
||||||
<div id="app" style="height: 100%"></div>
|
<div id="app" style="height: 100%;"></div>
|
||||||
<script type="module" src="./index.ts"></script>
|
<script type="module" src="./index.ts"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
+15
-20
@@ -1,34 +1,29 @@
|
|||||||
import "./index.css";
|
import "./index.css"
|
||||||
import Settings from "./pages/settings.svelte";
|
import Settings from "./pages/settings.svelte"
|
||||||
import IconFamily from "@/resources/fonts/IconFamily.woff";
|
import IconFamily from '@/resources/fonts/IconFamily.woff'
|
||||||
import browser from "webextension-polyfill";
|
import browser from "webextension-polyfill"
|
||||||
import renderSvelte from "./main";
|
import renderSvelte from "./main"
|
||||||
import { initializeSettingsState } from "@/seqta/utils/listeners/SettingsState";
|
|
||||||
|
|
||||||
function InjectCustomIcons() {
|
function InjectCustomIcons() {
|
||||||
console.info("[BetterSEQTA+] Injecting Icons");
|
console.info('[BetterSEQTA+] Injecting Icons')
|
||||||
|
|
||||||
const style = document.createElement("style");
|
const style = document.createElement('style')
|
||||||
style.setAttribute("type", "text/css");
|
style.setAttribute('type', 'text/css')
|
||||||
style.innerHTML = `
|
style.innerHTML = `
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'IconFamily';
|
font-family: 'IconFamily';
|
||||||
src: url('${browser.runtime.getURL(IconFamily)}') format('woff');
|
src: url('${browser.runtime.getURL(IconFamily)}') format('woff');
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}`;
|
}`
|
||||||
document.head.appendChild(style);
|
document.head.appendChild(style)
|
||||||
}
|
}
|
||||||
|
|
||||||
const mountPoint = document.getElementById("app");
|
const mountPoint = document.getElementById('app')
|
||||||
if (!mountPoint) {
|
if (!mountPoint) {
|
||||||
console.error("Mount point #app not found");
|
console.error('Mount point #app not found')
|
||||||
throw new Error("Mount point #app not found");
|
throw new Error('Mount point #app not found')
|
||||||
}
|
}
|
||||||
|
|
||||||
InjectCustomIcons();
|
InjectCustomIcons()
|
||||||
|
renderSvelte(Settings, mountPoint, { standalone: true })
|
||||||
(async () => {
|
|
||||||
await initializeSettingsState();
|
|
||||||
renderSvelte(Settings, mountPoint, { standalone: true });
|
|
||||||
})();
|
|
||||||
Vendored
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
import "./index.css";
|
import './index.css';
|
||||||
|
|
||||||
declare module "*.png";
|
declare module "*.png";
|
||||||
declare module "*.svg";
|
declare module "*.svg";
|
||||||
declare module "*.jpeg";
|
declare module "*.jpeg";
|
||||||
declare module "*.jpg";
|
declare module "*.jpg";
|
||||||
+8
-10
@@ -1,6 +1,6 @@
|
|||||||
import { mount } from "svelte";
|
import { mount } from "svelte"
|
||||||
import type { SvelteComponent } from "svelte";
|
import type { SvelteComponent } from "svelte"
|
||||||
import style from "./index.css?inline";
|
import style from './index.css?inline'
|
||||||
|
|
||||||
export default function renderSvelte(
|
export default function renderSvelte(
|
||||||
Component: SvelteComponent | any,
|
Component: SvelteComponent | any,
|
||||||
@@ -13,13 +13,11 @@ export default function renderSvelte(
|
|||||||
standalone: false,
|
standalone: false,
|
||||||
...props,
|
...props,
|
||||||
},
|
},
|
||||||
});
|
})
|
||||||
|
|
||||||
if (mountPoint instanceof ShadowRoot) {
|
const styleElement = document.createElement('style')
|
||||||
const styleElement = document.createElement("style");
|
styleElement.textContent = style
|
||||||
styleElement.textContent = style;
|
mountPoint.appendChild(styleElement)
|
||||||
mountPoint.appendChild(styleElement);
|
|
||||||
}
|
|
||||||
|
|
||||||
return app;
|
return app
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,48 +1,43 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import TabbedContainer from "../components/TabbedContainer.svelte";
|
import TabbedContainer from '../components/TabbedContainer.svelte';
|
||||||
import Settings from "./settings/general.svelte";
|
import Settings from './settings/general.svelte';
|
||||||
import Shortcuts from "./settings/shortcuts.svelte";
|
import Shortcuts from './settings/shortcuts.svelte';
|
||||||
import Theme from "./settings/theme.svelte";
|
import Theme from './settings/theme.svelte';
|
||||||
import browser from "webextension-polyfill";
|
import browser from 'webextension-polyfill';
|
||||||
|
|
||||||
import { standalone as StandaloneStore } from "../utils/standalone.svelte";
|
import { standalone as StandaloneStore } from '../utils/standalone.svelte';
|
||||||
import { onMount } from "svelte";
|
import { onMount } from 'svelte'
|
||||||
import { settingsState } from "@/seqta/utils/listeners/SettingsState";
|
import { initializeSettingsState, settingsState } from '@/seqta/utils/listeners/SettingsState'
|
||||||
|
|
||||||
import { closeExtensionPopup } from "@/seqta/utils/Closers/closeExtensionPopup";
|
import { closeExtensionPopup } from "@/seqta/utils/Closers/closeExtensionPopup"
|
||||||
import { OpenAboutPage } from "@/seqta/utils/Openers/OpenAboutPage";
|
import { OpenAboutPage } from "@/seqta/utils/Openers/OpenAboutPage"
|
||||||
import { OpenWhatsNewPopup } from "@/seqta/utils/Openers/OpenWhatsNewPopup";
|
import { OpenWhatsNewPopup } from "@/seqta/utils/Whatsnew"
|
||||||
//import { OpenMinecraftServerPopup } from "@/seqta/utils/Openers/OpenMinecraftServerPopup";
|
|
||||||
|
|
||||||
import ColourPicker from "../components/ColourPicker.svelte";
|
import ColourPicker from '../components/ColourPicker.svelte'
|
||||||
import DisclaimerModal from "../components/DisclaimerModal.svelte";
|
import { settingsPopup } from '../hooks/SettingsPopup'
|
||||||
import { settingsPopup } from "../hooks/SettingsPopup";
|
|
||||||
|
|
||||||
let devModeSequence = "";
|
let devModeSequence = '';
|
||||||
let settingsActiveTab = $state(0);
|
|
||||||
let showDisclaimerModal = $state(false);
|
|
||||||
let disclaimerCallbacks = $state<{ onConfirm: () => void, onCancel: () => void } | null>(null);
|
|
||||||
|
|
||||||
const handleDevModeToggle = () => {
|
const handleDevModeToggle = () => {
|
||||||
const handleKeyDown = (event: KeyboardEvent) => {
|
const handleKeyDown = (event: KeyboardEvent) => {
|
||||||
devModeSequence += event.key.toLowerCase();
|
devModeSequence += event.key.toLowerCase();
|
||||||
if (devModeSequence.includes("dev")) {
|
if (devModeSequence.includes('dev')) {
|
||||||
document.removeEventListener("keydown", handleKeyDown);
|
document.removeEventListener('keydown', handleKeyDown);
|
||||||
settingsState.devMode = true;
|
settingsState.devMode = true;
|
||||||
alert("Dev mode is now enabled");
|
alert('Dev mode is now enabled');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
document.addEventListener("keydown", handleKeyDown);
|
document.addEventListener('keydown', handleKeyDown);
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
document.removeEventListener("keydown", handleKeyDown);
|
document.removeEventListener('keydown', handleKeyDown);
|
||||||
devModeSequence = "";
|
devModeSequence = '';
|
||||||
}, 10000);
|
}, 10000);
|
||||||
};
|
};
|
||||||
|
|
||||||
const openColourPicker = () => {
|
const openColourPicker = () => {
|
||||||
showColourPicker = true;
|
showColourPicker = true;
|
||||||
};
|
}
|
||||||
|
|
||||||
const openChangelog = () => {
|
const openChangelog = () => {
|
||||||
OpenWhatsNewPopup();
|
OpenWhatsNewPopup();
|
||||||
@@ -53,272 +48,46 @@
|
|||||||
OpenAboutPage();
|
OpenAboutPage();
|
||||||
closeExtensionPopup();
|
closeExtensionPopup();
|
||||||
};
|
};
|
||||||
|
|
||||||
/* const openMinecraftServer = () => {
|
|
||||||
OpenMinecraftServerPopup();
|
|
||||||
closeExtensionPopup();
|
|
||||||
}; */
|
|
||||||
|
|
||||||
const openPrivacyStatement = () => {
|
|
||||||
window.open("https://betterseqta.org/privacy", "_blank");
|
|
||||||
closeExtensionPopup();
|
|
||||||
};
|
|
||||||
|
|
||||||
let { standalone } = $props<{ standalone?: boolean }>();
|
let { standalone } = $props<{ standalone?: boolean }>();
|
||||||
let showColourPicker = $state<boolean>(false);
|
let showColourPicker = $state<boolean>(false);
|
||||||
|
|
||||||
const showDisclaimer = (onConfirm: () => void, onCancel: () => void) => {
|
|
||||||
disclaimerCallbacks = { onConfirm, onCancel };
|
|
||||||
showDisclaimerModal = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
settingsPopup.addListener(() => {
|
settingsPopup.addListener(() => {
|
||||||
showColourPicker = false;
|
showColourPicker = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (standalone) {
|
if (!standalone) return;
|
||||||
StandaloneStore.setStandalone(true);
|
initializeSettingsState();
|
||||||
}
|
console.log('settingsState', $settingsState);
|
||||||
|
StandaloneStore.setStandalone(true);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div
|
<div class="w-[384px] no-scrollbar shadow-2xl {$settingsState.DarkMode ? 'dark' : ''} { standalone ? 'h-[600px]' : 'h-full rounded-xl' } overflow-clip">
|
||||||
class="w-[384px] no-scrollbar shadow-2xl {$settingsState.DarkMode
|
<div class="flex relative flex-col gap-2 h-full overflow-clip bg-white dark:bg-zinc-800 dark:text-white">
|
||||||
? 'dark'
|
<div class="grid place-items-center border-b border-b-zinc-200/40">
|
||||||
: ''} {standalone ? 'h-[600px]' : 'h-full rounded-xl'} overflow-clip"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="flex relative flex-col gap-2 h-full overflow-clip bg-white dark:bg-zinc-800 dark:text-white"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
class="grid place-items-center border-b border-b-zinc-200/40 dark:border-b-zinc-700/40"
|
|
||||||
>
|
|
||||||
<!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
|
<!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
|
||||||
<!-- svelte-ignore a11y_click_events_have_key_events -->
|
<!-- svelte-ignore a11y_click_events_have_key_events -->
|
||||||
<img
|
<img src={browser.runtime.getURL('resources/icons/betterseqta-dark-full.png')} class="w-4/5 dark:hidden" alt="Light logo" onclick={handleDevModeToggle} />
|
||||||
src={browser.runtime.getURL(
|
|
||||||
"resources/icons/betterseqta-dark-full.png",
|
|
||||||
)}
|
|
||||||
class="w-4/5 dark:hidden"
|
|
||||||
alt="Light logo"
|
|
||||||
onclick={handleDevModeToggle}
|
|
||||||
/>
|
|
||||||
<!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
|
<!-- svelte-ignore a11y_no_noninteractive_element_interactions -->
|
||||||
<!-- svelte-ignore a11y_click_events_have_key_events -->
|
<!-- svelte-ignore a11y_click_events_have_key_events -->
|
||||||
<img
|
<img src={browser.runtime.getURL('resources/icons/betterseqta-light-full.png')} class="hidden w-4/5 dark:block" alt="Dark logo" onclick={handleDevModeToggle} />
|
||||||
src={browser.runtime.getURL(
|
|
||||||
"resources/icons/betterseqta-light-full.png",
|
|
||||||
)}
|
|
||||||
class="hidden w-4/5 dark:block"
|
|
||||||
alt="Dark logo"
|
|
||||||
onclick={handleDevModeToggle}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{#if !standalone}
|
{#if !standalone}
|
||||||
<div class="flex absolute top-1 right-1 gap-1 items-center">
|
<button onclick={openChangelog} class="absolute top-1 right-1 w-8 h-8 text-lg rounded-xl font-IconFamily bg-zinc-100 dark:bg-zinc-700">{'\ue929'}</button>
|
||||||
<button
|
<button onclick={openAbout} class="absolute top-1 right-10 w-8 h-8 text-lg rounded-xl font-IconFamily bg-zinc-100 dark:bg-zinc-700">{'\ueb73'}</button>
|
||||||
onclick={openAbout}
|
|
||||||
class="flex justify-center items-center w-8 h-8 text-lg rounded-xl font-IconFamily bg-zinc-100 dark:bg-zinc-700"
|
|
||||||
>
|
|
||||||
{"\ueb73"}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
onclick={openChangelog}
|
|
||||||
class="flex justify-center items-center w-8 h-8 text-lg rounded-xl font-IconFamily bg-zinc-100 dark:bg-zinc-700"
|
|
||||||
>
|
|
||||||
{"\ue929"}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<button
|
|
||||||
onclick={openPrivacyStatement}
|
|
||||||
class="flex justify-center items-center w-8 h-8 text-lg rounded-xl font-IconFamily bg-zinc-100 dark:bg-zinc-700"
|
|
||||||
aria-label="Privacy Statement"
|
|
||||||
>
|
|
||||||
{"\uecba"}
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<!-- <button
|
|
||||||
onclick={openMinecraftServer}
|
|
||||||
class="flex justify-center items-center p-1 w-8 h-8 rounded-xl bg-zinc-100 dark:bg-zinc-700"
|
|
||||||
aria-label="Open Minecraft Server"
|
|
||||||
>
|
|
||||||
<svg
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
viewBox="0 0 64 70"
|
|
||||||
fill="none"
|
|
||||||
class="w-full h-full"
|
|
||||||
>
|
|
||||||
<path
|
|
||||||
d="M0 0 C3.96 0 7.92 0 12 0 C12 3.96 12 7.92 12 12 C10.68 12 9.36 12 8 12 C8 10.68 8 9.36 8 8 C6.68 8 5.36 8 4 8 C4 6.68 4 5.36 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(42,10)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 6.6 4 13.2 4 20 C2.68 20 1.36 20 0 20 C0 13.4 0 6.8 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(54,22)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C6.6 0 13.2 0 20 0 C20 1.32 20 2.64 20 4 C13.4 4 6.8 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(22,6)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 5.28 4 10.56 4 16 C2.68 16 1.36 16 0 16 C0 10.72 0 5.44 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(46,26)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C5.28 0 10.56 0 16 0 C16 1.32 16 2.64 16 4 C10.72 4 5.44 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(22,14)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C5.32 4 6.64 4 8 4 C8 5.32 8 6.64 8 8 C5.36 8 2.72 8 0 8 C0 5.36 0 2.72 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(6,50)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(14,50)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(18,46)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(10,46)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(50,42)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(22,42)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(14,42)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(26,38)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(18,38)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(30,34)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(22,34)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(34,30)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(26,30)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(38,26)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(30,26)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(42,22)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(34,22)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(38,18)"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
d="M0 0 C1.32 0 2.64 0 4 0 C4 1.32 4 2.64 4 4 C2.68 4 1.36 4 0 4 C0 2.68 0 1.36 0 0 Z "
|
|
||||||
fill="currentColor"
|
|
||||||
transform="translate(18,10)"
|
|
||||||
/>
|
|
||||||
</svg>
|
|
||||||
</button> -->
|
|
||||||
</div>
|
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<TabbedContainer
|
<TabbedContainer tabs={[
|
||||||
bind:activeTab={settingsActiveTab}
|
{ title: 'Settings', Content: Settings, props: { showColourPicker: openColourPicker } },
|
||||||
tabs={[
|
{ title: 'Shortcuts', Content: Shortcuts },
|
||||||
{
|
{ title: 'Themes', Content: Theme },
|
||||||
title: "Settings",
|
]} />
|
||||||
Content: Settings,
|
|
||||||
props: { showColourPicker: openColourPicker, showDisclaimer },
|
|
||||||
},
|
|
||||||
{ title: "Shortcuts", Content: Shortcuts },
|
|
||||||
{ title: "Themes", Content: Theme },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if showColourPicker}
|
{#if showColourPicker}
|
||||||
<ColourPicker
|
<ColourPicker hidePicker={() => { showColourPicker = false }} />
|
||||||
hidePicker={() => {
|
|
||||||
showColourPicker = false;
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if showDisclaimerModal && disclaimerCallbacks}
|
|
||||||
<DisclaimerModal
|
|
||||||
title="Assessment Averages Disclaimer"
|
|
||||||
message="This feature calculates a simple average of your assessment grades. It does not take into account:
|
|
||||||
• Assessment weightings
|
|
||||||
• Different grading scales
|
|
||||||
• Other factors used in official reports
|
|
||||||
|
|
||||||
The displayed average may be inaccurate compared to your actual marks found in reports.
|
|
||||||
|
|
||||||
Do you want to enable this feature?"
|
|
||||||
onConfirm={() => {
|
|
||||||
disclaimerCallbacks?.onConfirm();
|
|
||||||
showDisclaimerModal = false;
|
|
||||||
disclaimerCallbacks = null;
|
|
||||||
}}
|
|
||||||
onCancel={() => {
|
|
||||||
disclaimerCallbacks?.onCancel();
|
|
||||||
showDisclaimerModal = false;
|
|
||||||
disclaimerCallbacks = null;
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
{/if}
|
|
||||||
@@ -3,49 +3,32 @@
|
|||||||
import Button from "../../components/Button.svelte"
|
import Button from "../../components/Button.svelte"
|
||||||
import Slider from "../../components/Slider.svelte"
|
import Slider from "../../components/Slider.svelte"
|
||||||
import Select from "@/interface/components/Select.svelte"
|
import Select from "@/interface/components/Select.svelte"
|
||||||
import HotkeyInput from "@/interface/components/HotkeyInput.svelte"
|
|
||||||
|
|
||||||
import browser from "webextension-polyfill"
|
import browser from "webextension-polyfill"
|
||||||
|
|
||||||
import type { SettingsList } from "@/interface/types/SettingsProps"
|
import type { SettingsList } from "@/interface/types/SettingsProps"
|
||||||
import { settingsState } from "@/seqta/utils/listeners/SettingsState.ts"
|
import { settingsState } from "@/seqta/utils/listeners/SettingsState.ts"
|
||||||
import PickerSwatch from "@/interface/components/PickerSwatch.svelte"
|
import PickerSwatch from "@/interface/components/PickerSwatch.svelte"
|
||||||
import ConnectMobileApp from "@/interface/components/ConnectMobileApp.svelte"
|
import hideSensitiveContent from "@/seqta/ui/dev/hideSensitiveContent"
|
||||||
import { showPrivacyNotification } from "@/seqta/utils/Openers/OpenPrivacyNotification"
|
|
||||||
import { closeExtensionPopup } from "@/seqta/utils/Closers/closeExtensionPopup"
|
|
||||||
|
|
||||||
import { getAllPluginSettings } from "@/plugins"
|
import { getAllPluginSettings } from "@/plugins"
|
||||||
import type { BooleanSetting, StringSetting, NumberSetting, SelectSetting, ButtonSetting, HotkeySetting, ComponentSetting } from "@/plugins/core/types"
|
import type { BooleanSetting, StringSetting, NumberSetting, SelectSetting } from "@/plugins/core/types"
|
||||||
|
|
||||||
// Union type representing all possible settings
|
// Union type representing all possible settings
|
||||||
type SettingType =
|
type SettingType =
|
||||||
(Omit<BooleanSetting, 'type'> & { type: 'boolean', id: string }) |
|
(Omit<BooleanSetting, 'type'> & { type: 'boolean', id: string }) |
|
||||||
(Omit<StringSetting, 'type'> & { type: 'string', id: string }) |
|
(Omit<StringSetting, 'type'> & { type: 'string', id: string }) |
|
||||||
(Omit<NumberSetting, 'type'> & { type: 'number', id: string }) |
|
(Omit<NumberSetting, 'type'> & { type: 'number', id: string }) |
|
||||||
(Omit<SelectSetting<string>, 'type'> & {
|
(Omit<SelectSetting<string>, 'type'> & {
|
||||||
type: 'select',
|
type: 'select',
|
||||||
id: string,
|
id: string,
|
||||||
options: string[]
|
options: string[]
|
||||||
}) |
|
|
||||||
(Omit<ButtonSetting, 'type'> & {
|
|
||||||
type: 'button',
|
|
||||||
id: string
|
|
||||||
}) |
|
|
||||||
(Omit<HotkeySetting, 'type'> & {
|
|
||||||
type: 'hotkey',
|
|
||||||
id: string
|
|
||||||
}) |
|
|
||||||
(Omit<ComponentSetting, 'type'> & {
|
|
||||||
type: 'component',
|
|
||||||
id: string,
|
|
||||||
component: any
|
|
||||||
});
|
});
|
||||||
|
|
||||||
interface Plugin {
|
interface Plugin {
|
||||||
pluginId: string;
|
pluginId: string;
|
||||||
name: string;
|
name: string;
|
||||||
description: string;
|
description: string;
|
||||||
beta?: boolean;
|
|
||||||
settings: Record<string, SettingType>;
|
settings: Record<string, SettingType>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,11 +45,7 @@
|
|||||||
pluginSettingsValues[plugin.pluginId] = stored[storageKey] || {};
|
pluginSettingsValues[plugin.pluginId] = stored[storageKey] || {};
|
||||||
|
|
||||||
for (const [key, setting] of Object.entries(plugin.settings)) {
|
for (const [key, setting] of Object.entries(plugin.settings)) {
|
||||||
if (
|
if (pluginSettingsValues[plugin.pluginId][key] === undefined) {
|
||||||
pluginSettingsValues[plugin.pluginId][key] === undefined &&
|
|
||||||
setting.type !== 'button' &&
|
|
||||||
setting.type !== 'component'
|
|
||||||
) {
|
|
||||||
pluginSettingsValues[plugin.pluginId][key] = setting.default;
|
pluginSettingsValues[plugin.pluginId][key] = setting.default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -93,10 +72,7 @@
|
|||||||
loadPluginSettings();
|
loadPluginSettings();
|
||||||
})
|
})
|
||||||
|
|
||||||
const { showColourPicker, showDisclaimer } = $props<{
|
const { showColourPicker } = $props<{ showColourPicker: () => void }>();
|
||||||
showColourPicker: () => void;
|
|
||||||
showDisclaimer: (onConfirm: () => void, onCancel: () => void) => void;
|
|
||||||
}>();
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#snippet Setting({ title, description, Component, props }: SettingsList) }
|
{#snippet Setting({ title, description, Component, props }: SettingsList) }
|
||||||
@@ -114,15 +90,27 @@
|
|||||||
<div class="flex flex-col divide-y divide-zinc-100 dark:divide-zinc-700">
|
<div class="flex flex-col divide-y divide-zinc-100 dark:divide-zinc-700">
|
||||||
{#each [
|
{#each [
|
||||||
{
|
{
|
||||||
title: "Connect Mobile App",
|
title: "Transparency Effects",
|
||||||
description: "Link your SEQTA session to DesQTA — the modern desktop and mobile app for SEQTA Learn",
|
description: "Enables transparency effects on certain elements such as blur. (May impact battery life)",
|
||||||
id: 0,
|
id: 1,
|
||||||
Component: ConnectMobileApp,
|
Component: Switch,
|
||||||
props: {}
|
props: {
|
||||||
|
state: $settingsState.transparencyEffects,
|
||||||
|
onChange: (isOn: boolean) => settingsState.transparencyEffects = isOn
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Custom Theme Colour",
|
||||||
|
description: "Customise the overall theme colour of SEQTA Learn.",
|
||||||
|
id: 4,
|
||||||
|
Component: PickerSwatch,
|
||||||
|
props: {
|
||||||
|
onClick: showColourPicker
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Edit Sidebar Layout",
|
title: "Edit Sidebar Layout",
|
||||||
description: "Reorder pages on the sidebar",
|
description: "Customise the sidebar layout.",
|
||||||
id: 5,
|
id: 5,
|
||||||
Component: Button,
|
Component: Button,
|
||||||
props: {
|
props: {
|
||||||
@@ -130,28 +118,9 @@
|
|||||||
text: "Edit"
|
text: "Edit"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "Custom Theme Colour",
|
|
||||||
description: "Customise the overall theme colour of SEQTA Learn",
|
|
||||||
id: 4,
|
|
||||||
Component: PickerSwatch,
|
|
||||||
props: {
|
|
||||||
onClick: showColourPicker
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Icon Only Sidebar",
|
|
||||||
description: "Show only icons in the sidebar for a compact layout",
|
|
||||||
id: 14,
|
|
||||||
Component: Switch,
|
|
||||||
props: {
|
|
||||||
state: $settingsState.iconOnlySidebar ?? false,
|
|
||||||
onChange: (isOn: boolean) => settingsState.iconOnlySidebar = isOn
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Animations",
|
title: "Animations",
|
||||||
description: "Enable animations on certain pages",
|
description: "Enables animations on certain pages.",
|
||||||
id: 6,
|
id: 6,
|
||||||
Component: Switch,
|
Component: Switch,
|
||||||
props: {
|
props: {
|
||||||
@@ -169,19 +138,9 @@
|
|||||||
onChange: (isOn: boolean) => settingsState.timeFormat = isOn ? "12" : "24"
|
onChange: (isOn: boolean) => settingsState.timeFormat = isOn ? "12" : "24"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title: "Transparency Effects",
|
|
||||||
description: "Enable transparency effects on certain elements, such as blur (May impact battery life)",
|
|
||||||
id: 1,
|
|
||||||
Component: Switch,
|
|
||||||
props: {
|
|
||||||
state: $settingsState.transparencyEffects,
|
|
||||||
onChange: (isOn: boolean) => settingsState.transparencyEffects = isOn
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Default Page",
|
title: "Default Page",
|
||||||
description: "The page to load when SEQTA Learn is opened",
|
description: "The page to load when SEQTA Learn is opened.",
|
||||||
id: 10,
|
id: 10,
|
||||||
Component: Select,
|
Component: Select,
|
||||||
props: {
|
props: {
|
||||||
@@ -200,168 +159,97 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "News Feed Source",
|
title: "News Feed Source",
|
||||||
description: "Choose the sources for your news feed",
|
description: "Choose sources of your news feed.",
|
||||||
id: 11,
|
id: 11,
|
||||||
Component: Select,
|
Component: Select,
|
||||||
props: {
|
props: {
|
||||||
state: $settingsState.newsSource,
|
state: $settingsState.newsSource,
|
||||||
onChange: (value: string) => settingsState.newsSource = value,
|
onChange: (value: string) => settingsState.newsSource = value,
|
||||||
options: [
|
options: [
|
||||||
{ value: "australia", label: "Australia" },
|
{ value: "australia", label: "Australia" },
|
||||||
{ value: "usa", label: "USA" },
|
{ value: "usa", label: "USA" },
|
||||||
{ value: "uk", label: "UK" },
|
{ value: "taiwan", label: "Taiwan" },
|
||||||
{ value: "taiwan", label: "Taiwan" },
|
{ value: "hong_kong", label: "Hong Kong" },
|
||||||
{ value: "hong_kong", label: "Hong Kong" },
|
{ value: "panama", label: "Panama" },
|
||||||
{ value: "panama", label: "Panama" },
|
{ value: "canada", label: "Canada" },
|
||||||
{ value: "canada", label: "Canada" },
|
{ value: "singapore", label: "Singapore" },
|
||||||
{ value: "singapore", label: "Singapore" },
|
{ value: "uk", label: "UK" },
|
||||||
{ value: "japan", label: "Japan" },
|
{ value: "japan", label: "Japan" },
|
||||||
{ value: "netherlands", label: "Netherlands" }
|
{ value: "netherlands", label: "Netherlands" }
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
] as option}
|
] as option}
|
||||||
{@render Setting(option)}
|
{@render Setting(option)}
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
<div class="border-none">
|
{#each pluginSettings as plugin}
|
||||||
<div class="p-1 my-1 from-white to-zinc-100 bg-gradient-to-br rounded-xl border shadow-sm border-zinc-200/50 dark:border-zinc-700/40 dark:to-zinc-900/50 dark:from-zinc-900/40">
|
<div>
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
<!-- Always show enable toggle if disableToggle is true -->
|
||||||
<div class="pr-4">
|
{#if (plugin as any).disableToggle}
|
||||||
<h2 class="text-sm font-bold">Adaptive Theme Colour</h2>
|
<div class="flex justify-between items-center px-4 py-3">
|
||||||
<p class="text-xs">Change the theme colour based on the current class (e.g. when viewing a course or assessments page)</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<Switch
|
|
||||||
state={$settingsState.adaptiveThemeColour ?? false}
|
|
||||||
onChange={(isOn: boolean) => settingsState.adaptiveThemeColour = isOn}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{#if $settingsState.adaptiveThemeColour}
|
|
||||||
<div class="flex justify-between items-center px-4 py-3 pl-6 border-t border-zinc-100 dark:border-zinc-700/50">
|
|
||||||
<div class="pr-4">
|
<div class="pr-4">
|
||||||
<h2 class="text-sm font-bold">Soft Gradient</h2>
|
<h2 class="text-sm font-bold">Enable {plugin.name}</h2>
|
||||||
<p class="text-xs">Use a soft gradient instead of a solid colour when viewing a class</p>
|
<p class="text-xs">{plugin.description}</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<Switch
|
<Switch
|
||||||
state={$settingsState.adaptiveThemeGradient ?? false}
|
state={pluginSettingsValues[plugin.pluginId]?.enabled ?? true}
|
||||||
onChange={(isOn: boolean) => settingsState.adaptiveThemeGradient = isOn}
|
onChange={(value) => updatePluginSetting(plugin.pluginId, 'enabled', value)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{#each pluginSettings as plugin}
|
<!-- Only show other settings if plugin is enabled or has no disableToggle -->
|
||||||
<div class="border-none">
|
{#if !((plugin as any).disableToggle) || (pluginSettingsValues[plugin.pluginId]?.enabled ?? true)}
|
||||||
<div class="p-1 my-1 from-white to-zinc-100 bg-gradient-to-br rounded-xl border shadow-sm border-zinc-200/50 dark:border-zinc-700/40 dark:to-zinc-900/50 dark:from-zinc-900/40 {!(plugin as any).disableToggle && Object.keys(plugin.settings).length === 0 ? 'hidden' : ''}">
|
{#each Object.entries(plugin.settings) as [key, setting]}
|
||||||
<!-- Always show enable toggle if disableToggle is true -->
|
<!-- Skip the 'enabled' setting if it's part of the settings object -->
|
||||||
{#if (plugin as any).disableToggle}
|
{#if key !== 'enabled'}
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
<div class="flex justify-between items-center px-4 py-3">
|
||||||
<div class="pr-4">
|
<div class="pr-4">
|
||||||
<h2 class="flex gap-2 items-center text-sm font-bold">
|
<h2 class="text-sm font-bold">{setting.title || key}</h2>
|
||||||
Enable {plugin.name}
|
<p class="text-xs">{setting.description || ''}</p>
|
||||||
{#if plugin.beta}
|
</div>
|
||||||
<span class="px-2 py-0.5 text-xs font-medium text-orange-800 bg-orange-100 rounded-full border border-orange-300/30 dark:bg-orange-900/30 dark:text-orange-300 dark:border-orange-900/30">
|
<div>
|
||||||
Beta
|
{#if setting.type === 'boolean'}
|
||||||
</span>
|
<Switch
|
||||||
{/if}
|
|
||||||
</h2>
|
|
||||||
<p class="text-xs">{plugin.description}</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<Switch
|
|
||||||
state={pluginSettingsValues[plugin.pluginId]?.enabled ?? true}
|
|
||||||
onChange={async (value) => {
|
|
||||||
if (plugin.pluginId === 'assessments-average' && value === true) {
|
|
||||||
showDisclaimer(
|
|
||||||
async () => {
|
|
||||||
await updatePluginSetting(plugin.pluginId, 'enabled', true);
|
|
||||||
},
|
|
||||||
() => {
|
|
||||||
}
|
|
||||||
);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
await updatePluginSetting(plugin.pluginId, 'enabled', value);
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{/if}
|
|
||||||
|
|
||||||
{#if !((plugin as any).disableToggle) || (pluginSettingsValues[plugin.pluginId]?.enabled ?? true)}
|
|
||||||
{#each Object.entries(plugin.settings) as [key, setting]}
|
|
||||||
<!-- Skip the 'enabled' setting if it's part of the settings object -->
|
|
||||||
{#if key !== 'enabled'}
|
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
|
||||||
<div class="pr-4">
|
|
||||||
<h2 class="text-sm font-bold">{setting.title || key}</h2>
|
|
||||||
<p class="text-xs">{setting.description || ''}</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
{#if setting.type === 'boolean'}
|
|
||||||
<Switch
|
|
||||||
state={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
|
||||||
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
|
||||||
/>
|
|
||||||
{:else if setting.type === 'number'}
|
|
||||||
<div class="w-28 shrink-0">
|
|
||||||
<Slider
|
|
||||||
state={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
|
||||||
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
|
||||||
min={setting.min}
|
|
||||||
max={setting.max}
|
|
||||||
step={setting.step}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
{:else if setting.type === 'string'}
|
|
||||||
<input
|
|
||||||
type="text"
|
|
||||||
class="px-2 py-1 text-sm rounded-md dark:bg-[#38373D]/50 bg-[#DDDDDD] dark:text-white border-none"
|
|
||||||
value={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
|
||||||
oninput={(e) => updatePluginSetting(plugin.pluginId, key, e.currentTarget.value)}
|
|
||||||
/>
|
|
||||||
{:else if setting.type === 'select'}
|
|
||||||
<Select
|
|
||||||
state={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
state={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
||||||
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
||||||
options={(setting.options as string[]).map(opt => ({
|
/>
|
||||||
value: opt,
|
{:else if setting.type === 'number'}
|
||||||
label: opt.charAt(0).toUpperCase() + opt.slice(1)
|
<Slider
|
||||||
}))}
|
state={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
||||||
/>
|
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
||||||
{:else if setting.type === 'button'}
|
min={setting.min}
|
||||||
<Button
|
max={setting.max}
|
||||||
onClick={() => setting.trigger?.()}
|
step={setting.step}
|
||||||
text={setting.title}
|
/>
|
||||||
/>
|
{:else if setting.type === 'string'}
|
||||||
{:else if setting.type === 'hotkey'}
|
<input
|
||||||
<HotkeyInput
|
type="text"
|
||||||
value={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
class="px-2 py-1 text-sm rounded-md dark:bg-[#38373D] bg-[#DDDDDD] dark:text-white"
|
||||||
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
value={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
||||||
/>
|
oninput={(e) => updatePluginSetting(plugin.pluginId, key, e.currentTarget.value)}
|
||||||
{:else if setting.type === 'component'}
|
/>
|
||||||
{#if setting.component}
|
{:else if setting.type === 'select'}
|
||||||
{@const Component = setting.component}
|
<Select
|
||||||
<Component />
|
state={pluginSettingsValues[plugin.pluginId]?.[key] ?? setting.default}
|
||||||
{/if}
|
onChange={(value) => updatePluginSetting(plugin.pluginId, key, value)}
|
||||||
{/if}
|
options={(setting.options as string[]).map(opt => ({
|
||||||
</div>
|
value: opt,
|
||||||
|
label: opt.charAt(0).toUpperCase() + opt.slice(1)
|
||||||
|
}))}
|
||||||
|
/>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
</div>
|
||||||
{/each}
|
{/if}
|
||||||
{/if}
|
{/each}
|
||||||
</div>
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
<div class="p-1 border-none"></div>
|
|
||||||
|
|
||||||
{@render Setting({
|
{@render Setting({
|
||||||
title: "BetterSEQTA+",
|
title: "BetterSEQTA+",
|
||||||
description: "Enables BetterSEQTA+ features",
|
description: "Enables BetterSEQTA+ features",
|
||||||
@@ -374,58 +262,25 @@
|
|||||||
})}
|
})}
|
||||||
|
|
||||||
{#if $settingsState.devMode}
|
{#if $settingsState.devMode}
|
||||||
<div class="flex-col p-1 my-1 bg-gradient-to-br from-white rounded-xl border shadow-sm to-zinc-100 border-zinc-200/50 dark:border-zinc-700/40 dark:to-zinc-900/50 dark:from-zinc-900/40">
|
<div class="flex items-center justify-between px-4 py-3 mt-4 pt-[1.75rem]">
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
<div class="pr-4">
|
||||||
<div class="pr-4">
|
<h2 class="text-sm font-bold">Developer Mode</h2>
|
||||||
<h2 class="text-sm font-bold">Developer Mode</h2>
|
<p class="text-xs">Enables developer mode, allowing you to test new features and changes.</p>
|
||||||
<p class="text-xs">Enables developer mode, allowing you to test new features and changes.</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<Switch state={$settingsState.devMode} onChange={(isOn: boolean) => settingsState.devMode = isOn} />
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
<div>
|
||||||
<div class="pr-4">
|
<Switch state={$settingsState.devMode} onChange={(isOn: boolean) => settingsState.devMode = isOn} />
|
||||||
<h2 class="text-sm font-bold">Sensitive Hider</h2>
|
|
||||||
<p class="text-xs">Replace sensitive content with mock data</p>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<Switch
|
|
||||||
state={$settingsState.hideSensitiveContent ?? false}
|
|
||||||
onChange={(isOn: boolean) => settingsState.hideSensitiveContent = isOn}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
</div>
|
||||||
<div class="pr-4">
|
<div class="flex justify-between items-center px-4 py-3">
|
||||||
<h2 class="text-sm font-bold">Mock Notices</h2>
|
<div class="pr-4">
|
||||||
<p class="text-xs">Use fake notice data on homepage instead of real data</p>
|
<h2 class="text-sm font-bold">Sensitive Hider</h2>
|
||||||
</div>
|
<p class="text-xs">Replace sensitive content with mock data</p>
|
||||||
<div>
|
|
||||||
<Switch
|
|
||||||
state={$settingsState.mockNotices ?? false}
|
|
||||||
onChange={(isOn: boolean) => settingsState.mockNotices = isOn}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
<div>
|
||||||
<div class="pr-4">
|
<Button
|
||||||
<h2 class="text-sm font-bold">Show Privacy Notification</h2>
|
onClick={() => hideSensitiveContent()}
|
||||||
<p class="text-xs">Show the privacy notification popup on next page load</p>
|
text="Hide"
|
||||||
</div>
|
/>
|
||||||
<div>
|
|
||||||
<Button
|
|
||||||
onClick={async () => {
|
|
||||||
settingsState.privacyStatementShown = false;
|
|
||||||
settingsState.privacyStatementLastUpdated = undefined;
|
|
||||||
closeExtensionPopup();
|
|
||||||
// Small delay to ensure popup is closed before showing notification
|
|
||||||
await new Promise(resolve => setTimeout(resolve, 100));
|
|
||||||
await showPrivacyNotification();
|
|
||||||
}}
|
|
||||||
text="Show Now"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
@@ -3,10 +3,8 @@
|
|||||||
import { settingsState } from "@/seqta/utils/listeners/SettingsState.ts"
|
import { settingsState } from "@/seqta/utils/listeners/SettingsState.ts"
|
||||||
import Switch from "@/interface/components/Switch.svelte"
|
import Switch from "@/interface/components/Switch.svelte"
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from 'svelte';
|
||||||
import Shortcuts from "@/seqta/content/links.json"
|
|
||||||
|
|
||||||
let isLoaded = $state(false);
|
let isLoaded = $state(false);
|
||||||
let fileInput = $state<HTMLInputElement | null>(null);
|
|
||||||
|
|
||||||
onMount(async () => {
|
onMount(async () => {
|
||||||
// Wait for settingsState to be initialized
|
// Wait for settingsState to be initialized
|
||||||
@@ -23,44 +21,15 @@
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
const switchChange = (shortcut: any) => {
|
const switchChange = (index: number) => {
|
||||||
const idx = $settingsState.shortcuts.findIndex(s => s.name === shortcut);
|
const updatedShortcuts = [...settingsState.shortcuts];
|
||||||
if (idx !== -1) {
|
updatedShortcuts[index].enabled = !updatedShortcuts[index].enabled;
|
||||||
// Create a new array with the toggled value to ensure reactivity
|
settingsState.shortcuts = updatedShortcuts;
|
||||||
const updated = settingsState.shortcuts.map(s =>
|
|
||||||
s.name === shortcut ? { ...s, enabled: !s.enabled } : s
|
|
||||||
);
|
|
||||||
settingsState.shortcuts = updated;
|
|
||||||
} else {
|
|
||||||
settingsState.shortcuts = [
|
|
||||||
...settingsState.shortcuts,
|
|
||||||
{ name: shortcut, enabled: true }
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let isFormVisible = $state(false);
|
let isFormVisible = $state(false);
|
||||||
let newTitle = $state("");
|
let newTitle = $state("");
|
||||||
let newURL = $state("");
|
let newURL = $state("");
|
||||||
let newIcon = $state<string | null>(null);
|
|
||||||
|
|
||||||
function handleIconChange(event: Event) {
|
|
||||||
const file = (event.target as HTMLInputElement).files?.[0];
|
|
||||||
if (file && file.type === "image/svg+xml") {
|
|
||||||
const reader = new FileReader();
|
|
||||||
reader.onload = () => {
|
|
||||||
newIcon = reader.result as string;
|
|
||||||
};
|
|
||||||
reader.readAsText(file);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const clearIcon = () => {
|
|
||||||
newIcon = null;
|
|
||||||
if (fileInput) {
|
|
||||||
fileInput.value = ""; // Clear the file input so the same file can be re-selected
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const toggleForm = () => {
|
const toggleForm = () => {
|
||||||
isFormVisible = !isFormVisible;
|
isFormVisible = !isFormVisible;
|
||||||
@@ -80,13 +49,11 @@
|
|||||||
|
|
||||||
const addNewCustomShortcut = () => {
|
const addNewCustomShortcut = () => {
|
||||||
if (isValidTitle(newTitle) && isValidURL(newURL)) {
|
if (isValidTitle(newTitle) && isValidURL(newURL)) {
|
||||||
const icon = newIcon || newTitle[0];
|
const newShortcut = { name: newTitle.trim(), url: formatUrl(newURL).trim(), icon: newTitle[0] };
|
||||||
const newShortcut = { name: newTitle.trim(), url: formatUrl(newURL).trim(), icon };
|
|
||||||
settingsState.customshortcuts = [...settingsState.customshortcuts, newShortcut];
|
settingsState.customshortcuts = [...settingsState.customshortcuts, newShortcut];
|
||||||
|
|
||||||
newTitle = "";
|
newTitle = "";
|
||||||
newURL = "";
|
newURL = "";
|
||||||
newIcon = null;
|
|
||||||
isFormVisible = false;
|
isFormVisible = false;
|
||||||
} else {
|
} else {
|
||||||
alert("Please enter a valid title and URL.");
|
alert("Please enter a valid title and URL.");
|
||||||
@@ -98,6 +65,15 @@
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
{#snippet Shortcuts([index, Shortcut]: [string, { name: string, enabled: boolean }]) }
|
||||||
|
<div class="flex justify-between items-center px-4 py-3">
|
||||||
|
<div class="pr-4">
|
||||||
|
<h2 class="text-sm">{Shortcut.name}</h2>
|
||||||
|
</div>
|
||||||
|
<Switch state={Shortcut.enabled} onChange={() => switchChange(parseInt(index))} />
|
||||||
|
</div>
|
||||||
|
{/snippet}
|
||||||
|
|
||||||
<div class="flex flex-col pt-4 divide-y divide-zinc-100 dark:divide-zinc-700">
|
<div class="flex flex-col pt-4 divide-y divide-zinc-100 dark:divide-zinc-700">
|
||||||
{#if isLoaded}
|
{#if isLoaded}
|
||||||
<div>
|
<div>
|
||||||
@@ -129,56 +105,14 @@
|
|||||||
initial={{ opacity: 0, y: -10 }}
|
initial={{ opacity: 0, y: -10 }}
|
||||||
animate={{ opacity: 1, y: 0 }}
|
animate={{ opacity: 1, y: 0 }}
|
||||||
transition={{ delay: 0.05, duration: 0.2 }}
|
transition={{ delay: 0.05, duration: 0.2 }}
|
||||||
class="flex gap-2 w-full"
|
class="w-full"
|
||||||
>
|
>
|
||||||
<input
|
<input
|
||||||
class="p-2 my-2 w-full rounded-lg border-0 transition placeholder-zinc-300 bg-zinc-100 dark:bg-zinc-700 focus:bg-zinc-200/50 dark:focus:bg-zinc-600"
|
class="p-2 my-2 w-full rounded-lg border-0 transition placeholder-zinc-300 bg-zinc-100 dark:bg-zinc-700 focus:bg-zinc-200/50 dark:focus:bg-zinc-600"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="URL eg. https://google.com"
|
placeholder="URL eg. https://google.com"
|
||||||
bind:value={newURL}
|
bind:value={newURL}
|
||||||
/>
|
/>
|
||||||
<input
|
|
||||||
bind:this={fileInput}
|
|
||||||
class="p-2 w-full rounded-lg border-0 transition placeholder-zinc-300 bg-zinc-100 dark:bg-zinc-700 focus:bg-zinc-200/50 dark:focus:bg-zinc-600"
|
|
||||||
type="file"
|
|
||||||
accept=".svg"
|
|
||||||
onchange={handleIconChange}
|
|
||||||
hidden
|
|
||||||
/>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
class="flex justify-between items-center p-2 my-2 text-left rounded-lg border border-dashed transition text-nowrap text-zinc-500 dark:text-zinc-400 bg-zinc-100 dark:bg-zinc-700/50 hover:bg-zinc-200/50 dark:hover:bg-zinc-700/30 focus:bg-zinc-200/50 dark:focus:bg-zinc-600/50 border-zinc-300 dark:border-zinc-600"
|
|
||||||
onclick={() => fileInput?.click()}
|
|
||||||
>
|
|
||||||
{#if newIcon}
|
|
||||||
<div class="flex overflow-hidden items-center">
|
|
||||||
<div class="flex-shrink-0 mr-2 w-6 h-6">
|
|
||||||
<img src={`data:image/svg+xml;base64,${btoa(newIcon)}`} alt="Selected Icon" class="object-contain w-full h-full" />
|
|
||||||
</div>
|
|
||||||
<span class="truncate">Selected Icon</span>
|
|
||||||
</div>
|
|
||||||
<span
|
|
||||||
class="p-1 ml-2 rounded hover:bg-zinc-200 dark:hover:bg-zinc-600"
|
|
||||||
aria-label="Clear icon"
|
|
||||||
role="button"
|
|
||||||
tabindex="0"
|
|
||||||
onclick={(event) => { event.stopPropagation(); clearIcon(); }}
|
|
||||||
onkeydown={(event) => {
|
|
||||||
if (event.key === 'Enter' || event.key === ' ') {
|
|
||||||
event.preventDefault();
|
|
||||||
clearIcon();
|
|
||||||
}
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-4 h-4">
|
|
||||||
<path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" />
|
|
||||||
</svg>
|
|
||||||
</span>
|
|
||||||
{:else}
|
|
||||||
<span class="font-IconFamily">{ '\ued47' }</span>
|
|
||||||
<span class="ml-2">SVG icon <span class="text-xs italic text-zinc-400 dark:text-zinc-500">(Optional)</span></span>
|
|
||||||
{/if}
|
|
||||||
</button>
|
|
||||||
</MotionDiv>
|
</MotionDiv>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
@@ -202,6 +136,10 @@
|
|||||||
</MotionDiv>
|
</MotionDiv>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{#each Object.entries($settingsState.shortcuts) as shortcut}
|
||||||
|
{@render Shortcuts(shortcut)}
|
||||||
|
{/each}
|
||||||
|
|
||||||
<!-- Custom Shortcuts Section -->
|
<!-- Custom Shortcuts Section -->
|
||||||
{#each $settingsState.customshortcuts as shortcut, index}
|
{#each $settingsState.customshortcuts as shortcut, index}
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
<div class="flex justify-between items-center px-4 py-3">
|
||||||
@@ -213,19 +151,9 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
||||||
{#each Object.entries(Shortcuts) as shortcut}
|
|
||||||
<div class="flex justify-between items-center px-4 py-3">
|
|
||||||
<div class="pr-4">
|
|
||||||
<!-- Use DisplayName if it exists, otherwise use the key (shortcut[0]) as a fallback -->
|
|
||||||
<h2 class="text-sm">{shortcut[1].DisplayName || shortcut[0]}</h2>
|
|
||||||
</div>
|
|
||||||
<Switch state={$settingsState.shortcuts.find(s => s.name === shortcut[0])?.enabled ?? false} onChange={() => switchChange(shortcut[0])} />
|
|
||||||
</div>
|
|
||||||
{/each}
|
|
||||||
{:else}
|
{:else}
|
||||||
<div class="p-4 text-center">
|
<div class="p-4 text-center">
|
||||||
Loading shortcuts...
|
Loading shortcuts...
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
@@ -21,16 +21,13 @@
|
|||||||
<div class="relative w-full">
|
<div class="relative w-full">
|
||||||
<button
|
<button
|
||||||
onclick={() => editMode = !editMode}
|
onclick={() => editMode = !editMode}
|
||||||
class="absolute top-0 right-0 z-10 px-2 h-8 text-lg rounded-xl bg-zinc-100 dark:bg-zinc-700">
|
class="absolute top-0 right-0 z-10 w-8 h-8 text-lg rounded-xl font-IconFamily bg-zinc-100 dark:bg-zinc-700">{editMode ? '\ue9e4' : '\uec38'}</button>
|
||||||
<span class="mr-2">{editMode ? 'Done' : 'Edit'}</span>
|
|
||||||
<span class="font-IconFamily">{editMode ? '\ue9e4' : '\uec38'}</span>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<BackgroundSelector isEditMode={editMode} bind:selectedBackground={selectedBackground} bind:selectNoBackground={selectNoBackground} />
|
<BackgroundSelector isEditMode={editMode} bind:selectedBackground={selectedBackground} bind:selectNoBackground={selectNoBackground} />
|
||||||
<ThemeSelector isEditMode={editMode} />
|
<ThemeSelector isEditMode={editMode} />
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
<div class="flex justify-center items-center w-full h-full">
|
<div class="flex items-center justify-center w-full h-full">
|
||||||
<div class="text-lg">
|
<div class="text-lg">
|
||||||
Open SEQTA and use the embedded settings to access theme settings. 🫠
|
Open SEQTA and use the embedded settings to access theme settings. 🫠
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -15,12 +15,8 @@
|
|||||||
|
|
||||||
import { loadBackground } from '@/seqta/ui/ImageBackgrounds'
|
import { loadBackground } from '@/seqta/ui/ImageBackgrounds'
|
||||||
import Backgrounds from '../components/store/Backgrounds.svelte'
|
import Backgrounds from '../components/store/Backgrounds.svelte'
|
||||||
import { cloudAuth } from '@/seqta/utils/CloudAuth'
|
|
||||||
|
|
||||||
const themeManager = ThemeManager.getInstance();
|
const themeManager = ThemeManager.getInstance();
|
||||||
let cloudLoggedIn = $state(cloudAuth.state.isLoggedIn);
|
|
||||||
|
|
||||||
cloudAuth.subscribe((s) => { cloudLoggedIn = s.isLoggedIn; });
|
|
||||||
|
|
||||||
// State variables
|
// State variables
|
||||||
let searchTerm = $state('');
|
let searchTerm = $state('');
|
||||||
@@ -52,57 +48,20 @@
|
|||||||
activeTab = tab;
|
activeTab = tab;
|
||||||
};
|
};
|
||||||
|
|
||||||
const toggleFavorite = async (theme: Theme) => {
|
// Fetch themes and initialize app
|
||||||
const token = await cloudAuth.getStoredToken();
|
|
||||||
if (!token) return;
|
|
||||||
const isFavorite = !theme.is_favorited;
|
|
||||||
const result = (await browser.runtime.sendMessage({
|
|
||||||
type: 'cloudFavorite',
|
|
||||||
themeId: theme.id,
|
|
||||||
token,
|
|
||||||
action: isFavorite ? 'favorite' : 'unfavorite',
|
|
||||||
})) as { success?: boolean };
|
|
||||||
if (result?.success) {
|
|
||||||
const delta = isFavorite ? 1 : -1;
|
|
||||||
themes = themes.map((t) =>
|
|
||||||
t.id === theme.id
|
|
||||||
? { ...t, is_favorited: isFavorite, favorite_count: Math.max(0, (t.favorite_count ?? 0) + delta) }
|
|
||||||
: t
|
|
||||||
);
|
|
||||||
if (displayTheme?.id === theme.id) {
|
|
||||||
displayTheme = {
|
|
||||||
...displayTheme,
|
|
||||||
is_favorited: isFavorite,
|
|
||||||
favorite_count: Math.max(0, (displayTheme.favorite_count ?? 0) + delta),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Fetch themes via background script (avoids CORS when store runs inside SEQTA page)
|
|
||||||
const fetchThemes = async () => {
|
const fetchThemes = async () => {
|
||||||
try {
|
try {
|
||||||
const token = await cloudAuth.getStoredToken();
|
const response = await fetch(`https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Themes/main/store/themes.json?nocache=${(new Date()).getTime()}`, { cache: 'no-store' });
|
||||||
const data = (await browser.runtime.sendMessage({
|
const data = await response.json();
|
||||||
type: 'fetchThemes',
|
themes = data.themes;
|
||||||
token: token ?? undefined,
|
|
||||||
})) as {
|
|
||||||
success?: boolean;
|
|
||||||
data?: { themes: Theme[] };
|
|
||||||
error?: string;
|
|
||||||
};
|
|
||||||
if (!data?.success || !data?.data?.themes) {
|
|
||||||
throw new Error(data?.error || 'Failed to fetch themes');
|
|
||||||
}
|
|
||||||
themes = data.data.themes;
|
|
||||||
|
|
||||||
// Shuffle for cover themes
|
// Shuffle for cover themes
|
||||||
const shuffled = [...themes].sort(() => 0.5 - Math.random());
|
const shuffled = [...themes].sort(() => 0.5 - Math.random());
|
||||||
coverThemes = shuffled.slice(0, 3);
|
coverThemes = shuffled.slice(0, 3);
|
||||||
|
|
||||||
loading = false;
|
loading = false;
|
||||||
} catch (err) {
|
} catch (error) {
|
||||||
console.error('Failed to fetch themes', err);
|
console.error('Failed to fetch themes', error);
|
||||||
setTimeout(fetchThemes, 5000); // Retry after 5 seconds if failure occurs
|
setTimeout(fetchThemes, 5000); // Retry after 5 seconds if failure occurs
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -132,17 +91,6 @@
|
|||||||
console.error(error);
|
console.error(error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Refetch themes when user logs in (from another tab) to get is_favorited
|
|
||||||
let lastLoggedIn = $state(false);
|
|
||||||
$effect(() => {
|
|
||||||
if (cloudLoggedIn && !lastLoggedIn) {
|
|
||||||
lastLoggedIn = true;
|
|
||||||
fetchThemes();
|
|
||||||
} else if (!cloudLoggedIn) {
|
|
||||||
lastLoggedIn = false;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="w-screen h-screen bg-white {darkMode ? 'dark' : ''}">
|
<div class="w-screen h-screen bg-white {darkMode ? 'dark' : ''}">
|
||||||
@@ -163,13 +111,7 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<!-- ThemeGrid to display filtered themes -->
|
<!-- ThemeGrid to display filtered themes -->
|
||||||
<ThemeGrid
|
<ThemeGrid themes={filteredThemes} {searchTerm} {setDisplayTheme} />
|
||||||
themes={filteredThemes}
|
|
||||||
{searchTerm}
|
|
||||||
{setDisplayTheme}
|
|
||||||
{toggleFavorite}
|
|
||||||
isLoggedIn={cloudLoggedIn}
|
|
||||||
/>
|
|
||||||
|
|
||||||
{#if displayTheme}
|
{#if displayTheme}
|
||||||
<ThemeModal
|
<ThemeModal
|
||||||
@@ -178,8 +120,6 @@
|
|||||||
theme={displayTheme}
|
theme={displayTheme}
|
||||||
{displayTheme}
|
{displayTheme}
|
||||||
{setDisplayTheme}
|
{setDisplayTheme}
|
||||||
{toggleFavorite}
|
|
||||||
isLoggedIn={cloudLoggedIn}
|
|
||||||
onInstall={async () => {
|
onInstall={async () => {
|
||||||
if (displayTheme) {
|
if (displayTheme) {
|
||||||
await themeManager.downloadTheme(displayTheme);
|
await themeManager.downloadTheme(displayTheme);
|
||||||
|
|||||||
@@ -2,6 +2,6 @@ export interface SettingsList {
|
|||||||
title: string;
|
title: string;
|
||||||
id: number;
|
id: number;
|
||||||
description: string;
|
description: string;
|
||||||
Component: any /* TODO: Give this a type */;
|
Component: any; /* TODO: Give this a type */
|
||||||
props?: any;
|
props?: any;
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,7 @@
|
|||||||
export type Theme = {
|
export type Theme = {
|
||||||
id: string;
|
|
||||||
name: string;
|
name: string;
|
||||||
description: string;
|
description: string;
|
||||||
coverImage: string;
|
coverImage: string;
|
||||||
marqueeImage?: string;
|
marqueeImage: string;
|
||||||
theme_json_url?: string;
|
id: string;
|
||||||
is_favorited?: boolean;
|
};
|
||||||
favorite_count?: number;
|
|
||||||
download_count?: number;
|
|
||||||
};
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
import type { Action } from "svelte/action";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Svelte action that moves the element to a different DOM target.
|
|
||||||
* Defaults to the nearest ShadowRoot so styles remain intact when the app
|
|
||||||
* is rendered inside a shadow DOM. Falls back to document.body otherwise.
|
|
||||||
* Keeps all Svelte reactivity/events intact while escaping ancestor stacking contexts.
|
|
||||||
*/
|
|
||||||
export const portal: Action<HTMLElement, HTMLElement | ShadowRoot | undefined> = (node, target) => {
|
|
||||||
const root = node.getRootNode();
|
|
||||||
const dest = target ?? (root instanceof ShadowRoot ? root : document.body);
|
|
||||||
dest.appendChild(node);
|
|
||||||
|
|
||||||
return {
|
|
||||||
update(newTarget) {
|
|
||||||
(newTarget ?? dest).appendChild(node);
|
|
||||||
},
|
|
||||||
destroy() {
|
|
||||||
node.remove();
|
|
||||||
},
|
|
||||||
};
|
|
||||||
};
|
|
||||||
@@ -1,36 +1,36 @@
|
|||||||
import type { Subscriber, Unsubscriber } from "svelte/store";
|
import type { Subscriber, Unsubscriber } from "svelte/store";
|
||||||
|
|
||||||
export class Standalone {
|
export class Standalone {
|
||||||
private static instance: Standalone;
|
private static instance: Standalone;
|
||||||
private _standalone = $state(false);
|
private _standalone = $state(false);
|
||||||
private subscribers = new Set<Subscriber<boolean>>();
|
private subscribers = new Set<Subscriber<boolean>>();
|
||||||
|
|
||||||
private constructor() {}
|
private constructor() {}
|
||||||
|
|
||||||
public static getInstance(): Standalone {
|
public static getInstance(): Standalone {
|
||||||
if (!Standalone.instance) {
|
if (!Standalone.instance) {
|
||||||
Standalone.instance = new Standalone();
|
Standalone.instance = new Standalone();
|
||||||
}
|
}
|
||||||
return Standalone.instance;
|
return Standalone.instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public setStandalone(value: boolean) {
|
public setStandalone(value: boolean) {
|
||||||
this._standalone = value;
|
this._standalone = value;
|
||||||
this.subscribers.forEach((subscriber) => subscriber(value));
|
this.subscribers.forEach(subscriber => subscriber(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
public get standalone() {
|
public get standalone() {
|
||||||
return this._standalone;
|
return this._standalone;
|
||||||
}
|
}
|
||||||
|
|
||||||
public subscribe(run: Subscriber<boolean>): Unsubscriber {
|
public subscribe(run: Subscriber<boolean>): Unsubscriber {
|
||||||
this.subscribers.add(run);
|
this.subscribers.add(run);
|
||||||
run(this._standalone);
|
run(this._standalone);
|
||||||
|
|
||||||
return () => {
|
return () => {
|
||||||
this.subscribers.delete(run);
|
this.subscribers.delete(run);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const standalone = Standalone.getInstance();
|
export const standalone = Standalone.getInstance();
|
||||||
@@ -1,49 +1,23 @@
|
|||||||
import type { LoadedCustomTheme } from "@/types/CustomThemes";
|
import type { LoadedCustomTheme } from '@/types/CustomThemes';
|
||||||
|
|
||||||
/**
|
|
||||||
* Generates a random 9-character alphanumeric string to be used as a unique ID for images.
|
|
||||||
* This helps in identifying and managing custom images within a theme.
|
|
||||||
*
|
|
||||||
* @returns {string} A randomly generated unique ID string.
|
|
||||||
*/
|
|
||||||
export function generateImageId(): string {
|
export function generateImageId(): string {
|
||||||
return Math.random().toString(36).substr(2, 9);
|
return Math.random().toString(36).substr(2, 9);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function handleImageUpload(event: Event, theme: LoadedCustomTheme): Promise<LoadedCustomTheme> | LoadedCustomTheme {
|
||||||
* Handles the upload of a new custom image from a file input event.
|
|
||||||
* If a file is selected, it reads the file using FileReader, converts it to a Blob,
|
|
||||||
* generates a unique ID and a default variable name for it, and then adds this new image
|
|
||||||
* to the `CustomImages` array within the provided `theme` object.
|
|
||||||
*
|
|
||||||
* @param {Event} event The file input change event, typically from an `<input type="file">` element.
|
|
||||||
* @param {LoadedCustomTheme} theme The current theme object to which the new image will be added.
|
|
||||||
* @returns {Promise<LoadedCustomTheme> | LoadedCustomTheme} A Promise that resolves with the updated theme object
|
|
||||||
* containing the new image if a file was processed.
|
|
||||||
* Returns the original theme object synchronously if no file was selected.
|
|
||||||
*/
|
|
||||||
export function handleImageUpload(
|
|
||||||
event: Event,
|
|
||||||
theme: LoadedCustomTheme,
|
|
||||||
): Promise<LoadedCustomTheme> | LoadedCustomTheme {
|
|
||||||
const input = event.target as HTMLInputElement;
|
const input = event.target as HTMLInputElement;
|
||||||
const file = input.files?.[0];
|
const file = input.files?.[0];
|
||||||
input.value = "";
|
input.value = '';
|
||||||
if (file) {
|
if (file) {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
const reader = new FileReader();
|
const reader = new FileReader();
|
||||||
reader.onload = async () => {
|
reader.onload = async () => {
|
||||||
const imageBlob = await fetch(reader.result as string).then((res) =>
|
const imageBlob = await fetch(reader.result as string).then(res => res.blob());
|
||||||
res.blob(),
|
|
||||||
);
|
|
||||||
const imageId = generateImageId();
|
const imageId = generateImageId();
|
||||||
const variableName = `custom-image-${theme.CustomImages.length}`;
|
const variableName = `custom-image-${theme.CustomImages.length}`;
|
||||||
resolve({
|
resolve({
|
||||||
...theme,
|
...theme,
|
||||||
CustomImages: [
|
CustomImages: [...theme.CustomImages, { id: imageId, blob: imageBlob, variableName, url: null }],
|
||||||
...theme.CustomImages,
|
|
||||||
{ id: imageId, blob: imageBlob, variableName, url: null },
|
|
||||||
],
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
reader.readAsDataURL(file);
|
reader.readAsDataURL(file);
|
||||||
@@ -52,79 +26,35 @@ export function handleImageUpload(
|
|||||||
return theme;
|
return theme;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function handleRemoveImage(imageId: string, theme: LoadedCustomTheme): LoadedCustomTheme {
|
||||||
* Removes a custom image from the theme based on its ID.
|
|
||||||
* It filters out the image with the specified `imageId` from the `CustomImages` array
|
|
||||||
* in the `theme` object.
|
|
||||||
*
|
|
||||||
* @param {string} imageId The unique ID of the custom image to be removed.
|
|
||||||
* @param {LoadedCustomTheme} theme The current theme object from which the image will be removed.
|
|
||||||
* @returns {LoadedCustomTheme} A new theme object with the specified image removed from its `CustomImages` array.
|
|
||||||
* This function is synchronous.
|
|
||||||
*/
|
|
||||||
export function handleRemoveImage(
|
|
||||||
imageId: string,
|
|
||||||
theme: LoadedCustomTheme,
|
|
||||||
): LoadedCustomTheme {
|
|
||||||
return {
|
return {
|
||||||
...theme,
|
...theme,
|
||||||
CustomImages: theme.CustomImages.filter((image) => image.id !== imageId),
|
CustomImages: theme.CustomImages.filter((image) => image.id !== imageId),
|
||||||
} as LoadedCustomTheme;
|
} as LoadedCustomTheme;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function handleImageVariableChange(imageId: string, variableName: string, theme: LoadedCustomTheme): LoadedCustomTheme {
|
||||||
* Updates the CSS variable name associated with a specific custom image in the theme.
|
|
||||||
* It finds the image by `imageId` in the `CustomImages` array of the `theme` object
|
|
||||||
* and updates its `variableName` property.
|
|
||||||
*
|
|
||||||
* @param {string} imageId The unique ID of the custom image whose variable name is to be updated.
|
|
||||||
* @param {string} variableName The new CSS variable name to assign to the image.
|
|
||||||
* @param {LoadedCustomTheme} theme The current theme object containing the image to be updated.
|
|
||||||
* @returns {LoadedCustomTheme} A new theme object with the updated image variable name.
|
|
||||||
* This function is synchronous.
|
|
||||||
*/
|
|
||||||
export function handleImageVariableChange(
|
|
||||||
imageId: string,
|
|
||||||
variableName: string,
|
|
||||||
theme: LoadedCustomTheme,
|
|
||||||
): LoadedCustomTheme {
|
|
||||||
return {
|
return {
|
||||||
...theme,
|
...theme,
|
||||||
CustomImages: theme.CustomImages.map((image) =>
|
CustomImages: theme.CustomImages.map((image) =>
|
||||||
image.id === imageId ? { ...image, variableName } : image,
|
image.id === imageId ? { ...image, variableName } : image
|
||||||
),
|
),
|
||||||
} as LoadedCustomTheme;
|
} as LoadedCustomTheme;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function handleCoverImageUpload(event: Event, theme: LoadedCustomTheme): Promise<LoadedCustomTheme> {
|
||||||
* Handles the upload of a cover image for the theme from a file input event.
|
|
||||||
* If a file is selected, it reads the file using FileReader, converts it to a Blob,
|
|
||||||
* and then updates the `coverImage` property of the provided `theme` object with this new blob.
|
|
||||||
*
|
|
||||||
* @param {Event} event The file input change event, typically from an `<input type="file">` element.
|
|
||||||
* @param {LoadedCustomTheme} theme The current theme object whose cover image will be updated.
|
|
||||||
* @returns {Promise<LoadedCustomTheme>} A Promise that resolves with the updated theme object
|
|
||||||
* containing the new cover image if a file was processed.
|
|
||||||
* Returns a Promise resolving with the original theme object if no file was selected.
|
|
||||||
*/
|
|
||||||
export function handleCoverImageUpload(
|
|
||||||
event: Event,
|
|
||||||
theme: LoadedCustomTheme,
|
|
||||||
): Promise<LoadedCustomTheme> {
|
|
||||||
const input = event.target as HTMLInputElement;
|
const input = event.target as HTMLInputElement;
|
||||||
const file = input.files?.[0];
|
const file = input.files?.[0];
|
||||||
input.value = "";
|
input.value = '';
|
||||||
if (file) {
|
if (file) {
|
||||||
return new Promise((resolve) => {
|
return new Promise((resolve) => {
|
||||||
const reader = new FileReader();
|
const reader = new FileReader();
|
||||||
reader.onload = async () => {
|
reader.onload = async () => {
|
||||||
const imageBlob = await fetch(reader.result as string).then((res) =>
|
const imageBlob = await fetch(reader.result as string).then(res => res.blob());
|
||||||
res.blob(),
|
|
||||||
);
|
|
||||||
resolve({ ...theme, coverImage: imageBlob });
|
resolve({ ...theme, coverImage: imageBlob });
|
||||||
};
|
};
|
||||||
reader.readAsDataURL(file);
|
reader.readAsDataURL(file);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
return Promise.resolve(theme);
|
return Promise.resolve(theme);
|
||||||
}
|
}
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
import * as pdfjs from "pdfjs-dist";
|
|
||||||
import browser from "webextension-polyfill";
|
|
||||||
import pdfWorkerHref from "pdfjs-dist/build/pdf.worker.min.mjs?url";
|
|
||||||
import pdfLegacyHref from "pdfjs-dist/legacy/build/pdf.min.mjs?url";
|
|
||||||
|
|
||||||
function extensionAssetUrl(viteAssetHref: string): string {
|
|
||||||
const path = viteAssetHref.replace(/^\/+/, "");
|
|
||||||
return browser.runtime.getURL(path);
|
|
||||||
}
|
|
||||||
|
|
||||||
let workerConfigured = false;
|
|
||||||
|
|
||||||
/** Required before pdfjs spawns a worker (content-script / extension isolate). */
|
|
||||||
export function ensurePdfjsWorker(): void {
|
|
||||||
if (workerConfigured) return;
|
|
||||||
pdfjs.GlobalWorkerOptions.workerSrc = extensionAssetUrl(pdfWorkerHref);
|
|
||||||
workerConfigured = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Page-context script on Firefox must load these chrome-extension:// URLs (see web_accessible_resources). */
|
|
||||||
export function getPdfjsPageContextUrls(): { lib: string; worker: string } {
|
|
||||||
return {
|
|
||||||
lib: extensionAssetUrl(pdfLegacyHref),
|
|
||||||
worker: extensionAssetUrl(pdfWorkerHref),
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,12 +1,9 @@
|
|||||||
import { createManifest } from "../../lib/createManifest";
|
import { createManifest } from '../../lib/createManifest'
|
||||||
import baseManifest from "./manifest.json";
|
import baseManifest from './manifest.json'
|
||||||
import pkg from "../../package.json";
|
import pkg from '../../package.json'
|
||||||
|
|
||||||
export const brave = createManifest(
|
export const brave = createManifest({
|
||||||
{
|
|
||||||
...baseManifest,
|
...baseManifest,
|
||||||
version: pkg.version,
|
version: pkg.version,
|
||||||
description: pkg.description,
|
description: pkg.description,
|
||||||
},
|
}, 'brave')
|
||||||
"brave",
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
import { createManifest } from "../../lib/createManifest";
|
import { createManifest } from '../../lib/createManifest'
|
||||||
import baseManifest from "./manifest.json";
|
import baseManifest from './manifest.json'
|
||||||
import pkg from "../../package.json";
|
import pkg from '../../package.json'
|
||||||
|
|
||||||
export const chrome = createManifest(
|
export const chrome = createManifest({
|
||||||
{
|
|
||||||
...baseManifest,
|
...baseManifest,
|
||||||
version: pkg.version,
|
version: pkg.version,
|
||||||
description: pkg.description,
|
description: pkg.description,
|
||||||
},
|
}, 'chrome')
|
||||||
"chrome",
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
import { createManifest } from "../../lib/createManifest";
|
import { createManifest } from '../../lib/createManifest'
|
||||||
import baseManifest from "./manifest.json";
|
import baseManifest from './manifest.json'
|
||||||
import pkg from "../../package.json";
|
import pkg from '../../package.json'
|
||||||
|
|
||||||
export const edge = createManifest(
|
export const edge = createManifest({
|
||||||
{
|
|
||||||
...baseManifest,
|
...baseManifest,
|
||||||
version: pkg.version,
|
version: pkg.version,
|
||||||
description: pkg.description,
|
description: pkg.description,
|
||||||
},
|
}, 'edge')
|
||||||
"edge",
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { createManifest } from "../../lib/createManifest";
|
import { createManifest } from '../../lib/createManifest'
|
||||||
import baseManifest from "./manifest.json";
|
import baseManifest from './manifest.json'
|
||||||
import pkg from "../../package.json";
|
import pkg from '../../package.json'
|
||||||
|
|
||||||
const updatedFirefoxManifest = {
|
const updatedFirefoxManifest = {
|
||||||
...baseManifest,
|
...baseManifest,
|
||||||
@@ -10,13 +10,13 @@ const updatedFirefoxManifest = {
|
|||||||
scripts: [baseManifest.background.service_worker],
|
scripts: [baseManifest.background.service_worker],
|
||||||
},
|
},
|
||||||
action: {
|
action: {
|
||||||
default_popup: "interface/index.html#settings",
|
"default_popup": "interface/index.html#settings",
|
||||||
},
|
},
|
||||||
browser_specific_settings: {
|
browser_specific_settings: {
|
||||||
gecko: {
|
gecko: {
|
||||||
id: "betterseqta@betterseqta.com",
|
id: pkg.author.email,
|
||||||
},
|
},
|
||||||
},
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
export const firefox = createManifest(updatedFirefoxManifest, "firefox");
|
export const firefox = createManifest(updatedFirefoxManifest, 'firefox')
|
||||||
|
|||||||
@@ -16,12 +16,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"permissions": ["tabs", "notifications", "storage"],
|
"permissions": ["tabs", "notifications", "storage"],
|
||||||
"host_permissions": ["https://newsapi.org/", "https://betterseqta.org/", "https://accounts.betterseqta.org/", "*://*/*"],
|
"host_permissions": ["https://newsapi.org/", "*://*/*"],
|
||||||
"background": {
|
"background": {
|
||||||
"service_worker": "background.ts"
|
"service_worker": "background.ts"
|
||||||
},
|
},
|
||||||
"content_security_policy": {
|
"content_security_policy": {
|
||||||
"extension_pages": "script-src 'self'; object-src 'self'; connect-src 'self' http: https: https://betterseqta.org https://accounts.betterseqta.org https://raw.githubusercontent.com https://newsapi.org"
|
"extension_pages": "script-src 'self'; object-src 'self'"
|
||||||
},
|
},
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
{
|
{
|
||||||
@@ -32,12 +32,7 @@
|
|||||||
],
|
],
|
||||||
"web_accessible_resources": [
|
"web_accessible_resources": [
|
||||||
{
|
{
|
||||||
"resources": [
|
"resources": ["*/*", "resources/*", "seqta/utils/migration/migrate.html", "plugins/built-in/globalSearch/*"],
|
||||||
"resources/icons/*",
|
|
||||||
"resources/update-image.webp",
|
|
||||||
"resources/pdfjs/pdf.worker.min.mjs",
|
|
||||||
"resources/pdfjs/pdf.legacy.min.mjs"
|
|
||||||
],
|
|
||||||
"matches": ["*://*/*"]
|
"matches": ["*://*/*"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,12 +1,9 @@
|
|||||||
import { createManifest } from "../../lib/createManifest";
|
import { createManifest } from '../../lib/createManifest'
|
||||||
import baseManifest from "./manifest.json";
|
import baseManifest from './manifest.json'
|
||||||
import pkg from "../../package.json";
|
import pkg from '../../package.json'
|
||||||
|
|
||||||
export const opera = createManifest(
|
export const opera = createManifest({
|
||||||
{
|
|
||||||
...baseManifest,
|
...baseManifest,
|
||||||
version: pkg.version,
|
version: pkg.version,
|
||||||
description: pkg.description,
|
description: pkg.description,
|
||||||
},
|
}, 'opera')
|
||||||
"opera",
|
|
||||||
);
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import { createManifest } from "../../lib/createManifest";
|
import { createManifest } from '../../lib/createManifest'
|
||||||
import baseManifest from "./manifest.json";
|
import baseManifest from './manifest.json'
|
||||||
import pkg from "../../package.json";
|
import pkg from '../../package.json'
|
||||||
|
|
||||||
const updatedSafariManifest = {
|
const updatedSafariManifest = {
|
||||||
...baseManifest,
|
...baseManifest,
|
||||||
@@ -8,12 +8,12 @@ const updatedSafariManifest = {
|
|||||||
description: pkg.description,
|
description: pkg.description,
|
||||||
browser_specific_settings: {
|
browser_specific_settings: {
|
||||||
safari: {
|
safari: {
|
||||||
strict_min_version: "15.4",
|
strict_min_version: '15.4',
|
||||||
strict_max_version: "*",
|
strict_max_version: '*',
|
||||||
},
|
},
|
||||||
// ^^^ https://developer.apple.com/documentation/safariservices/safari_web_extensions/optimizing_your_web_extension_for_safari#3743239
|
// ^^^ https://developer.apple.com/documentation/safariservices/safari_web_extensions/optimizing_your_web_extension_for_safari#3743239
|
||||||
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings#safari_properties
|
// https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/browser_specific_settings#safari_properties
|
||||||
},
|
},
|
||||||
};
|
}
|
||||||
|
|
||||||
export const safari = createManifest(updatedSafariManifest, "safari");
|
export const safari = createManifest(updatedSafariManifest, 'safari')
|
||||||
|
|||||||
+57
-457
@@ -3,27 +3,13 @@ class ReactFiber {
|
|||||||
this.selector = selector;
|
this.selector = selector;
|
||||||
this.debug = options.debug || false;
|
this.debug = options.debug || false;
|
||||||
this.nodes = [...document.querySelectorAll(selector)]; // Support multiple elements
|
this.nodes = [...document.querySelectorAll(selector)]; // Support multiple elements
|
||||||
this.fibers = this.nodes.map((node) => this.getFiberNode(node));
|
this.fibers = this.nodes.map(node => this.getFiberNode(node));
|
||||||
this.components = this.fibers.map((fiber) => this.getOwnerComponent(fiber));
|
this.components = this.fibers.map(fiber => this.getOwnerComponent(fiber));
|
||||||
|
|
||||||
if (this.debug) {
|
if (this.debug) {
|
||||||
console.log("Selected Nodes:", this.nodes);
|
console.log("Selected Nodes:", this.nodes);
|
||||||
console.log("🔍 Found Fibers:", this.fibers);
|
console.log("🔍 Found Fibers:", this.fibers);
|
||||||
console.log("🛠 Found Components:", this.components);
|
console.log("🛠 Found Components:", this.components);
|
||||||
|
|
||||||
// Debug fiber info
|
|
||||||
this.fibers.forEach((fiber, index) => {
|
|
||||||
if (fiber) {
|
|
||||||
console.log(`Fiber ${index}:`, {
|
|
||||||
tag: fiber.tag,
|
|
||||||
type: fiber.type?.name || fiber.type,
|
|
||||||
elementType: fiber.elementType,
|
|
||||||
stateNode: fiber.stateNode,
|
|
||||||
hasState: !!fiber.stateNode?.state,
|
|
||||||
hasMemoizedState: !!fiber.memoizedState
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,27 +19,8 @@ class ReactFiber {
|
|||||||
|
|
||||||
getFiberNode(node) {
|
getFiberNode(node) {
|
||||||
if (!node) return null;
|
if (!node) return null;
|
||||||
|
const fiberKey = Object.getOwnPropertyNames(node).find(name =>
|
||||||
// Try multiple property name patterns for different React versions
|
name.startsWith('__reactFiber') || name.startsWith('__reactInternalInstance')
|
||||||
const possibleKeys = [
|
|
||||||
'__reactFiber$', // React 16+
|
|
||||||
'__reactInternalFiber$', // React 15
|
|
||||||
'__reactInternalInstance$', // Older versions
|
|
||||||
'__reactFiber',
|
|
||||||
'__reactInternalInstance'
|
|
||||||
];
|
|
||||||
|
|
||||||
// Check for exact matches first
|
|
||||||
for (const key of possibleKeys) {
|
|
||||||
if (node[key]) return node[key];
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fall back to pattern matching
|
|
||||||
const fiberKey = Object.getOwnPropertyNames(node).find(
|
|
||||||
(name) =>
|
|
||||||
name.startsWith("__reactFiber") ||
|
|
||||||
name.startsWith("__reactInternalInstance") ||
|
|
||||||
name.startsWith("__reactInternalFiber")
|
|
||||||
);
|
);
|
||||||
return fiberKey ? node[fiberKey] : null;
|
return fiberKey ? node[fiberKey] : null;
|
||||||
}
|
}
|
||||||
@@ -61,75 +28,21 @@ class ReactFiber {
|
|||||||
getOwnerComponent(fiberNode) {
|
getOwnerComponent(fiberNode) {
|
||||||
let current = fiberNode;
|
let current = fiberNode;
|
||||||
while (current) {
|
while (current) {
|
||||||
// Use React's internal tag system to identify component types
|
if (current.stateNode && (current.stateNode.setState || current.stateNode.forceUpdate)) {
|
||||||
// Based on React's WorkTags: ClassComponent = 1, FunctionComponent = 0
|
|
||||||
if (current.tag === 1) { // ClassComponent
|
|
||||||
return current.stateNode; // For class components, stateNode is the component instance
|
|
||||||
}
|
|
||||||
|
|
||||||
// For function components, look for hooks in memoizedState
|
|
||||||
if (current.tag === 0 || current.tag === 15) { // FunctionComponent or MemoComponent
|
|
||||||
// Function components don't have setState, but we can still track them
|
|
||||||
if (current.memoizedState && current.type) {
|
|
||||||
return {
|
|
||||||
type: 'function',
|
|
||||||
hooks: current.memoizedState,
|
|
||||||
fiber: current,
|
|
||||||
forceUpdate: () => {
|
|
||||||
// Trigger re-render by updating fiber
|
|
||||||
if (current.alternate) {
|
|
||||||
current.alternate.expirationTime = 1;
|
|
||||||
}
|
|
||||||
current.expirationTime = 1;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Legacy fallback: check if stateNode has React component methods
|
|
||||||
if (
|
|
||||||
current.stateNode &&
|
|
||||||
current.stateNode !== null &&
|
|
||||||
typeof current.stateNode === 'object' &&
|
|
||||||
(current.stateNode.setState || current.stateNode.forceUpdate)
|
|
||||||
) {
|
|
||||||
return current.stateNode;
|
return current.stateNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
current = current.return;
|
current = current.return;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
getState(key) {
|
getState(key) {
|
||||||
if (!this.components.length && !this.fibers.length) return null;
|
if (!this.components.length) return null;
|
||||||
|
const state = this.components[0]?.state || null;
|
||||||
const component = this.components[0];
|
|
||||||
const fiber = this.fibers[0];
|
|
||||||
let state = null;
|
|
||||||
|
|
||||||
// Handle class components
|
|
||||||
if (component?.state) {
|
|
||||||
state = component.state;
|
|
||||||
}
|
|
||||||
// Handle function components with hooks - look directly at fiber
|
|
||||||
else if (fiber?.memoizedState) {
|
|
||||||
if (this.debug) {
|
|
||||||
console.log("🔍 Raw fiber.memoizedState:", fiber.memoizedState);
|
|
||||||
}
|
|
||||||
// Extract useState values from the hook chain
|
|
||||||
const states = this.extractStateFromHooks(fiber.memoizedState);
|
|
||||||
state = states.length === 1 ? states[0] : states;
|
|
||||||
}
|
|
||||||
// Fallback: try component hooks if available
|
|
||||||
else if (component?.type === 'function' && component?.hooks) {
|
|
||||||
const states = this.extractStateFromHooks(component.hooks);
|
|
||||||
state = states.length === 1 ? states[0] : states;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (key === undefined) {
|
if (key === undefined) {
|
||||||
return state;
|
return state;
|
||||||
} else if (typeof key === "string") {
|
} else if (typeof key === 'string') {
|
||||||
return state?.[key];
|
return state?.[key];
|
||||||
} else if (Array.isArray(key)) {
|
} else if (Array.isArray(key)) {
|
||||||
const filteredState = {};
|
const filteredState = {};
|
||||||
@@ -143,166 +56,28 @@ class ReactFiber {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
extractStateFromHooks(hookChain) {
|
|
||||||
const states = [];
|
|
||||||
let mainStateFound = false;
|
|
||||||
let currentHook = hookChain;
|
|
||||||
let hookIndex = 0;
|
|
||||||
|
|
||||||
if (this.debug) {
|
|
||||||
console.log("🔍 Hook chain analysis:");
|
|
||||||
}
|
|
||||||
|
|
||||||
while (currentHook) {
|
|
||||||
if (this.debug) {
|
|
||||||
console.log(`Hook ${hookIndex}:`, {
|
|
||||||
type: currentHook.tag || 'unknown',
|
|
||||||
memoizedState: currentHook.memoizedState,
|
|
||||||
queue: currentHook.queue,
|
|
||||||
next: !!currentHook.next
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Try different approaches to extract state
|
|
||||||
if (currentHook.memoizedState !== undefined && currentHook.memoizedState !== null) {
|
|
||||||
const state = currentHook.memoizedState;
|
|
||||||
|
|
||||||
// Priority 1: Check for useRef hooks with complex state in .current
|
|
||||||
if (!currentHook.queue &&
|
|
||||||
typeof state === 'object' &&
|
|
||||||
state !== null &&
|
|
||||||
state.current !== undefined &&
|
|
||||||
typeof state.current === 'object' &&
|
|
||||||
state.current !== null) {
|
|
||||||
|
|
||||||
// Check if this looks like a substantial state object (has multiple properties)
|
|
||||||
const currentKeys = Object.keys(state.current);
|
|
||||||
if (currentKeys.length > 2) {
|
|
||||||
states.push(state.current);
|
|
||||||
mainStateFound = true;
|
|
||||||
if (this.debug) console.log(` 🎯 Found main state in useRef:`, state.current);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Priority 2: useState hooks with queue
|
|
||||||
else if (currentHook.queue && typeof state !== 'function') {
|
|
||||||
states.push(state);
|
|
||||||
if (this.debug) console.log(` ✅ Found useState state:`, state);
|
|
||||||
}
|
|
||||||
// Priority 3: Other potential state objects (only if we haven't found main state)
|
|
||||||
else if (!mainStateFound && !currentHook.queue && typeof state === 'object' && state !== null) {
|
|
||||||
// Skip useEffect hooks (they have tag 36)
|
|
||||||
if (!(state.tag === 36 && state.create)) {
|
|
||||||
states.push(state);
|
|
||||||
if (this.debug) console.log(` 📦 Found potential state object:`, state);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Priority 4: Simple primitive state
|
|
||||||
else if (typeof state !== 'function' && typeof state !== 'object') {
|
|
||||||
states.push(state);
|
|
||||||
if (this.debug) console.log(` 🔹 Found primitive state:`, state);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
currentHook = currentHook.next;
|
|
||||||
hookIndex++;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.debug) {
|
|
||||||
console.log(`🎯 Extracted ${states.length} state values:`, states);
|
|
||||||
}
|
|
||||||
|
|
||||||
// If we found main state objects, prioritize and deduplicate them
|
|
||||||
if (mainStateFound && states.length > 1) {
|
|
||||||
const mainStates = states.filter(state =>
|
|
||||||
typeof state === 'object' &&
|
|
||||||
state !== null &&
|
|
||||||
Object.keys(state).length > 2
|
|
||||||
);
|
|
||||||
|
|
||||||
if (mainStates.length > 1) {
|
|
||||||
// If we have multiple main state objects, find the most comprehensive one
|
|
||||||
// or merge them if they seem complementary
|
|
||||||
const largestState = mainStates.reduce((largest, current) => {
|
|
||||||
const largestKeys = Object.keys(largest).length;
|
|
||||||
const currentKeys = Object.keys(current).length;
|
|
||||||
|
|
||||||
// Prefer the one with more properties
|
|
||||||
if (currentKeys > largestKeys) return current;
|
|
||||||
|
|
||||||
// If same number of properties, prefer the one with more complex data
|
|
||||||
if (currentKeys === largestKeys) {
|
|
||||||
const largestComplexity = this.calculateStateComplexity(largest);
|
|
||||||
const currentComplexity = this.calculateStateComplexity(current);
|
|
||||||
return currentComplexity > largestComplexity ? current : largest;
|
|
||||||
}
|
|
||||||
|
|
||||||
return largest;
|
|
||||||
});
|
|
||||||
|
|
||||||
if (this.debug) {
|
|
||||||
console.log(`🎯 Selected most comprehensive state from ${mainStates.length} candidates:`, largestState);
|
|
||||||
}
|
|
||||||
|
|
||||||
return [largestState];
|
|
||||||
}
|
|
||||||
|
|
||||||
return mainStates;
|
|
||||||
}
|
|
||||||
|
|
||||||
return states;
|
|
||||||
}
|
|
||||||
|
|
||||||
calculateStateComplexity(state) {
|
|
||||||
if (!state || typeof state !== 'object') return 0;
|
|
||||||
|
|
||||||
let complexity = 0;
|
|
||||||
for (const [key, value] of Object.entries(state)) {
|
|
||||||
complexity += 1; // Base point for each property
|
|
||||||
|
|
||||||
if (Array.isArray(value)) {
|
|
||||||
complexity += value.length * 0.1; // Arrays get points based on length
|
|
||||||
} else if (typeof value === 'object' && value !== null) {
|
|
||||||
complexity += Object.keys(value).length * 0.5; // Nested objects get points
|
|
||||||
} else if (typeof value === 'function') {
|
|
||||||
complexity += 2; // Functions are valuable
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return complexity;
|
|
||||||
}
|
|
||||||
|
|
||||||
setState(update) {
|
setState(update) {
|
||||||
this.components.forEach((component) => {
|
this.components.forEach(component => {
|
||||||
// Handle class components
|
|
||||||
if (component?.setState) {
|
if (component?.setState) {
|
||||||
if (typeof update === "function") {
|
if (typeof update === 'function') {
|
||||||
// Functional update
|
// Functional update
|
||||||
component.setState((prevState) => {
|
component.setState(prevState => {
|
||||||
const newState = update(prevState);
|
const newState = update(prevState);
|
||||||
if (this.debug)
|
if (this.debug) console.log("✅ Updated State (Functional):", newState);
|
||||||
console.log("✅ Updated State (Functional):", newState);
|
|
||||||
return newState;
|
return newState;
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
// Object update (merge with existing state)
|
// Object update (merge with existing state)
|
||||||
component.setState((prevState) => {
|
component.setState(prevState => {
|
||||||
const newState = {
|
const newState = {
|
||||||
...prevState,
|
...prevState,
|
||||||
...update,
|
...update
|
||||||
};
|
};
|
||||||
if (this.debug)
|
if (this.debug) console.log("✅ Updated State (Object Merge):", newState);
|
||||||
console.log("✅ Updated State (Object Merge):", newState);
|
|
||||||
return newState;
|
return newState;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Handle function components - force re-render since we can't directly update hooks
|
|
||||||
else if (component?.type === 'function' && component?.forceUpdate) {
|
|
||||||
if (this.debug) {
|
|
||||||
console.log("⚠️ Function component detected - triggering re-render. Direct state update not possible.");
|
|
||||||
}
|
|
||||||
component.forceUpdate();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@@ -317,8 +92,8 @@ class ReactFiber {
|
|||||||
return this.fibers[0]?.memoizedProps?.[propName];
|
return this.fibers[0]?.memoizedProps?.[propName];
|
||||||
}
|
}
|
||||||
|
|
||||||
setProp(propName, value) {
|
setProp(propName) {
|
||||||
this.fibers.forEach((fiber) => {
|
this.fibers.forEach(fiber => {
|
||||||
if (fiber?.memoizedProps) {
|
if (fiber?.memoizedProps) {
|
||||||
fiber.memoizedProps[propName] = value;
|
fiber.memoizedProps[propName] = value;
|
||||||
}
|
}
|
||||||
@@ -327,7 +102,7 @@ class ReactFiber {
|
|||||||
}
|
}
|
||||||
|
|
||||||
forceUpdate() {
|
forceUpdate() {
|
||||||
this.components.forEach((component) => {
|
this.components.forEach(component => {
|
||||||
if (component?.forceUpdate) {
|
if (component?.forceUpdate) {
|
||||||
component.forceUpdate();
|
component.forceUpdate();
|
||||||
if (this.debug) console.log("🔄 Forced React Re-render");
|
if (this.debug) console.log("🔄 Forced React Re-render");
|
||||||
@@ -337,183 +112,51 @@ class ReactFiber {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeSerializable(obj, visited = new WeakSet(), depth = 0, maxDepth = 10) {
|
function makeSerializable(obj) {
|
||||||
// Handle primitives first
|
if (typeof obj !== 'object' || obj === null) {
|
||||||
if (obj === null || obj === undefined) {
|
|
||||||
return obj;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Catch ALL functions early
|
|
||||||
if (typeof obj === "function") {
|
|
||||||
return `[Function: ${obj.name || 'anonymous'}]`;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (typeof obj !== "object") {
|
|
||||||
// Handle other primitives
|
|
||||||
if (typeof obj === "symbol") return obj.toString();
|
|
||||||
if (typeof obj === "bigint") return obj.toString() + "n";
|
|
||||||
return obj;
|
return obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prevent infinite recursion - depth limit
|
if (Array.isArray(obj)) {
|
||||||
if (depth > maxDepth) {
|
return obj.map(item => makeSerializable(item));
|
||||||
return "[Max Depth Reached]";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Prevent circular references
|
const serializableObj = {};
|
||||||
if (visited.has(obj)) {
|
for (const key in obj) {
|
||||||
return "[Circular Reference]";
|
if (Object.hasOwn(obj, key)) {
|
||||||
}
|
let value = obj[key];
|
||||||
visited.add(obj);
|
|
||||||
|
|
||||||
try {
|
if (typeof value === 'function') {
|
||||||
// Handle special objects first
|
value = '[Function]';
|
||||||
if (obj instanceof HTMLElement) {
|
} else if (value instanceof HTMLElement) {
|
||||||
return {
|
value = {
|
||||||
type: "HTMLElement",
|
type: 'HTMLElement',
|
||||||
tagName: obj.tagName,
|
id: value.id,
|
||||||
id: obj.id || null,
|
tagName: value.tagName
|
||||||
className: obj.className || null,
|
}; // Replace DOM node with ID/tag info
|
||||||
attributes: obj.attributes ? Array.from(obj.attributes).map(attr => ({ name: attr.name, value: attr.value })) : []
|
} else if (typeof value === 'symbol') {
|
||||||
};
|
value = value.toString();
|
||||||
}
|
} else if (typeof value === 'object' && value !== null) {
|
||||||
|
value = makeSerializable(value);
|
||||||
if (obj instanceof Event) {
|
|
||||||
return {
|
|
||||||
type: "Event",
|
|
||||||
eventType: obj.type,
|
|
||||||
target: obj.target?.tagName || null
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (obj instanceof Date) {
|
|
||||||
return { type: "Date", value: obj.toISOString() };
|
|
||||||
}
|
|
||||||
|
|
||||||
if (obj instanceof RegExp) {
|
|
||||||
return { type: "RegExp", source: obj.source, flags: obj.flags };
|
|
||||||
}
|
|
||||||
|
|
||||||
if (obj instanceof Error) {
|
|
||||||
return { type: "Error", message: obj.message, name: obj.name };
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle React Fiber nodes - these are super circular
|
|
||||||
if (obj.tag !== undefined && obj.elementType !== undefined) {
|
|
||||||
return {
|
|
||||||
type: "ReactFiber",
|
|
||||||
tag: obj.tag,
|
|
||||||
elementType: typeof obj.elementType === 'function' ? obj.elementType.name || 'AnonymousComponent' : String(obj.elementType),
|
|
||||||
key: obj.key,
|
|
||||||
hasState: !!obj.stateNode?.state,
|
|
||||||
hasMemoizedState: !!obj.memoizedState,
|
|
||||||
hasProps: !!obj.memoizedProps
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle arrays
|
|
||||||
if (Array.isArray(obj)) {
|
|
||||||
return obj.slice(0, 50).map((item, index) => {
|
|
||||||
if (index >= 25) return "[...truncated]"; // Smaller limit
|
|
||||||
return makeSerializable(item, visited, depth + 1, maxDepth);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handle regular objects
|
|
||||||
const serializableObj = {};
|
|
||||||
|
|
||||||
// Get own enumerable properties only to avoid prototype pollution
|
|
||||||
const ownKeys = Object.getOwnPropertyNames(obj).filter(key => {
|
|
||||||
try {
|
|
||||||
return obj.propertyIsEnumerable(key);
|
|
||||||
} catch {
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
// Limit number of properties to avoid huge objects
|
|
||||||
const maxKeys = 30; // Smaller limit for safety
|
|
||||||
const processedKeys = ownKeys.slice(0, maxKeys);
|
|
||||||
|
|
||||||
for (const key of processedKeys) {
|
|
||||||
try {
|
|
||||||
// Skip problematic keys early
|
|
||||||
const dangerousKeys = [
|
|
||||||
'parentNode', 'parentElement', 'ownerDocument', 'children', 'childNodes',
|
|
||||||
'return', 'child', 'sibling', 'alternate', 'ref', // React Fiber circular refs
|
|
||||||
'_owner', '_source', '_self', '_debugOwner', '_debugSource', // React internals
|
|
||||||
'window', 'document', 'global', 'self', 'top', 'parent', // Global objects
|
|
||||||
'constructor', 'prototype', '__proto__', // Constructor/prototype chains
|
|
||||||
'addEventListener', 'removeEventListener', // Event handlers
|
|
||||||
'setState', 'forceUpdate', 'render' // React methods that might be functions
|
|
||||||
];
|
|
||||||
|
|
||||||
if (dangerousKeys.includes(key)) {
|
|
||||||
serializableObj[key] = `[Skipped: ${key}]`;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const descriptor = Object.getOwnPropertyDescriptor(obj, key);
|
serializableObj[key] = value;
|
||||||
if (descriptor && (descriptor.get || descriptor.set)) {
|
|
||||||
serializableObj[key] = "[Getter/Setter]";
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
let value = obj[key];
|
|
||||||
|
|
||||||
// Handle symbols specifically (React context symbols)
|
|
||||||
if (typeof value === "symbol") {
|
|
||||||
value = `[Symbol: ${value.description || 'anonymous'}]`;
|
|
||||||
}
|
|
||||||
// Extra function check
|
|
||||||
else if (typeof value === "function") {
|
|
||||||
value = `[Function: ${value.name || 'anonymous'}]`;
|
|
||||||
} else if (value && typeof value === "object") {
|
|
||||||
value = makeSerializable(value, visited, depth + 1, maxDepth);
|
|
||||||
}
|
|
||||||
|
|
||||||
serializableObj[key] = value;
|
|
||||||
} catch (error) {
|
|
||||||
serializableObj[key] = `[Error: ${error.message}]`;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ownKeys.length > maxKeys) {
|
|
||||||
serializableObj['...'] = `[${ownKeys.length - maxKeys} more properties]`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return serializableObj;
|
|
||||||
} catch (error) {
|
|
||||||
return `[Serialization Error: ${error.message}]`;
|
|
||||||
} finally {
|
|
||||||
visited.delete(obj); // Clean up for potential reuse
|
|
||||||
}
|
}
|
||||||
|
return serializableObj;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Final safety check - recursively scan for any remaining functions
|
window.addEventListener('message', (event) => {
|
||||||
function deepFunctionCheck(obj, path = "") {
|
|
||||||
if (typeof obj === "function") {
|
|
||||||
throw new Error(`Found function at path: ${path}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (obj && typeof obj === "object") {
|
|
||||||
if (Array.isArray(obj)) {
|
|
||||||
obj.forEach((item, index) => {
|
|
||||||
deepFunctionCheck(item, `${path}[${index}]`);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
Object.keys(obj).forEach(key => {
|
|
||||||
deepFunctionCheck(obj[key], path ? `${path}.${key}` : key);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
window.addEventListener("message", (event) => {
|
|
||||||
if (event.data.type === "reactFiberRequest") {
|
if (event.data.type === "reactFiberRequest") {
|
||||||
const { selector, action, payload, debug, messageId } = event.data;
|
const {
|
||||||
const fiberInstance = ReactFiber.find(selector, {
|
selector,
|
||||||
|
action,
|
||||||
|
payload,
|
||||||
debug,
|
debug,
|
||||||
|
messageId
|
||||||
|
} = event.data;
|
||||||
|
const fiberInstance = ReactFiber.find(selector, {
|
||||||
|
debug
|
||||||
});
|
});
|
||||||
|
|
||||||
let response;
|
let response;
|
||||||
@@ -524,7 +167,7 @@ window.addEventListener("message", (event) => {
|
|||||||
case "setState":
|
case "setState":
|
||||||
// Handle both function and object updates
|
// Handle both function and object updates
|
||||||
if (payload.updateFn) {
|
if (payload.updateFn) {
|
||||||
const updateFn = new Function('return ' + payload.updateFn)();
|
const updateFn = eval(`(${payload.updateFn})`);
|
||||||
fiberInstance.setState(updateFn);
|
fiberInstance.setState(updateFn);
|
||||||
} else {
|
} else {
|
||||||
fiberInstance.setState(payload.updateObject);
|
fiberInstance.setState(payload.updateObject);
|
||||||
@@ -548,57 +191,14 @@ window.addEventListener("message", (event) => {
|
|||||||
response = null;
|
response = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (response !== null && typeof response === "object") {
|
if (response !== null && typeof response === 'object') {
|
||||||
response = makeSerializable(response);
|
response = makeSerializable(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Final safety check before postMessage
|
window.postMessage({
|
||||||
try {
|
type: "reactFiberResponse",
|
||||||
deepFunctionCheck(response);
|
response,
|
||||||
} catch (functionError) {
|
messageId,
|
||||||
console.warn("[pageState] Function detected in response, cleaning:", functionError.message);
|
}, "*");
|
||||||
response = `[Cleaned Response - Function found at: ${functionError.message}]`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Additional structured clone test
|
|
||||||
try {
|
|
||||||
// Test if the object can be cloned (same algorithm as postMessage)
|
|
||||||
if (typeof structuredClone === 'function') {
|
|
||||||
structuredClone(response);
|
|
||||||
} else {
|
|
||||||
// Fallback for older browsers - try JSON round-trip
|
|
||||||
JSON.parse(JSON.stringify(response));
|
|
||||||
}
|
|
||||||
} catch (cloneError) {
|
|
||||||
console.warn("[pageState] Response not cloneable, fallback:", cloneError.message);
|
|
||||||
response = `[Uncloneable Response: ${cloneError.message}]`;
|
|
||||||
}
|
|
||||||
|
|
||||||
window.postMessage(
|
|
||||||
{
|
|
||||||
type: "reactFiberResponse",
|
|
||||||
response,
|
|
||||||
messageId,
|
|
||||||
},
|
|
||||||
"*",
|
|
||||||
);
|
|
||||||
} else if (event.data.type === "triggerKeyboardEvent") {
|
|
||||||
// Handle keyboard event triggering from content script
|
|
||||||
const { key, code, altKey, ctrlKey, metaKey, shiftKey, keyCode } = event.data;
|
|
||||||
|
|
||||||
const keyboardEvent = new KeyboardEvent('keydown', {
|
|
||||||
key,
|
|
||||||
code,
|
|
||||||
keyCode: keyCode || 0,
|
|
||||||
which: keyCode || 0,
|
|
||||||
altKey: altKey || false,
|
|
||||||
ctrlKey: ctrlKey || false,
|
|
||||||
metaKey: metaKey || false,
|
|
||||||
shiftKey: shiftKey || false,
|
|
||||||
bubbles: true,
|
|
||||||
cancelable: true
|
|
||||||
});
|
|
||||||
|
|
||||||
document.dispatchEvent(keyboardEvent);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@@ -1,12 +1,7 @@
|
|||||||
import { BasePlugin } from "../../core/settings";
|
import { BasePlugin } from '../../core/settings';
|
||||||
import { type Plugin } from "@/plugins/core/types";
|
import { type Plugin } from '@/plugins/core/types';
|
||||||
import {
|
import { defineSettings, numberSetting, Setting } from '@/plugins/core/settingsHelpers';
|
||||||
defineSettings,
|
import styles from './styles.css?inline';
|
||||||
numberSetting,
|
|
||||||
Setting,
|
|
||||||
} from "@/plugins/core/settingsHelpers";
|
|
||||||
import styles from "./styles.css?inline";
|
|
||||||
import { waitForElm } from "@/seqta/utils/waitForElm";
|
|
||||||
|
|
||||||
const settings = defineSettings({
|
const settings = defineSettings({
|
||||||
speed: numberSetting({
|
speed: numberSetting({
|
||||||
@@ -15,8 +10,8 @@ const settings = defineSettings({
|
|||||||
description: "Controls how fast the background moves",
|
description: "Controls how fast the background moves",
|
||||||
min: 0.1,
|
min: 0.1,
|
||||||
max: 2,
|
max: 2,
|
||||||
step: 0.05,
|
step: 0.05
|
||||||
}),
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
class AnimatedBackgroundPluginClass extends BasePlugin<typeof settings> {
|
class AnimatedBackgroundPluginClass extends BasePlugin<typeof settings> {
|
||||||
@@ -27,29 +22,32 @@ class AnimatedBackgroundPluginClass extends BasePlugin<typeof settings> {
|
|||||||
const instance = new AnimatedBackgroundPluginClass();
|
const instance = new AnimatedBackgroundPluginClass();
|
||||||
|
|
||||||
const animatedBackgroundPlugin: Plugin<typeof settings> = {
|
const animatedBackgroundPlugin: Plugin<typeof settings> = {
|
||||||
id: "animated-background",
|
id: 'animated-background',
|
||||||
name: "Animated Background",
|
name: 'Animated Background',
|
||||||
description: "Adds an animated background to BetterSEQTA+",
|
description: 'Adds an animated background to BetterSEQTA+',
|
||||||
version: "1.0.0",
|
version: '1.0.0',
|
||||||
disableToggle: true,
|
disableToggle: true,
|
||||||
styles: styles,
|
styles: styles,
|
||||||
settings: instance.settings,
|
settings: instance.settings,
|
||||||
|
|
||||||
run: async (api) => {
|
run: async (api) => {
|
||||||
const [container, menu] = await Promise.all([
|
// Create the background elements
|
||||||
waitForElm("#container", true),
|
const container = document.getElementById("container");
|
||||||
waitForElm("#menu", true),
|
const menu = document.getElementById("menu");
|
||||||
]);
|
|
||||||
|
if (!container || !menu) {
|
||||||
|
return () => {};
|
||||||
|
}
|
||||||
|
|
||||||
const backgrounds = [
|
const backgrounds = [
|
||||||
{ classes: ["bg"] },
|
{ classes: ["bg"] },
|
||||||
{ classes: ["bg", "bg2"] },
|
{ classes: ["bg", "bg2"] },
|
||||||
{ classes: ["bg", "bg3"] },
|
{ classes: ["bg", "bg3"] }
|
||||||
];
|
];
|
||||||
|
|
||||||
backgrounds.forEach(({ classes }) => {
|
backgrounds.forEach(({ classes }) => {
|
||||||
const bk = document.createElement("div");
|
const bk = document.createElement("div");
|
||||||
classes.forEach((cls) => bk.classList.add(cls));
|
classes.forEach(cls => bk.classList.add(cls));
|
||||||
container.insertBefore(bk, menu);
|
container.insertBefore(bk, menu);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -57,27 +55,24 @@ const animatedBackgroundPlugin: Plugin<typeof settings> = {
|
|||||||
updateAnimationSpeed(api.settings.speed);
|
updateAnimationSpeed(api.settings.speed);
|
||||||
|
|
||||||
// Listen for speed changes
|
// Listen for speed changes
|
||||||
const speedUnregister = api.settings.onChange(
|
const speedUnregister = api.settings.onChange('speed', updateAnimationSpeed);
|
||||||
"speed",
|
|
||||||
updateAnimationSpeed,
|
|
||||||
);
|
|
||||||
|
|
||||||
// Return cleanup function
|
// Return cleanup function
|
||||||
return () => {
|
return () => {
|
||||||
speedUnregister.unregister();
|
speedUnregister.unregister();
|
||||||
// Remove background elements
|
// Remove background elements
|
||||||
const backgrounds = document.getElementsByClassName("bg");
|
const backgrounds = document.getElementsByClassName('bg');
|
||||||
Array.from(backgrounds).forEach((element) => element.remove());
|
Array.from(backgrounds).forEach(element => element.remove());
|
||||||
};
|
};
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function updateAnimationSpeed(speed: number) {
|
function updateAnimationSpeed(speed: number) {
|
||||||
const bgElements = document.getElementsByClassName("bg");
|
const bgElements = document.getElementsByClassName('bg');
|
||||||
Array.from(bgElements).forEach((element, index) => {
|
Array.from(bgElements).forEach((element, index) => {
|
||||||
const baseSpeed = index === 0 ? 3 : index === 1 ? 4 : 5;
|
const baseSpeed = index === 0 ? 3 : index === 1 ? 4 : 5;
|
||||||
(element as HTMLElement).style.animationDuration = `${baseSpeed / speed}s`;
|
(element as HTMLElement).style.animationDuration = `${baseSpeed / speed}s`;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export default animatedBackgroundPlugin;
|
export default animatedBackgroundPlugin;
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user