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

feat: add autoSave toggle button #283

Merged
merged 6 commits into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
11 changes: 7 additions & 4 deletions src/Repl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export interface Props {
editor: EditorComponentType
store?: Store
autoResize?: boolean
autoSave?: boolean // auto save and compile, default to true, if false, user need to press ctrl + s to save and compile
showCompileOutput?: boolean
showImportMap?: boolean
showTsConfig?: boolean
Expand All @@ -37,17 +36,18 @@ export interface Props {
showRuntimeWarning?: boolean
}
editorOptions?: {
showErrorText?: string
showErrorText?: string | false
autoSaveText?: string | false
monacoOptions?: monaco.editor.IStandaloneEditorConstructionOptions
}
}

const autoSave = defineModel<boolean>({ default: true })
const props = withDefaults(defineProps<Props>(), {
theme: 'light',
previewTheme: false,
store: () => useStore(),
autoResize: true,
autoSave: true,
showCompileOutput: true,
showImportMap: true,
showTsConfig: true,
Expand All @@ -70,7 +70,10 @@ props.store.init()
const editorSlotName = computed(() => (props.layoutReverse ? 'right' : 'left'))
const outputSlotName = computed(() => (props.layoutReverse ? 'left' : 'right'))

provide(injectKeyProps, toRefs(props))
provide(injectKeyProps, {
...toRefs(props),
autoSave,
})
provide(
injectKeyPreviewRef,
computed(() => outputRef.value?.previewRef?.container ?? null),
Expand Down
32 changes: 29 additions & 3 deletions src/editor/EditorContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import FileSelector from './FileSelector.vue'
import Message from '../Message.vue'
import { debounce } from '../utils'
import { inject, ref, watch } from 'vue'
import MessageToggle from './MessageToggle.vue'
import ToggleButton from './ToggleButton.vue'
import { type EditorComponentType, injectKeyProps } from '../types'

const SHOW_ERROR_KEY = 'repl_show_error'
Expand All @@ -12,7 +12,7 @@ const props = defineProps<{
editorComponent: EditorComponentType
}>()

const { store } = inject(injectKeyProps)!
const { store, autoSave, editorOptions } = inject(injectKeyProps)!
const showMessage = ref(getItem())

const onChange = debounce((code: string) => {
Expand Down Expand Up @@ -42,7 +42,19 @@ watch(showMessage, () => {
@change="onChange"
/>
<Message v-show="showMessage" :err="store.errors[0]" />
<MessageToggle v-model="showMessage" />

<div class="editor-floating">
<ToggleButton
v-if="editorOptions?.showErrorText !== false"
v-model="showMessage"
:text="editorOptions?.showErrorText || 'Show Error'"
/>
<ToggleButton
v-if="editorOptions?.autoSaveText !== false"
v-model="autoSave"
:text="editorOptions?.autoSaveText || 'Auto Save'"
/>
</div>
</div>
</template>

Expand All @@ -52,4 +64,18 @@ watch(showMessage, () => {
overflow: hidden;
position: relative;
}

.editor-floating {
position: absolute;
bottom: 16px;
right: 16px;
z-index: 11;
display: flex;
flex-direction: column;
align-items: end;
gap: 8px;
background-color: var(--bg);
color: var(--text-light);
padding: 8px;
}
</style>
20 changes: 5 additions & 15 deletions src/editor/MessageToggle.vue → src/editor/ToggleButton.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
<script setup lang="ts">
import { inject } from 'vue'
import { injectKeyProps } from '../../src/types'

const { editorOptions } = inject(injectKeyProps)!
const visible = defineModel<boolean>()
defineProps<{ text: string }>()
const active = defineModel<boolean>()
</script>

<template>
<div class="wrapper" @click="visible = !visible">
<span>{{ editorOptions?.showErrorText || 'Show Error' }}</span>
<div class="wrapper" @click="active = !active">
<span>{{ text }}</span>
<div class="toggle" :class="[{ active: modelValue }]">
<div class="indicator" />
</div>
Expand All @@ -17,19 +14,12 @@ const visible = defineModel<boolean>()

<style scoped>
.wrapper {
position: absolute;
bottom: 8px;
right: 15px;
z-index: 11;
display: flex;
align-items: center;
background-color: var(--bg);
color: var(--text-light);
cursor: pointer;
padding: 4px 8px;
border-radius: 2px;
user-select: none;
}

.toggle {
display: inline-block;
margin-left: 4px;
Expand Down
5 changes: 3 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ export type EditorComponentType = Component<EditorProps>

export type OutputModes = 'preview' | EditorMode

export const injectKeyProps: InjectionKey<ToRefs<Required<Props>>> =
Symbol('props')
export const injectKeyProps: InjectionKey<
ToRefs<Required<Props & { autoSave: boolean }>>
> = Symbol('props')
export const injectKeyPreviewRef: InjectionKey<
ComputedRef<HTMLDivElement | null>
> = Symbol('preview-ref')
1 change: 1 addition & 0 deletions test/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ const App = {
// showCompileOutput: false,
// showImportMap: false
editorOptions: {
autoSaveText: '💾',
monacoOptions: {
// wordWrap: 'on',
},
Expand Down