12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <template>
- <SmartModal v-if="show" @close="hideModal">
- <div slot="header">
- <div class="row-wrapper">
- <h3 class="title">{{ $t("new_collection") }}</h3>
- <div>
- <button class="icon" @click="hideModal">
- <i class="material-icons">close</i>
- </button>
- </div>
- </div>
- </div>
- <div slot="body" class="flex flex-col">
- <label for="selectLabel">{{ $t("label") }}</label>
- <input
- type="text"
- id="selectLabel"
- v-model="name"
- :placeholder="$t('my_new_collection')"
- @keyup.enter="addNewCollection"
- />
- </div>
- <div slot="footer">
- <div class="row-wrapper">
- <span></span>
- <span>
- <button class="icon" @click="hideModal">
- {{ $t("cancel") }}
- </button>
- <button class="icon primary" @click="addNewCollection">
- {{ $t("save") }}
- </button>
- </span>
- </div>
- </div>
- </SmartModal>
- </template>
- <script>
- import { fb } from "~/helpers/fb"
- export default {
- props: {
- show: Boolean,
- },
- data() {
- return {
- name: undefined,
- }
- },
- methods: {
- syncCollections() {
- if (fb.currentUser !== null && fb.currentSettings[0]) {
- if (fb.currentSettings[0].value) {
- fb.writeCollections(JSON.parse(JSON.stringify(this.$store.state.postwoman.collections)))
- }
- }
- },
- addNewCollection() {
- if (!this.$data.name) {
- this.$toast.info(this.$t("invalid_collection_name"))
- return
- }
- this.$store.commit("postwoman/addNewCollection", {
- name: this.$data.name,
- })
- this.$emit("hide-modal")
- this.syncCollections()
- },
- hideModal() {
- this.$emit("hide-modal")
- this.$data.name = undefined
- },
- },
- }
- </script>
|