[
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-lg-12"> <div class="card custom-card w-100"> <div class="card-header setings-header"> <div class="col-xl-4 col-4"> <h3 class="card-title"> {{ $t("assets.types.index.page_title") }} </h3> </div> <div class="col-xl-8 col-8 float-right text-right"> <div class="btn-group c-w-100"> <a @click="refreshTable()" href="#" v-tooltip="'Refresh'" class="btn btn-success" > <i class="fas fa-sync"></i> </a> <a href="/asset-types/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 v-if="$can('asset-type-create')" :to="{ name: 'assetTypes.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> <!-- /.card-header --> <div class="card-body position-relative"> <div class="row"> <div class="col-6 col-xl-4 mb-2"> <search v-model="query" @reset-pagination="resetPagination()" @reload="reload" /> </div> </div> <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.note") }}</th> <th>{{ $t("common.status") }}</th> <th v-if=" $can('asset-type-edit') || $can('asset-type-delete') " class="text-right no-print" > {{ $t("common.action") }} </th> </tr> </thead> <tbody> <tr v-show="items.length" 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.note | shortText }}</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 v-if=" $can('asset-type-edit') || $can('asset-type-delete') " class="text-right no-print" > <div class="btn-group"> <router-link v-if="$can('asset-type-edit')" v-tooltip="$t('common.edit')" :to="{ name: 'assetTypes.edit', params: { slug: data.slug }, }" class="btn btn-info btn-sm" > <i class="fas fa-edit" /> </router-link> <a v-if="$can('asset-type-delete')" 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="5"> <EmptyTable /> </td> </tr> </tbody> </table> </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("assets.types.index.page_title") }; }, data: () => ({ breadcrumbsCurrent: "assets.types.index.breadcrumbs_current", breadcrumbs: [ { name: "assets.types.index.breadcrumbs_first", url: "home", }, { name: "assets.types.index.breadcrumbs_second", url: "", }, { name: "assets.types.index.breadcrumbs_active", url: "", }, ], query: "", perPage: 10, }), // Map Getters computed: { ...mapGetters("operations", ["items", "loading", "pagination"]), }, watch: { // watch search data query: function (newQ) { 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; await this.$store.dispatch("operations/fetchData", { path: "/api/asset-types?page=", currentPage: this.pagination.current_page + "&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; await this.$store.dispatch("operations/searchData", { path: "/api/asset-types/search", term: this.query, currentPage: this.pagination.current_page + "&perPage=" + this.perPage, }); }, // Reload after search async reload() { this.query = ""; }, // print table async print() { await this.$htmlToPaper("printMe"); }, // refresh table refreshTable() { this.query = ""; this.query === "" ? this.getData() : this.searchData(); }, // delete data async deleteData(slug) { Swal.fire({ title: this.$t("common.delete_title"), text: this.$t("assets.types.index.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/asset-types/", 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("assets.types.index.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.73 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