fix: editor properties UI

pull/621/head
NGPixel 6 years ago
parent 760939f808
commit c7b675bb1c

@ -18,6 +18,7 @@ import Velocity from 'velocity-animate'
import Hammer from 'hammerjs' import Hammer from 'hammerjs'
import moment from 'moment' import moment from 'moment'
import VueMoment from 'vue-moment' import VueMoment from 'vue-moment'
import VueTour from 'vue-tour'
import store from './store' import store from './store'
// ==================================== // ====================================
@ -98,6 +99,7 @@ Vue.use(helpers)
Vue.use(VeeValidate, { events: '' }) Vue.use(VeeValidate, { events: '' })
Vue.use(Vuetify) Vue.use(Vuetify)
Vue.use(VueMoment, { moment }) Vue.use(VueMoment, { moment })
Vue.use(VueTour)
Vue.prototype.Velocity = Velocity Vue.prototype.Velocity = Velocity

@ -4,9 +4,12 @@
template(slot='actions') template(slot='actions')
v-btn(outline, color='green', @click.native.stop='save') v-btn(outline, color='green', @click.native.stop='save')
v-icon(color='green', left) check v-icon(color='green', left) check
span.white--text Save span.white--text(v-if='mode === "create"') {{ $t('common:actions.create') }}
v-btn(icon): v-icon(color='red') close span.white--text(v-else) {{ $t('common:actions.save') }}
v-btn(icon, @click.native.stop='openModal(`properties`)'): v-icon(color='white') sort_by_alpha v-btn.is-icon(outline, color='red').mx-0: v-icon(color='red') close
v-btn(outline, color='blue', @click.native.stop='openModal(`properties`)', dark)
v-icon(left) sort_by_alpha
span.white--text {{ $t('editor:page') }}
v-content v-content
editor-code editor-code
component(:is='currentModal') component(:is='currentModal')
@ -24,6 +27,7 @@
<script> <script>
import _ from 'lodash' import _ from 'lodash'
import { get } from 'vuex-pathify'
import { AtomSpinner } from 'epic-spinners' import { AtomSpinner } from 'epic-spinners'
import savePageMutation from 'gql/editor/save.gql' import savePageMutation from 'gql/editor/save.gql'
@ -46,6 +50,16 @@ export default {
dialogProgress: false dialogProgress: false
} }
}, },
computed: {
mode: get('editor/mode')
},
mounted() {
if (this.mode === 'create') {
_.delay(() => {
this.openModal('properties')
}, 500)
}
},
methods: { methods: {
openModal(name) { openModal(name) {
this.currentModal = `editorModal${_.startCase(name)}` this.currentModal = `editorModal${_.startCase(name)}`

@ -2,7 +2,6 @@
v-bottom-sheet( v-bottom-sheet(
v-model='isShown' v-model='isShown'
inset inset
persistent
) )
.dialog-header .dialog-header
v-icon(color='white') sort_by_alpha v-icon(color='white') sort_by_alpha
@ -19,6 +18,7 @@
v-card-text v-card-text
v-subheader.pl-0 Page Info v-subheader.pl-0 Page Info
v-text-field( v-text-field(
ref='iptTitle'
outline outline
background-color='grey lighten-2' background-color='grey lighten-2'
label='Title' label='Title'
@ -43,50 +43,59 @@
v-divider v-divider
v-card-text v-card-text
v-subheader.pl-0 Tags v-subheader.pl-0 Tags
v-select( v-combobox(
background-color='grey lighten-2' background-color='grey lighten-2'
chips chips
deletable-chips deletable-chips
hide-details hide-details
label='Tags' label='Tags'
outline outline
tags multiple
v-model='tags' v-model='tags'
single-line single-line
) )
v-divider v-divider
v-card-text v-card-text.pb-5
v-subheader.pl-0 Publishing State v-subheader.pl-0 Publishing State
v-container.pa-0(fluid, grid-list-lg)
v-layout(row, wrap) v-layout(row, wrap)
v-flex(xs4) v-flex(xs12, md4)
v-switch( v-switch(
label='Published' label='Published'
v-model='isPublished' v-model='isPublished'
color='primary' color='primary'
) )
v-flex(xs4) v-flex(xs12, md4)
v-menu( v-dialog(
ref='menuPublishStart' ref='menuPublishStart'
lazy='' lazy
:close-on-content-click='false' :close-on-content-click='false'
v-model='isPublishStartShown' v-model='isPublishStartShown'
transition='scale-transition'
offset-y=''
full-width=''
:nudge-right='40'
min-width='290px'
:return-value.sync='publishStartDate' :return-value.sync='publishStartDate'
full-width
width='460px'
:disabled='!isPublished'
) )
v-text-field( v-text-field(
slot='activator' slot='activator'
label='Publish starting on...' label='Publish starting on...'
v-model='publishStartDate' v-model='publishStartDate'
prepend-icon='event' prepend-icon='event'
readonly) readonly
outline
background-color='grey lighten-2'
clearable
hint='Leave empty for no start date'
persistent-hint
:disabled='!isPublished'
)
v-date-picker( v-date-picker(
v-model='publishStartDate' v-model='publishStartDate'
:min='(new Date()).toISOString().substring(0, 10)' :min='(new Date()).toISOString().substring(0, 10)'
color='primary'
reactive reactive
scrollable
landscape
) )
v-spacer v-spacer
v-btn( v-btn(
@ -97,20 +106,18 @@
v-btn( v-btn(
flat='' flat=''
color='primary' color='primary'
@click='$refs.menuPublishStart.save(date)' @click='$refs.menuPublishStart.save(publishStartDate)'
) OK ) OK
v-flex(xs4) v-flex(xs12, md4)
v-menu( v-dialog(
ref='menuPublishEnd' ref='menuPublishEnd'
lazy='' lazy
:close-on-content-click='false' :close-on-content-click='false'
v-model='isPublishEndShown' v-model='isPublishEndShown'
transition='scale-transition'
offset-y=''
full-width=''
:nudge-right='40'
min-width='290px'
:return-value.sync='publishEndDate' :return-value.sync='publishEndDate'
full-width
width='460px'
:disabled='!isPublished'
) )
v-text-field( v-text-field(
slot='activator' slot='activator'
@ -118,11 +125,20 @@
v-model='publishEndDate' v-model='publishEndDate'
prepend-icon='event' prepend-icon='event'
readonly readonly
outline
background-color='grey lighten-2'
clearable
hint='Leave empty for no end date'
persistent-hint
:disabled='!isPublished'
) )
v-date-picker( v-date-picker(
v-model='publishEndDate' v-model='publishEndDate'
:min='(new Date()).toISOString().substring(0, 10)' :min='(new Date()).toISOString().substring(0, 10)'
color='primary'
reactive reactive
scrollable
landscape
) )
v-spacer v-spacer
v-btn( v-btn(
@ -133,11 +149,14 @@
v-btn( v-btn(
flat='' flat=''
color='primary' color='primary'
@click='$refs.menuPublishEnd.save(date)' @click='$refs.menuPublishEnd.save(publishEndDate)'
) OK ) OK
v-tour(name='editorPropertiesTour', :steps='tourSteps')
</template> </template>
<script> <script>
import _ from 'lodash'
import { sync } from 'vuex-pathify' import { sync } from 'vuex-pathify'
export default { export default {
@ -145,7 +164,13 @@ export default {
return { return {
isShown: false, isShown: false,
isPublishStartShown: false, isPublishStartShown: false,
isPublishEndShown: false isPublishEndShown: false,
tourSteps: [
{
target: '.dialog-header',
content: `First-time tour help here. <strong>TODO</strong>!`
}
]
} }
}, },
computed: { computed: {
@ -159,6 +184,10 @@ export default {
}, },
mounted() { mounted() {
this.isShown = true this.isShown = true
_.delay(() => {
this.$refs.iptTitle.focus()
// this.$tours['editorPropertiesTour'].start()
}, 500)
}, },
methods: { methods: {
close() { close() {

@ -6,11 +6,13 @@
// @import "../libs/animate/animate"; // @import "../libs/animate/animate";
@import 'components/markdown-content'; @import 'components/markdown-content';
@import 'components/btn';
@import 'components/data-table'; @import 'components/data-table';
@import 'components/dialog'; @import 'components/dialog';
// @import '../libs/twemoji/twemoji-awesome'; // @import '../libs/twemoji/twemoji-awesome';
@import '../libs/prism/prism.css'; @import '../libs/prism/prism.css';
@import '~vue-tour/dist/vue-tour.css';
// @import 'node_modules/diff2html/dist/diff2html.min'; // @import 'node_modules/diff2html/dist/diff2html.min';
@import 'pages/welcome'; @import 'pages/welcome';

@ -0,0 +1,3 @@
.v-btn.is-icon {
min-width: auto;
}

@ -6,9 +6,10 @@ const state = {
tags: [], tags: [],
path: '', path: '',
isPublished: true, isPublished: true,
publishEtartDate: '', publishStartDate: '',
publishEndDate: '', publishEndDate: '',
locale: 'en' locale: 'en',
mode: 'create'
} }
export default { export default {

@ -236,6 +236,7 @@
"vue-router": "3.0.1", "vue-router": "3.0.1",
"vue-simple-breakpoints": "1.0.3", "vue-simple-breakpoints": "1.0.3",
"vue-template-compiler": "2.5.16", "vue-template-compiler": "2.5.16",
"vue-tour": "1.0.1",
"vuedraggable": "2.16.0", "vuedraggable": "2.16.0",
"vuetify": "1.1.1", "vuetify": "1.1.1",
"vuex": "3.0.1", "vuex": "3.0.1",

@ -9266,6 +9266,10 @@ pn@^1.1.0:
version "1.1.0" version "1.1.0"
resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
popper.js@^1.12.9:
version "1.14.3"
resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.14.3.tgz#1438f98d046acf7b4d78cd502bf418ac64d4f095"
portfinder@^1.0.13: portfinder@^1.0.13:
version "1.0.13" version "1.0.13"
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.13.tgz#bb32ecd87c27104ae6ee44b5a3ccbf0ebb1aede9"
@ -12849,7 +12853,15 @@ vue-template-es2015-compiler@^1.6.0:
version "1.6.0" version "1.6.0"
resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz#dc42697133302ce3017524356a6c61b7b69b4a18" resolved "https://registry.yarnpkg.com/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz#dc42697133302ce3017524356a6c61b7b69b4a18"
vue@2.5.16: vue-tour@1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/vue-tour/-/vue-tour-1.0.1.tgz#70062f265db8391fc25f44da8ffcf80dd72169e6"
dependencies:
hash-sum "^1.0.2"
popper.js "^1.12.9"
vue "^2.5.13"
vue@2.5.16, vue@^2.5.13:
version "2.5.16" version "2.5.16"
resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.16.tgz#07edb75e8412aaeed871ebafa99f4672584a0085" resolved "https://registry.yarnpkg.com/vue/-/vue-2.5.16.tgz#07edb75e8412aaeed871ebafa99f4672584a0085"

Loading…
Cancel
Save