-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: merge pull request #30 from antonreshetov:dev
- Loading branch information
Showing
13 changed files
with
315 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,95 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<% if (htmlWebpackPlugin.options.nodeModules) { %> | ||
<!-- Add `node_modules/` to global paths so `require` works properly in development --> | ||
<script> | ||
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>') | ||
</script> | ||
<!-- Add `node_modules/` to global paths so `require` works properly in development --> | ||
<script> | ||
require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>') | ||
</script> | ||
<% } %> | ||
</head> | ||
<body> | ||
<style> | ||
body { | ||
margin: 0; | ||
} | ||
.app-init-preloader { | ||
height: 100vh; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
.app-init-preloader p { | ||
font-size: 16px; | ||
margin-right: 6px; | ||
} | ||
.spinner { | ||
width: 30px; | ||
height: 30px; | ||
position: relative; | ||
} | ||
.double-bounce1, | ||
.double-bounce2 { | ||
width: 100%; | ||
height: 100%; | ||
border-radius: 50%; | ||
background-color: hsl(213, 81%, 67%); | ||
opacity: 0.6; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
-webkit-animation: sk-bounce 2.0s infinite ease-in-out; | ||
animation: sk-bounce 2.0s infinite ease-in-out; | ||
} | ||
.double-bounce2 { | ||
-webkit-animation-delay: -1.0s; | ||
animation-delay: -1.0s; | ||
} | ||
@-webkit-keyframes sk-bounce { | ||
0%, | ||
100% { | ||
-webkit-transform: scale(0.0) | ||
} | ||
50% { | ||
-webkit-transform: scale(1.0) | ||
} | ||
} | ||
@keyframes sk-bounce { | ||
0%, | ||
100% { | ||
transform: scale(0.0); | ||
-webkit-transform: scale(0.0); | ||
} | ||
50% { | ||
transform: scale(1.0); | ||
-webkit-transform: scale(1.0); | ||
} | ||
} | ||
</style> | ||
</head> | ||
|
||
<div id="app"></div> | ||
<body> | ||
|
||
<!-- Set `__static` path to static files in production --> | ||
<% if (!htmlWebpackPlugin.options.isBrowser && !htmlWebpackPlugin.options.isDevelopment) { %> | ||
<div id="app"> | ||
<div class="app-init-preloader"> | ||
<p><strong>massCode</strong> is loading</p> | ||
<div class="spinner"> | ||
<div class="double-bounce1"></div> | ||
<div class="double-bounce2"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Set `__static` path to static files in production --> | ||
<% if (!htmlWebpackPlugin.options.isBrowser && !htmlWebpackPlugin.options.isDevelopment) { %> | ||
<script> | ||
window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\') | ||
</script> | ||
<% } %> | ||
<% } %> | ||
|
||
<!-- webpack builds are automatically injected --> | ||
</body> | ||
|
||
<!-- webpack builds are automatically injected --> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
<template> | ||
<AppForm> | ||
<AppFormItem label="Tab size"> | ||
<AppInput v-model="tabSize" /> | ||
<div class="desc"> | ||
The number of spaces a tab is equal to. | ||
</div> | ||
</AppFormItem> | ||
<AppFormItem label="Indent using"> | ||
<AppSelect | ||
v-model="insertSpaces" | ||
:options="insertSpacesOptions" | ||
/> | ||
<div class="desc"> | ||
Select type of indentation. | ||
</div> | ||
</AppFormItem> | ||
<AppFormItem label="Whitespace"> | ||
<AppSelect | ||
v-model="renderWhitespace" | ||
:options="renderWhitespaceOptions" | ||
/> | ||
<div class="desc"> | ||
Controls how the editor should render whitespace characters. | ||
</div> | ||
</AppFormItem> | ||
<AppFormItem label="Word wrapping"> | ||
<AppSelect | ||
v-model="wordWrap" | ||
:options="wordWrapOptions" | ||
/> | ||
<div class="desc"> | ||
Controls how lines should wrap. | ||
</div> | ||
</AppFormItem> | ||
</AppForm> | ||
</template> | ||
|
||
<script> | ||
import { mapState } from 'vuex' | ||
export default { | ||
name: 'Editor', | ||
data () { | ||
return { | ||
renderWhitespaceOptions: [ | ||
{ label: 'None', value: 'none' }, | ||
{ label: 'Boundary', value: 'boundary' }, | ||
{ label: 'All', value: 'all' } | ||
], | ||
wordWrapOptions: [ | ||
{ label: 'Off', value: 'off' }, | ||
{ label: 'On', value: 'on' }, | ||
{ label: 'Column', value: 'wordWrapColumn' } | ||
], | ||
insertSpacesOptions: [ | ||
{ label: 'Spaces', value: true }, | ||
{ label: 'Tabs', value: false } | ||
] | ||
} | ||
}, | ||
computed: { | ||
...mapState(['preferences']), | ||
renderWhitespace: { | ||
get () { | ||
return this.preferences.renderWhitespace | ||
}, | ||
set (v) { | ||
this.$store.dispatch('preferences/setWhitespaceType', v) | ||
} | ||
}, | ||
wordWrap: { | ||
get () { | ||
return this.preferences.wordWrap | ||
}, | ||
set (v) { | ||
this.$store.dispatch('preferences/setWordWrap', v) | ||
} | ||
}, | ||
tabSize: { | ||
get () { | ||
return this.preferences.tabSize | ||
}, | ||
set (v) { | ||
this.$store.dispatch('preferences/setTabSize', v) | ||
} | ||
}, | ||
insertSpaces: { | ||
get () { | ||
return this.preferences.insertSpaces | ||
}, | ||
set (v) { | ||
this.$store.dispatch('preferences/setInsertSpaces', JSON.parse(v)) | ||
} | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss"></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.