mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
incr: persistent scroll bars
This commit is contained in:
parent
5188f28c0d
commit
fa063b719a
@ -20,7 +20,7 @@
|
||||
<div class="flex gap-1 bg-gray-100 rounded">
|
||||
<input
|
||||
type="number"
|
||||
class="w-6 text-right outline-none bg-transparent focus:text-gray-900"
|
||||
class="w-7 text-right outline-none bg-transparent focus:text-gray-900"
|
||||
:value="pageNo"
|
||||
@change="(e) => setPageNo(e.target.value)"
|
||||
@input="(e) => setPageNo(e.target.value)"
|
||||
@ -28,7 +28,7 @@
|
||||
:max="maxPages"
|
||||
/>
|
||||
<p class="text-gray-600">/</p>
|
||||
<p class="w-5">
|
||||
<p class="w-7">
|
||||
{{ maxPages }}
|
||||
</p>
|
||||
</div>
|
||||
@ -46,7 +46,7 @@
|
||||
|
||||
<!-- Count Selector -->
|
||||
<div
|
||||
class="border rounded flex justify-self-end"
|
||||
class="border border-gray-100 rounded flex justify-self-end"
|
||||
v-if="filteredCounts.length"
|
||||
>
|
||||
<template v-for="c in filteredCounts" :key="c + '-count'">
|
||||
@ -55,7 +55,7 @@
|
||||
class="w-9"
|
||||
:class="
|
||||
count === c || (count === itemCount && c === -1)
|
||||
? 'bg-gray-200'
|
||||
? 'bg-gray-100'
|
||||
: ''
|
||||
"
|
||||
>
|
||||
|
@ -1,41 +1,39 @@
|
||||
<template>
|
||||
<div class="overflow-hidden flex flex-col h-full">
|
||||
<!-- Report Outer Container -->
|
||||
<div class="overflow-x-scroll overflow-y-hidden">
|
||||
<!-- Title Row -->
|
||||
<div class="inline-block">
|
||||
<div class="overflow-hidden">
|
||||
<!--Title Row -->
|
||||
<div
|
||||
class="w-full overflow-x-hidden flex items-center border-b"
|
||||
ref="titlerow"
|
||||
:style="{ height: `${hconst}px`, paddingRight: '8px' }"
|
||||
>
|
||||
<div
|
||||
class="flex items-center border-b"
|
||||
:style="{ height: `${hconst}px` }"
|
||||
ref="titleRow"
|
||||
v-for="(col, c) in report.columns"
|
||||
:key="c + '-col'"
|
||||
:style="getCellStyle(col, c)"
|
||||
class="
|
||||
text-gray-600 text-base
|
||||
px-3
|
||||
flex-shrink-0
|
||||
overflow-x-scroll
|
||||
whitespace-nowrap
|
||||
"
|
||||
>
|
||||
<p
|
||||
v-for="(col, c) in report.columns"
|
||||
:key="c + '-col'"
|
||||
:style="getCellStyle(col, c)"
|
||||
class="
|
||||
text-gray-600 text-base
|
||||
px-3
|
||||
flex-shrink-0
|
||||
overflow-x-scroll
|
||||
whitespace-nowrap
|
||||
"
|
||||
>
|
||||
{{ col.label }}
|
||||
</p>
|
||||
{{ col.label }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Report Rows Container -->
|
||||
<div
|
||||
class="overflow-y-scroll inline-block"
|
||||
<WithScroll
|
||||
class="overflow-auto w-full"
|
||||
style="height: calc(100% - 49px)"
|
||||
@scroll="scroll"
|
||||
>
|
||||
<!-- Report Rows -->
|
||||
<div
|
||||
v-for="(row, r) in report.reportData.slice(pageStart, pageEnd)"
|
||||
:key="r + '-row'"
|
||||
class="flex items-center"
|
||||
class="flex items-center w-max"
|
||||
:style="{ height: `${hconst}px` }"
|
||||
:class="r !== pageEnd - 1 ? 'border-b' : ''"
|
||||
>
|
||||
@ -55,8 +53,8 @@
|
||||
{{ cell.value }}
|
||||
</div>
|
||||
</div>
|
||||
<!-- </div> -->
|
||||
</div>
|
||||
</WithScroll>
|
||||
<!-- Report Rows Container -->
|
||||
</div>
|
||||
|
||||
<!-- Pagination Footer -->
|
||||
@ -73,6 +71,7 @@
|
||||
import { Report } from 'reports/Report';
|
||||
import { defineComponent } from 'vue';
|
||||
import Paginator from '../Paginator.vue';
|
||||
import WithScroll from '../WithScroll.vue';
|
||||
|
||||
export default defineComponent({
|
||||
props: {
|
||||
@ -87,6 +86,9 @@ export default defineComponent({
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
scroll({ scrollLeft }) {
|
||||
this.$refs.titlerow.scrollLeft = scrollLeft;
|
||||
},
|
||||
setPageIndices({ start, end }) {
|
||||
this.pageStart = start;
|
||||
this.pageEnd = end;
|
||||
@ -112,6 +114,6 @@ export default defineComponent({
|
||||
return styles;
|
||||
},
|
||||
},
|
||||
components: { Paginator },
|
||||
components: { Paginator, WithScroll },
|
||||
});
|
||||
</script>
|
||||
|
@ -22,19 +22,17 @@ export default {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.scroll-container {
|
||||
height: calc(100vh - 12rem);
|
||||
}
|
||||
.scroll-container::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
.scroll-container::-webkit-scrollbar-thumb {
|
||||
background-color: theme('colors.gray.200');
|
||||
background-color: theme('colors.gray.100');
|
||||
}
|
||||
.scroll-container::-webkit-scrollbar-thumb:hover {
|
||||
background-color: theme('colors.gray.300');
|
||||
background-color: theme('colors.gray.200');
|
||||
}
|
||||
.scroll-container::-webkit-scrollbar-track {
|
||||
background-color: white;
|
||||
|
Loading…
Reference in New Issue
Block a user