mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-25 02:18:12 +08:00
* wasm: do the async initialization only once This allows the rest of the app to access wasm synchronously. This allows removing of a global. * provide the wasm via vue provide/inject. There's still code directly accessing the wasm. That will be changed later. * MenuBarInput: use injected wasm instead of the global instance * Let the App handle event listeners * move stateful modules into state/ * state/fullscreen: create per instance * App: load the initial document list on mount. This got lost a few commits ago. Now it's back. * state/dialog: create per instance * util/input: remove dependency on global dialog instance * state/documents: create per instance * reponse-handler: move into EditorWasm * comingSoon: move into dialog * wasm: allow instantiating multiple editors * input handlers: do not look at canvases outside the mounted App * input: listen on the container instead of the window when possible * - removed proxy from wasm-loader - integrated with js-dispatcher - state functions to classes - integrated some upstream changes * fix errors caused by merge * Getting closer: - added global state to track all instances - fix fullscreen close trigger - wasm-loader is statefull - panic across instanes * - fix outline while using editor - removed circular import rule - added editorInstance to js message constructor * - changed input handler to a class - still need a better way of handeling it in App.vue * - fixed single instance of inputManager to weakmap * - fix no-explicit-any in a few places - removed global state from input.ts * simplified two long lines * removed global state * removed $data from App * add mut self to functions in api.rs * Update Workspace.vue remove outdated import * fixed missing import * Changes throughout code review; note this causes some bugs to be fixed in a later commit * PR review round 1 * - fix coming soon bugs - changed folder structure * moved declaration to .d.ts * - changed from classes to functions - moved decs back to app.vue * removed need to export js function to rust * changed folder structure * fixed indentation breaking multiline strings * Fix eslint rule to whitelist @/../ * Simplify strip-indents implementation * replace type assertions with better annotations or proper runtime checks * Small tweaks and code rearranging improvements after second code review pass * maybe fix mouse events * Add back preventDefault for mouse scroll * code review round 2 * Comment improvements * -removed runtime checks - fixed layers not showing * - extened proxy to cover classes - stopped multiple panics from logging - Stop wasm-bindgen from mut ref counting our struct * cleaned up messageConstructors exports * Fix input and fullscreen regressions Co-authored-by: Max Fisher <maxmfishernj@gmail.com> Co-authored-by: mfish33 <32677537+mfish33@users.noreply.github.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
94 lines
2.6 KiB
JavaScript
94 lines
2.6 KiB
JavaScript
const webpackConfigPath = require.resolve("@vue/cli-service/webpack.config.js");
|
|
|
|
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
es2020: true,
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
},
|
|
extends: [
|
|
// Vue-specific defaults
|
|
"plugin:vue/vue3-essential",
|
|
// Vue-compatible JS defaults
|
|
"@vue/airbnb",
|
|
// Vue-compatible TS defaults
|
|
"@vue/typescript/recommended",
|
|
// Vue-compatible Prettier defaults
|
|
"plugin:prettier-vue/recommended",
|
|
// General Prettier defaults
|
|
"prettier",
|
|
],
|
|
settings: {
|
|
// https://github.com/import-js/eslint-plugin-import#resolvers
|
|
"import/resolver": {
|
|
// `node` must be listed first!
|
|
node: {},
|
|
webpack: { config: webpackConfigPath },
|
|
},
|
|
|
|
// https://github.com/meteorlxy/eslint-plugin-prettier-vue
|
|
"prettier-vue": {
|
|
// Use Prettier to format the HTML, CSS, and JS blocks of .vue single-file components
|
|
SFCBlocks: {
|
|
template: true,
|
|
style: true,
|
|
script: true,
|
|
},
|
|
},
|
|
},
|
|
ignorePatterns: [
|
|
// Ignore generated directories
|
|
"node_modules/",
|
|
"dist/",
|
|
"pkg/",
|
|
"wasm/pkg/",
|
|
|
|
// Don't ignore JS and TS dotfiles in this folder
|
|
"!.*.js",
|
|
"!.*.ts",
|
|
],
|
|
rules: {
|
|
// Standard ESLint config
|
|
indent: "off",
|
|
quotes: ["error", "double"],
|
|
camelcase: ["error", { properties: "always" }],
|
|
"linebreak-style": ["error", "unix"],
|
|
"eol-last": ["error", "always"],
|
|
"max-len": ["error", { code: 200, tabWidth: 4 }],
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-param-reassign": ["error", { props: false }],
|
|
"no-bitwise": "off",
|
|
"no-shadow": "off",
|
|
"no-use-before-define": "off",
|
|
"no-restricted-imports": ["error", { patterns: [".*", "!@/*"] }],
|
|
|
|
// TypeScript plugin config
|
|
"@typescript-eslint/indent": ["error", "tab", { SwitchCase: 1 }],
|
|
"@typescript-eslint/camelcase": "off",
|
|
"@typescript-eslint/no-use-before-define": "off",
|
|
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
"@typescript-eslint/no-loss-of-precision": "off", // TODO: Remove this line after upgrading to eslint 7.1 or greater
|
|
|
|
// Import plugin config (used to intelligently validate module import statements)
|
|
"import/prefer-default-export": "off",
|
|
|
|
// Prettier plugin config (used to enforce HTML, CSS, and JS formatting styles as an ESLint plugin, where fixes are reported to ESLint to be applied when linting)
|
|
"prettier-vue/prettier": [
|
|
"error",
|
|
{
|
|
tabWidth: 4,
|
|
tabs: true,
|
|
printWidth: 200,
|
|
},
|
|
],
|
|
|
|
// Vue plugin config (used to validate Vue single-file components)
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
};
|