Skip to content

Commit bddf3de

Browse files
committed
initial commit
0 parents  commit bddf3de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+10470
-0
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/dist

.eslintrc.js

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
module.exports = {
2+
root: true,
3+
4+
parserOptions: {
5+
parser: 'babel-eslint',
6+
sourceType: 'module'
7+
},
8+
9+
env: {
10+
browser: true
11+
},
12+
13+
extends: [
14+
// https://eslint.vuejs.org/rules/#priority-a-essential-error-prevention
15+
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
16+
'plugin:vue/essential',
17+
'@vue/prettier'
18+
],
19+
20+
// required to lint *.vue files
21+
plugins: [
22+
'vue'
23+
],
24+
25+
globals: {
26+
'ga': true, // Google Analytics
27+
'cordova': true,
28+
'__statics': true,
29+
'process': true,
30+
'Capacitor': true,
31+
'chrome': true
32+
},
33+
34+
// add your custom rules here
35+
rules: {
36+
'prefer-promise-reject-errors': 'off',
37+
38+
// allow debugger during development only
39+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
40+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
41+
}
42+
};

.gitignore

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
.DS_Store
2+
.thumbs.db
3+
node_modules
4+
5+
# Quasar core related directories
6+
.quasar
7+
/dist
8+
9+
# Cordova related directories and files
10+
/src-cordova/node_modules
11+
/src-cordova/platforms
12+
/src-cordova/plugins
13+
/src-cordova/www
14+
15+
# Capacitor related directories and files
16+
/src-capacitor/www
17+
/src-capacitor/node_modules
18+
19+
# BEX related directories and files
20+
/src-bex/www
21+
/src-bex/js/core
22+
23+
# Log files
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# Editor directories and files
29+
.idea
30+
.vscode
31+
*.suo
32+
*.ntvs*
33+
*.njsproj
34+
*.sln

.postcssrc.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// https://github.com/michael-ciniawsky/postcss-load-config
2+
3+
module.exports = {
4+
plugins: [
5+
// to edit target browsers: use "browserslist" field in package.json
6+
require('autoprefixer')
7+
]
8+
}

.stylintrc

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"blocks": "never",
3+
"brackets": "never",
4+
"colons": "never",
5+
"colors": "always",
6+
"commaSpace": "always",
7+
"commentSpace": "always",
8+
"cssLiteral": "never",
9+
"depthLimit": false,
10+
"duplicates": true,
11+
"efficient": "always",
12+
"extendPref": false,
13+
"globalDupe": true,
14+
"indentPref": 2,
15+
"leadingZero": "never",
16+
"maxErrors": false,
17+
"maxWarnings": false,
18+
"mixed": false,
19+
"namingConvention": false,
20+
"namingConventionStrict": false,
21+
"none": "never",
22+
"noImportant": false,
23+
"parenSpace": "never",
24+
"placeholder": false,
25+
"prefixVarsWithDollar": "always",
26+
"quotePref": "single",
27+
"semicolons": "never",
28+
"sortOrder": false,
29+
"stackedProperties": "never",
30+
"trailingWhitespace": "never",
31+
"universal": "never",
32+
"valid": true,
33+
"zeroUnits": "never",
34+
"zIndexNormalize": false
35+
}

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# MiniMappingViewer (minimappingviewer)
2+
3+
MiniMappingViewer
4+
5+
## Install the dependencies
6+
```bash
7+
yarn
8+
```
9+
10+
### Start the app in development mode (hot-code reloading, error reporting, etc.)
11+
```bash
12+
quasar dev
13+
```
14+
15+
### Lint the files
16+
```bash
17+
yarn run lint
18+
```
19+
20+
### Build the app for production
21+
```bash
22+
quasar build
23+
```
24+
25+
### Customize the configuration
26+
See [Configuring quasar.conf.js](https://quasar.dev/quasar-cli/quasar-conf-js).

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@quasar/babel-preset-app'
4+
]
5+
}

jsconfig.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"src/*": ["src/*"],
6+
"app/*": ["*"],
7+
"components/*": ["src/components/*"],
8+
"layouts/*": ["src/layouts/*"],
9+
"pages/*": ["src/pages/*"],
10+
"assets/*": ["src/assets/*"],
11+
"boot/*": ["src/boot/*"],
12+
"vue$": ["node_modules/vue/dist/vue.esm.js"]
13+
}
14+
},
15+
"exclude": [
16+
"dist",
17+
".quasar",
18+
"node_modules"
19+
]
20+
}

package.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "minimappingviewer",
3+
"version": "0.0.1",
4+
"description": "MiniMappingViewer",
5+
"productName": "MiniMappingViewer",
6+
"cordovaId": "org.cordova.quasar.app",
7+
"capacitorId": "",
8+
"author": "MiniDigger <[email protected]>",
9+
"private": true,
10+
"scripts": {
11+
"lint": "eslint --ext .js,.vue src",
12+
"test": "echo \"No test specified\" && exit 0"
13+
},
14+
"dependencies": {
15+
"@quasar/extras": "^1.0.0",
16+
"axios": "^0.18.1",
17+
"quasar": "^1.0.0"
18+
},
19+
"devDependencies": {
20+
"@quasar/app": "^1.0.0",
21+
"@vue/eslint-config-prettier": "^4.0.0",
22+
"babel-eslint": "^10.0.1",
23+
"eslint": "^5.10.0",
24+
"eslint-loader": "^2.1.1",
25+
"eslint-plugin-vue": "^5.0.0"
26+
},
27+
"engines": {
28+
"node": ">= 10.18.1",
29+
"npm": ">= 6.13.4",
30+
"yarn": ">= 1.21.1"
31+
},
32+
"browserslist": [
33+
"last 1 version, not dead, ie >= 11"
34+
]
35+
}

