[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: index.vue
<template> <div> <!-- breadcrumbs Start --> <breadcrumbs :items="breadcrumbs" :current="breadcrumbsCurrent" /> <!-- breadcrumbs end --> <div class="row"> <div class="col-12 col-xl-3"> <SettingsSidebar /> </div> <div class="col-12 col-xl-9"> <div class="card"> <div class="card-header setings-header"> <div class="col-xl-4 col-4"> <h3 class="card-title"> {{ $t("setup.currencies.index.page_title") }} </h3> </div> <div class="col-xl-8 col-8 float-right text-right"> <div class="btn-group"> <a href="/setup/currencies/pdf" v-tooltip="$t('common.export_table')" class="btn btn-secondary" > <i class="fas fa-file-export"></i> </a> <a @click="print" v-tooltip="$t('common.print_table')" class="btn btn-info" > <i class="fas fa-print"></i> </a> <router-link :to="{ name: 'currencies.create' }" class="btn btn-primary" > {{ $t("common.create") }} <i class="fas fa-plus-circle d-none d-sm-inline-block" /> </router-link> </div> </div> </div> <div class="card-body"> <search class="col-md-12" v-model="query" @reset-pagination="resetPagination()" @reload="reload" /> <div class="col-md-12"> <table-loading v-show="loading" /> <div class="table-responsive table-custom mt-3" id="printMe"> <table class="table"> <thead> <tr> <th>{{ $t("common.s_no") }}</th> <th>{{ $t("common.name") }}</th> <th>{{ $t("common.code") }}</th> <th>{{ $t("setup.currencies.common.symbol") }}</th> <th>{{ $t("setup.currencies.index.table.position") }}</th> <th>{{ $t("setup.currencies.index.table.preview") }}</th> <th>{{ $t("common.status") }}</th> <th class="text-right no-print"> {{ $t("common.action") }} </th> </tr> </thead> <tbody> <tr v-for="(data, i) in items" :key="i"> <td> <span v-if="pagination && pagination.current_page > 1"> {{ pagination.per_page * (pagination.current_page - 1) + (i + 1) }} </span> <span v-else>{{ i + 1 }}</span> </td> <td>{{ data.name }}</td> <td>{{ data.code }}</td> <td>{{ data.symbol }}</td> <td>{{ data.position }}</td> <td> <span v-if="data.position === 'left'"> {{ data.symbol }}0.00 </span> <span v-else>0.00{{ data.symbol }}</span> </td> <td> <span v-if="data.status === 1" class="badge bg-success" >{{ $t("common.active") }}</span > <span v-else class="badge bg-danger">{{ $t("common.in_active") }}</span> </td> <td class="text-right no-print"> <div class="btn-group"> <router-link v-tooltip="$t('common.edit')" :to="{ name: 'currencies.edit', params: { slug: data.slug }, }" class="btn btn-info btn-sm" > <i class="fas fa-edit" /> </router-link> <a v-if="appInfo.currency.symbol != data.symbol" v-tooltip="$t('common.delete')" href="#" class="btn btn-danger btn-sm" @click="deleteData(data.slug)" > <i class="fas fa-trash" /> </a> </div> </td> </tr> <tr v-show="!loading && !items.length"> <td colspan="8"> <EmptyTable /> </td> </tr> </tbody> </table> </div> </div> </div> <div class="card-footer"> <div class="dtable-footer"> <div class="form-group row display-per-page"> <label>{{ $t("per_page") }} </label> <div> <select @change="updatePerPager" v-model="perPage" class="form-control form-control-sm ml-1" > <option value="10">10</option> <option value="25">25</option> <option value="50">50</option> <option value="100">100</option> </select> </div> </div> <!-- pagination-start --> <pagination v-if="pagination && pagination.last_page > 1" :pagination="pagination" :offset="5" class="justify-flex-end" @paginate="paginate" /> <!-- pagination-end --> </div> </div> </div> </div> </div> </div> </template> <script> import { mapGetters } from "vuex"; export default { middleware: ["auth", "check-permissions"], metaInfo() { return { title: this.$t("setup.currencies.index.page_title") }; }, data: () => ({ breadcrumbsCurrent: "setup.currencies.index.breadcrumbs_current", breadcrumbs: [ { name: "setup.currencies.index.breadcrumbs_first", url: "home", }, { name: "setup.currencies.index.breadcrumbs_second", url: "setup.index", }, { name: "setup.currencies.index.breadcrumbs_active", url: "", }, ], query: "", perPage: 10, }), // Map Getters computed: { ...mapGetters("operations", ["appInfo", "items", "loading", "pagination"]), }, watch: { // watch search data query: function (newQ, oldQ) { if (newQ === "") { this.getData(); } else { this.searchData(); } }, }, created() { this.getData(); }, methods: { // update per page count updatePerPager() { this.pagination.current_page = 1; this.query === "" ? this.getData() : this.searchData(); }, // get data async getData() { this.$store.state.operations.loading = true; let currentPage = this.pagination ? this.pagination.current_page : 1; await this.$store.dispatch("operations/fetchData", { path: "/api/currencies?page=", currentPage: currentPage + "&perPage=" + this.perPage, }); }, // Pagination async paginate() { this.query === "" ? this.getData() : this.searchData(); }, // Reset pagination async resetPagination() { this.pagination.current_page = 1; }, // search data async searchData() { this.$store.state.operations.loading = true; let currentPage = this.pagination ? this.pagination.current_page : 1; await this.$store.dispatch("operations/searchData", { term: this.query, path: "/api/currencies/search/", currentPage: currentPage + "&perPage=" + this.perPage, }); }, // Reload after search async reload() { this.query = ""; }, // print table async print() { await this.$htmlToPaper("printMe"); }, // delete data async deleteData(slug) { Swal.fire({ title: this.$t("common.delete_title"), text: this.$t("common.delete_warning"), type: "warning", showCancelButton: true, confirmButtonText: this.$t("common.delete_confirm_text"), }).then((result) => { // Send request to the server if (result.value) { this.$store .dispatch("operations/deleteData", { path: "/api/currencies/", slug: slug, }) .then((response) => { if (response === true) { Swal.fire( this.$t("common.deleted"), this.$t("common.delete_success"), "success" ); } else { Swal.fire( this.$t("common.failed"), this.$t("common.delete_failed"), "warning" ); } }); } }); }, }, }; </script> <style> </style>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.71 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002