Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
cadriel committed Apr 9, 2021
2 parents 06b1b2e + dc47eae commit f27ccb2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 35 deletions.
26 changes: 9 additions & 17 deletions src/components/widgets/filesystem/FileEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ export default class FileEditor extends Vue {
fontSize: 16,
scrollbar: {
useShadows: false
}
},
minimap: {
enabled: (!this.isMobile)
},
rulers: (this.isMobile) ? [80, 120] : []
}
get isMobile () {
return this.$vuetify.breakpoint.mobile
}
async mounted () {
Expand Down Expand Up @@ -145,20 +153,4 @@ export default class FileEditor extends Vue {
height: 90%;
height: calc(100% - 48px);
}
// .file-editor {
// background: transparent;
// color: #ccc;
// /* you must provide font-family font-size line-height. Example: */
// font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
// font-size: 14px;
// line-height: 1.5;
// padding: 5px;
// }
// /* optional class for removing the outline */
// .prism-editor__textarea:focus {
// outline: none;
// }
</style>
21 changes: 9 additions & 12 deletions src/components/widgets/filesystem/FileEditorDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
style="z-index: 1"
>
<app-btn
v-if="!$vuetify.breakpoint.smAndDown"
icon
:disabled="!ready"
color=""
Expand All @@ -30,27 +31,27 @@
v-if="!printerPrinting && rootProperties.showConfigRef"
:href="$globals.DOCS_KLIPPER_CONFIG_REF"
target="_blank">
<v-icon small :left="!isMobile">$help</v-icon>
<span class="d-none d-md-inline-block">{{ $t('app.general.btn.config_reference') }}</span>
<v-icon small :left="!$vuetify.breakpoint.smAndDown">$help</v-icon>
<span v-if="!$vuetify.breakpoint.smAndDown">{{ $t('app.general.btn.config_reference') }}</span>
</app-btn>
<app-btn
v-if="!readonly && !printerPrinting && rootProperties.showSaveRestart"
:disabled="!ready"
@click="emitSave(true)">
<v-icon small :left="!isMobile">$restart</v-icon>
<span class="d-none d-md-inline-block">{{ $t('app.general.btn.save_restart') }}</span>
<v-icon small :left="!$vuetify.breakpoint.smAndDown">$restart</v-icon>
<span v-if="!$vuetify.breakpoint.smAndDown">{{ $t('app.general.btn.save_restart') }}</span>
</app-btn>
<app-btn
v-if="!readonly"
:disabled="!ready"
@click="emitSave(false)">
<v-icon small :left="!isMobile">$save</v-icon>
<span class="d-none d-md-inline-block">{{ $t('app.general.btn.save') }}</span>
<v-icon small :left="!$vuetify.breakpoint.smAndDown">$save</v-icon>
<span v-if="!$vuetify.breakpoint.smAndDown">{{ $t('app.general.btn.save') }}</span>
</app-btn>
<app-btn
@click="emitClose()">
<v-icon small :left="!isMobile">$close</v-icon>
<span class="d-none d-md-inline-block">{{ $t('app.general.btn.close') }}</span>
<v-icon small :left="!$vuetify.breakpoint.smAndDown">$close</v-icon>
<span v-if="!$vuetify.breakpoint.smAndDown">{{ $t('app.general.btn.close') }}</span>
</app-btn>
</v-toolbar-items>
</v-toolbar>
Expand Down Expand Up @@ -122,10 +123,6 @@ export default class FileEditorDialog extends Mixins(StateMixin) {
return this.$store.getters['files/getRootProperties'](this.root)
}
get isMobile () {
return this.$vuetify.breakpoint.sm
}
mounted () {
this.updatedContent = this.contents
}
Expand Down
8 changes: 2 additions & 6 deletions src/components/widgets/filesystem/FileSystemContextMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<v-list-item
link
@click="$emit('edit', file)"
v-if="file.type !== 'directory' && rootProperties.canEdit && !isMobile">
v-if="file.type !== 'directory' && rootProperties.canEdit">
<v-list-item-icon>
<v-icon>$pencil</v-icon>
</v-list-item-icon>
Expand All @@ -47,7 +47,7 @@
<v-list-item
link
@click="$emit('view', file)"
v-if="file.type !== 'directory' && rootProperties.canView && !isMobile">
v-if="file.type !== 'directory' && rootProperties.canView">
<v-list-item-icon>
<v-icon>$magnify</v-icon>
</v-list-item-icon>
Expand Down Expand Up @@ -124,10 +124,6 @@ export default class FileSystemContextMenu extends Mixins(StateMixin, FilesMixin
return this.$store.getters['files/getRootProperties'](this.root)
}
get isMobile () {
return this.$vuetify.breakpoint.mobile
}
get canPreheat () {
return (
'first_layer_extr_temp' in this.file &&
Expand Down
3 changes: 3 additions & 0 deletions src/plugins/vuetify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import colors from 'vuetify/lib/util/colors'
Vue.use(Vuetify)

export default new Vuetify({
breakpoint: {
mobileBreakpoint: 'xs'
},
icons: {
iconfont: 'mdiSvg',
values: Icons
Expand Down

0 comments on commit f27ccb2

Please sign in to comment.