mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 02:57:57 +00:00 
			
		
		
		
	 b4b308336f
			
		
	
	b4b308336f
	
	
	
		
			
			# Pull Request Template ## Description This PR adds new eslint rules to the code base. **Error rules** | Rule name | Type | Files updated | | ----------------- | --- | - | | `vue/block-order` | error | ✅ | | `vue/component-name-in-template-casing` | error | ✅ | | `vue/component-options-name-casing` | error | ✅ | | `vue/custom-event-name-casing` | error | ✅ | | `vue/define-emits-declaration` | error | ✅ | | `vue/no-unused-properties` | error | ✅ | | `vue/define-macros-order` | error | ✅ | | `vue/define-props-declaration` | error | ✅ | | `vue/match-component-import-name` | error | ✅ | | `vue/next-tick-style` | error | ✅ | | `vue/no-bare-strings-in-template` | error | ✅ | | `vue/no-empty-component-block` | error | ✅ | | `vue/no-multiple-objects-in-class` | error | ✅ | | `vue/no-required-prop-with-default` | error | ✅ | | `vue/no-static-inline-styles` | error | ✅ | | `vue/no-template-target-blank` | error | ✅ | | `vue/no-this-in-before-route-enter` | error | ✅ | | `vue/no-undef-components` | error | ✅ | | `vue/no-unused-emit-declarations` | error | ✅ | | `vue/no-unused-refs` | error | ✅ | | `vue/no-use-v-else-with-v-for` | error | ✅ | | `vue/no-useless-v-bind` | error | ✅ | | `vue/no-v-text` | error | ✅ | | `vue/padding-line-between-blocks` | error | ✅ | | ~`vue/prefer-prop-type-boolean-first`~ | ~error~ | ❌ (removed this rule, cause a bug in displaying custom attributes) | | `vue/prefer-separate-static-class` | error | ✅ | | `vue/prefer-true-attribute-shorthand` | error | ✅ | | `vue/require-explicit-slots` | error | ✅ | | `vue/require-macro-variable-name` | error | ✅ | **Warn rules** | Rule name | Type | Files updated | | ---- | ------------- | ------------- | | `vue/no-root-v-if` | warn | ❎ | Fixes https://linear.app/chatwoot/issue/CW-3492/vue-eslint-rules ## Type of change - [x] New feature (non-breaking change which adds functionality) ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules --------- Co-authored-by: Fayaz Ahmed <fayazara@gmail.com> Co-authored-by: Muhsin Keloth <muhsinkeramam@gmail.com> Co-authored-by: Shivam Mishra <scm.mymail@gmail.com> Co-authored-by: Pranav <pranav@chatwoot.com>
		
			
				
	
	
		
			139 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script setup>
 | |
| import { computed } from 'vue';
 | |
| 
 | |
| // Props
 | |
| const props = defineProps({
 | |
|   currentPage: {
 | |
|     type: Number,
 | |
|     default: 1,
 | |
|   },
 | |
|   totalPages: {
 | |
|     type: Number,
 | |
|     default: 0,
 | |
|   },
 | |
| });
 | |
| 
 | |
| const emit = defineEmits(['pageChange']);
 | |
| const hasLastPage = computed(
 | |
|   () => props.currentPage === props.totalPages || props.totalPages === 1
 | |
| );
 | |
| const hasFirstPage = computed(() => props.currentPage === 1);
 | |
| const hasNextPage = computed(() => props.currentPage === props.totalPages);
 | |
| const hasPrevPage = computed(() => props.currentPage === 1);
 | |
| 
 | |
| function buttonClass(hasPage) {
 | |
|   if (hasPage) {
 | |
|     return 'hover:!bg-slate-50 dark:hover:!bg-slate-800';
 | |
|   }
 | |
|   return 'dark:hover:!bg-slate-700/50';
 | |
| }
 | |
| 
 | |
| function onPageChange(newPage) {
 | |
|   emit('pageChange', newPage);
 | |
| }
 | |
| 
 | |
| const onNextPage = () => {
 | |
|   if (!onNextPage.value) {
 | |
|     onPageChange(props.currentPage + 1);
 | |
|   }
 | |
| };
 | |
| const onPrevPage = () => {
 | |
|   if (!hasPrevPage.value) {
 | |
|     onPageChange(props.currentPage - 1);
 | |
|   }
 | |
| };
 | |
