123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <div>
- <modal title="Bulk Actions" class="bulk-actions-modal">
- <template #body>
- <label class="label">Method</label>
- <div class="control is-expanded select">
- <select v-model="method">
- <option value="add">Add</option>
- <option value="remove">Remove</option>
- <option value="replace">Replace</option>
- </select>
- </div>
- <label class="label">{{ type.name.slice(0, -1) }}</label>
- <div class="control is-grouped input-with-button">
- <auto-suggest
- v-model="itemInput"
- :placeholder="`Enter ${type.name} to ${method}`"
- :all-items="allItems"
- @submitted="addItem()"
- />
- <p class="control">
- <button
- class="button is-primary material-icons"
- @click="addItem()"
- >
- add
- </button>
- </p>
- </div>
- <label class="label"
- >{{ type.name }} to be
- {{ method === "add" ? `added` : `${method}d` }}</label
- >
- <div v-if="items.length > 0">
- <div
- v-for="(item, index) in items"
- :key="`item-${item}`"
- class="pill"
- >
- {{ item }}
- <span
- class="material-icons remove-item"
- @click="removeItem(index)"
- content="Remove item"
- v-tippy
- >highlight_off</span
- >
- </div>
- </div>
- <p v-else>No {{ type.name }} specified</p>
- </template>
- <template #footer>
- <button
- class="button is-primary"
- :disabled="items.length === 0"
- @click="applyChanges()"
- >
- Apply Changes
- </button>
- </template>
- </modal>
- </div>
- </template>
- <script>
- import { mapGetters, mapActions } from "vuex";
- import Toast from "toasters";
- import AutoSuggest from "@/components/AutoSuggest.vue";
- import ws from "@/ws";
- export default {
- components: { AutoSuggest },
- props: {
- type: {
- type: Object,
- default: () => {}
- }
- },
- data() {
- return {
- method: "add",
- items: [],
- itemInput: null,
- allItems: []
- };
- },
- computed: {
- ...mapGetters({
- socket: "websockets/getSocket"
- })
- },
- beforeUnmount() {
- this.itemInput = null;
- this.items = [];
- },
- mounted() {
- ws.onConnect(this.init);
- },
- methods: {
- init() {
- if (this.type.autosuggest && this.type.autosuggestDataAction)
- this.socket.dispatch(this.type.autosuggestDataAction, res => {
- if (res.status === "success") {
- const { items } = res.data;
- this.allItems = items;
- } else {
- new Toast(res.message);
- }
- });
- },
- addItem() {
- if (!this.itemInput) return;
- if (this.type.regex && !this.type.regex.test(this.itemInput)) {
- new Toast(`Invalid ${this.type.name} format.`);
- } else if (this.items.includes(this.itemInput)) {
- new Toast(`Duplicate ${this.type.name} specified.`);
- } else {
- this.items.push(this.itemInput);
- this.itemInput = null;
- }
- },
- removeItem(index) {
- this.items.splice(index, 1);
- },
- applyChanges() {
- this.socket.dispatch(
- this.type.action,
- this.method,
- this.items,
- this.type.items,
- res => {
- new Toast(res.message);
- if (res.status === "success")
- this.closeModal("bulkActions");
- }
- );
- },
- ...mapActions("modalVisibility", ["closeModal"])
- }
- };
- </script>
- <style lang="less" scoped>
- .label {
- text-transform: capitalize;
- }
- .control.input-with-button > div {
- flex: 1;
- }
- .pill {
- display: inline-flex;
- .remove-item {
- font-size: 16px;
- margin: auto 2px auto 5px;
- cursor: pointer;
- }
- }
- :deep(.autosuggest-container) {
- width: calc(100% - 40px);
- top: unset;
- }
- </style>
|