Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vue Rewrite #14

Merged
merged 25 commits into from
May 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
478b4dc
Init vue project in subdirectory
Scriptim Apr 12, 2022
9439d39
Rewrite base functionality using Vue
Scriptim May 22, 2023
0a52ed4
Replace legacy code base with Vue rewrite
Scriptim May 22, 2023
84e03de
Add button for clearing the prompt
Scriptim May 23, 2023
c0001be
Add separators between groups of element types
Scriptim May 23, 2023
d8cd8bc
Add states to display when the prompt is empty
Scriptim May 23, 2023
fce7826
Darken the background color of selected elements
Scriptim May 23, 2023
15c5718
Add copy to clipboard button
Scriptim May 25, 2023
dc6a9ea
Format code
Scriptim May 25, 2023
33bd711
Add usage instructions
Scriptim May 25, 2023
a495c17
Make components more compact
Scriptim May 25, 2023
5214f7d
Mark colors in example preview as !important
Scriptim May 25, 2023
eb14b90
Add duplicate button
Scriptim May 25, 2023
22159c5
Persist prompt in local storage
Scriptim May 25, 2023
7866344
Fix dollar sign element
Scriptim May 26, 2023
26c9555
Style parameter in added prompt elements
Scriptim May 27, 2023
c81cb97
Add PS1 parser for importing existing prompts
Scriptim May 27, 2023
3c54909
Fix properties delta calculation
Scriptim May 27, 2023
1b77176
Make select behavior more user friendly
Scriptim May 27, 2023
aa4038c
Hide clear all button if no elements are present
Scriptim May 27, 2023
7d5fbf7
Add GitHub corner
Scriptim May 27, 2023
ad0f403
Resize / align components to fit more in viewport
Scriptim May 27, 2023
413bfdd
Add titles to all icon buttons
Scriptim May 27, 2023
517116d
Update dependencies
Scriptim May 27, 2023
69b3bce
Add error handling for the PS1 parser
Scriptim May 27, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
> 1%
last 2 versions
not dead
not ie 11
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[*.{js,jsx,ts,tsx,vue,sass,scss,css,html}]",
indent_style = space
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

40 changes: 40 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
module.exports = {
root: true,
env: {
node: true,
},
extends: [
'plugin:vue/vue3-essential',
'@vue/airbnb',
'@vue/typescript/recommended',
'prettier',
],
parserOptions: {
ecmaVersion: 2020,
},
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'max-len': ['error', {
code: 120,
comments: 120,
}],
'import/extensions': ['error', 'never'],
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)',
],
env: {
jest: true,
},
},
],
settings: {
'import/resolver': {
typescript: {},
},
},
};
11 changes: 0 additions & 11 deletions .eslintrc.yml

This file was deleted.

23 changes: 22 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
/node_modules/
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
13 changes: 13 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "*.html",
"options": {
"printWidth": 200
}
}
]
}
3 changes: 0 additions & 3 deletions .stylelintrc.json

This file was deleted.

126 changes: 0 additions & 126 deletions CODE_OF_CONDUCT.md

This file was deleted.

24 changes: 0 additions & 24 deletions CONTRIBUTING.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

## License

Copyright (C) 2021 Scriptim
Copyright (C) 2023 Scriptim

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Expand Down
5 changes: 5 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset',
],
};
Loading