| const onFirstPage = () => {
 | |
|   if (!hasFirstPage.value) {
 | |
|     onPageChange(1);
 | |
|   }
 | |
| };
 | |
| const onLastPage = () => {
 | |
|   if (!hasLastPage.value) {
 | |
|     onPageChange(props.totalPages);
 | |
|   }
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <div class="flex items-center h-8 rounded-lg bg-slate-50 dark:bg-slate-800">
 | |
|     <woot-button
 | |
|       size="small"
 | |
|       variant="smooth"
 | |
|       color-scheme="secondary"
 | |
|       :is-disabled="hasFirstPage"
 | |
|       class-names="dark:!bg-slate-800 !opacity-100 ltr:rounded-l-lg ltr:rounded-r-none rtl:rounded-r-lg rtl:rounded-l-none"
 | |
|       :class="buttonClass(hasFirstPage)"
 | |
|       @click="onFirstPage"
 | |
|     >
 | |
|       <fluent-icon
 | |
|         icon="chevrons-left"
 | |
|         size="20"
 | |
|         icon-lib="lucide"
 | |
|         :class="hasFirstPage && 'opacity-40'"
 | |
|       />
 | |
|     </woot-button>
 | |
|     <div class="w-px h-4 rounded-sm bg-slate-75 dark:bg-slate-700/50" />
 | |
|     <woot-button
 | |
|       size="small"
 | |
|       variant="smooth"
 | |
|       color-scheme="secondary"
 | |
|       :is-disabled="hasPrevPage"
 | |
|       class-names="dark:!bg-slate-800 !opacity-100 rounded-none"
 | |
|       :class="buttonClass(hasPrevPage)"
 | |
|       @click="onPrevPage"
 | |
|     >
 | |
|       <fluent-icon
 | |
|         icon="chevron-left-single"
 | |
|         size="20"
 | |
|         icon-lib="lucide"
 | |
|         :class="hasPrevPage && 'opacity-40'"
 | |
|       />
 | |
|     </woot-button>
 | |
| 
 | |
|     <div
 | |
|       class="flex items-center gap-3 px-3 tabular-nums bg-slate-50 dark:bg-slate-800 text-slate-700 dark:text-slate-100"
 | |
|     >
 | |
|       <span class="text-sm text-slate-800 dark:text-slate-75">
 | |
|         {{ currentPage }}
 | |
|       </span>
 | |
|       <span class="text-slate-600 dark:text-slate-500">/</span>
 | |
|       <span class="text-sm text-slate-600 dark:text-slate-500">
 | |
|         {{ totalPages }}
 | |
|       </span>
 | |
|     </div>
 | |
|     <woot-button
 | |
|       size="small"
 | |
|       variant="smooth"
 | |
|       color-scheme="secondary"
 | |
|       :is-disabled="hasNextPage"
 | |
|       class-names="dark:!bg-slate-800 !opacity-100 rounded-none"
 | |
|       :class="buttonClass(hasNextPage)"
 | |
|       @click="onNextPage"
 | |
|     >
 | |
|       <fluent-icon
 | |
|         icon="chevron-right-single"
 | |
|         size="20"
 | |
|         icon-lib="lucide"
 | |
|         :class="hasNextPage && 'opacity-40'"
 | |
|       />
 | |
|     </woot-button>
 | |
|     <div class="w-px h-4 rounded-sm bg-slate-75 dark:bg-slate-700/50" />
 | |
|     <woot-button
 | |
|       size="small"
 | |
|       variant="smooth"
 | |
|       color-scheme="secondary"
 | |
|       class-names="dark:!bg-slate-800 !opacity-100 ltr:rounded-r-lg ltr:rounded-l-none rtl:rounded-l-lg rtl:rounded-r-none"
 | |
|       :class="buttonClass(hasLastPage)"
 | |
|       :is-disabled="hasLastPage"
 | |
|       @click="onLastPage"
 | |
|     >
 | |
|       <fluent-icon
 | |
|         icon="chevrons-right"
 | |
|         size="20"
 | |
|         icon-lib="lucide"
 | |
|         :class="hasLastPage && 'opacity-40'"
 | |
|       />
 | |
|     </woot-button>
 | |
|   </div>
 | |
| </template>
 |