quasar.conf.js

+158
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
// Configuration for your app
2+
// https://quasar.dev/quasar-cli/quasar-conf-js
3+
4+
module.exports = function(ctx) {
5+
return {
6+
// https://quasar.dev/quasar-cli/cli-documentation/boot-files
7+
boot: ["axios"],
8+
9+
// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-css
10+
css: ["app.scss"],
11+
12+
// https://github.com/quasarframework/quasar/tree/dev/extras
13+
extras: ["roboto-font", "material-icons"],
14+
15+
// https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-framework
16+
framework: {
17+
iconSet: "material-icons",
18+
lang: "en-us",
19+
all: "auto",
20+
21+
components: [],
22+
directives: [],
23+
24+
// Quasar plugins
25+
plugins: ["Notify", "Dialog"]
26+
},
27+
28+
supportIE: false,
29+
30+
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-build
31+
build: {
32+
scopeHoisting: true,
33+
vueRouterMode: "hash",
34+
showProgress: true,
35+
gzip: false,
36+
analyze: false,
37+
38+
// https://quasar.dev/quasar-cli/cli-documentation/handling-webpack
39+
extendWebpack(cfg) {
40+
cfg.module.rules.push({
41+
enforce: "pre",
42+
test: /\.(js|vue)$/,
43+
loader: "eslint-loader",
44+
exclude: /node_modules/,
45+
options: {
46+
formatter: require("eslint").CLIEngine.getFormatter("stylish")
47+
}
48+
});
49+
}
50+
},
51+
52+
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer
53+
devServer: {
54+
https: false,
55+
port: 8080,
56+
open: false,
57+
proxy: {
58+
"/api": "http://localhost:9090/"
59+
},
60+
headers: {
61+
"Access-Control-Allow-Origin": "*"
62+
}
63+
},
64+
65+
// animations: 'all', // --- includes all animations
66+
// https://quasar.dev/options/animations
67+
animations: [],
68+
69+
// https://quasar.dev/quasar-cli/developing-ssr/configuring-ssr
70+
ssr: {
71+
pwa: false
72+
},
73+
74+
// https://quasar.dev/quasar-cli/developing-pwa/configuring-pwa
75+
pwa: {
76+
workboxPluginMode: "GenerateSW", // 'GenerateSW' or 'InjectManifest'
77+
workboxOptions: {}, // only for GenerateSW
78+
manifest: {
79+
name: "MiniMappingViewer",
80+
short_name: "MiniMappingViewer",
81+
description: "MiniMappingViewer",
82+
display: "standalone",
83+
orientation: "portrait",
84+
background_color: "#ffffff",
85+
theme_color: "#027be3",
86+
icons: [
87+
{
88+
src: "statics/icons/icon-128x128.png",
89+
sizes: "128x128",
90+
type: "image/png"
91+
},
92+
{
93+
src: "statics/icons/icon-192x192.png",
94+
sizes: "192x192",
95+
type: "image/png"
96+
},
97+
{
98+
src: "statics/icons/icon-256x256.png",
99+
sizes: "256x256",
100+
type: "image/png"
101+
},
102+
{
103+
src: "statics/icons/icon-384x384.png",
104+
sizes: "384x384",
105+
type: "image/png"
106+
},
107+
{
108+
src: "statics/icons/icon-512x512.png",
109+
sizes: "512x512",
110+
type: "image/png"
111+
}
112+
]
113+
}
114+
},
115+
116+
// Full list of options: https://quasar.dev/quasar-cli/developing-cordova-apps/configuring-cordova
117+
cordova: {
118+
id: "me.minidigger.MiniMappingViewer"
119+
},
120+
121+
// Full list of options: https://quasar.dev/quasar-cli/developing-capacitor-apps/configuring-capacitor
122+
capacitor: {
123+
hideSplashscreen: true
124+
},
125+
126+
// Full list of options: https://quasar.dev/quasar-cli/developing-electron-apps/configuring-electron
127+
electron: {
128+
bundler: "packager", // 'packager' or 'builder'
129+
130+
packager: {
131+
// https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options
132+
// OS X / Mac App Store
133+
// appBundleId: '',
134+
// appCategoryType: '',
135+
// osxSign: '',
136+
// protocol: 'myapp://path',
137+
// Windows only
138+
// win32metadata: { ... }
139+
},
140+
141+
builder: {
142+
// https://www.electron.build/configuration/configuration
143+
144+
appId: "minimappingviewer"
145+
},
146+
147+
// keep in sync with /api-electron/main-process/electron-main
148+
// > BrowserWindow > webPreferences > nodeIntegration
149+
// More info: https://quasar.dev/quasar-cli/developing-electron-apps/node-integration
150+
nodeIntegration: true,
151+
152+
extendWebpack(cfg) {
153+
// do something with Electron main process Webpack cfg
154+
// chainWebpack also available besides this extendWebpack
155+
}
156+
}
157+
};
158+
};

src/App.vue

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<template>
2+
<div id="q-app">
3+
<router-view />
4+
</div>
5+
</template>
6+
7+
<script>
8+
export default {
9+
name: "App"
10+
};
11+
</script>

0 commit comments

Comments
 (0)