123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- <template>
- <div class='route_container thread_new'>
- <div class='h1'>Post new thread</div>
- <div class='thread_meta_info'>
- <div class='thread_meta_info__text'>Enter the thread title and the category to post it in</div>
- <select-button v-model='selectedCategory' :options='categories'></select-button>
- <fancy-input
- placeholder='Thread title'
- v-model='name'
- :error='errors.name'
- style='margin-left: 0.5rem; display: inline-block;'
- large='true'
- width='15rem'
- ></fancy-input>
- </div>
- <div class='editor' :class='{"editor--focus": focusInput}'>
- <div class='editor__input'>
- <div class='editor__format_bar'>
- editor
- </div>
- <input-editor-core
- v-model='editor'
- :error='errors.content'
- @mentions='setMentions'
- @focus='setFocusInput(true)'
- @blur='setFocusInput(false)'
- ></input-editor-core>
- </div>
- <div class='editor__preview'>
- <div class='editor__format_bar editor__format_bar--preview'>
- preview
- </div>
- <input-editor-preview :value='editor' :mentions='mentions'></input-editor-preview>
- </div>
- </div>
- <loading-button class='button--green submit' :loading='loading' @click='postThread'>Post thread</loading-button>
- </div>
- </template>
- <script>
- import InputEditorCore from '../InputEditorCore'
- import InputEditorPreview from '../InputEditorPreview'
- import FancyInput from '../FancyInput'
- import SelectButton from '../SelectButton'
- import LoadingButton from '../LoadingButton'
- import AjaxErrorHandler from '../../assets/js/errorHandler'
- import logger from '../../assets/js/logger'
-
- export default {
- name: 'ThreadNew',
- components: {
- InputEditorCore,
- InputEditorPreview,
- SelectButton,
- FancyInput,
- LoadingButton
- },
- data () {
- return {
- selectedCategory: this.$store.state.category.selectedCategory,
- editor: '',
- mentions: [],
- name: '',
- loading: false,
- focusInput: false,
- errors: {
- content: '',
- name: ''
- }
- }
- },
- computed: {
- categories () {
- return this.$store.getters.categoriesWithoutAll
- }
- },
- methods: {
- postThread () {
- if(!this.editor.trim().length) {
- this.errors.content = 'Cannot be blank'
- return;
- }
- this.errors.content = ''
- this.errors.name = ''
- this.loading = true
- this.axios.post('/api/v1/thread', {
- name: this.name,
- category: this.selectedCategory
- }).then(res => {
- return this.axios.post('/api/v1/post', {
- threadId: res.data.id,
- content: this.editor,
- mentions: this.mentions
- })
- }).then(res => {
- this.loading = false
- this.$router.push(`/thread/${res.data.Thread.slug}/${res.data.Thread.id}/0`)
- }).catch(e => {
- this.loading = false
- AjaxErrorHandler(this.$store)(e, (error, errors) => {
- let path = error.path
- if(this.errors[path] !== undefined) {
- this.errors[path] = error.message
- } else {
- errors.push(error.message)
- }
- })
- })
- },
- setFocusInput (val) {
- this.focusInput = val
- },
- setMentions (mentions) {
- this.mentions = mentions
- }
- },
- watch: {
- '$store.state.username' (username) {
- if(!username) {
- this.$router.push('/')
- }
- }
- },
- mounted () {
- this.$store.dispatch('setTitle', 'new thread')
- logger('threadNew')
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- if(!vm.$store.state.username) {
- vm.$store.commit('setAccountModalState', true);
- next('/')
- }
- })
- }
- }
- </script>
- <style lang='scss'>
- @import '../../assets/scss/variables.scss';
- .thread_new {
- margin-top: 1rem;
- }
- .thread_meta_info {
- background-color: #fff;
- @extend .shadow_border;
- border-radius: 0.25rem;
- padding: 1rem;
- margin: 1rem 0;
- @at-root #{&}__text {
- margin-bottom: 0.5rem;
- }
- }
- .submit {
- margin-top: 1rem;
- }
- .editor {
- display: flex;
- background-color: #fff;
- border-radius: 0.25rem;
- box-shadow: 0 0 0.3rem rgba(175, 175, 175, 0.5);
- transition: all 0.2s;
- @at-root #{&}--focus {
- box-shadow: 0 0 0.3rem rgba(175, 175, 175, 1);
- }
- @at-root #{&}__format_bar {
- height: 2.5rem;
- background-color: $color__gray--primary;
- display: flex;
- padding-right: 1rem;
- padding-bottom: 0.25rem;
- justify-content: flex-end;
- align-items: center;
- font-variant: small-caps;
- }
- @at-root #{&}__input {
- width: 50%;
- position: relative;
- .input_editor_core__format_bar {
- left: 0rem;
- }
- .input_editor_core textarea {
- height: 14rem;
- }
- }
- @at-root #{&}__preview {
- border-left: 1px solid $color__gray--darker;
- width: 50%;
- .input_editor_preview__markdownHTML {
- height: 14.2rem;
- }
- }
- }
- </style>
|