Initial reorder conversion
This commit is contained in:
parent
92f92d2c62
commit
01548da3c9
|
@ -84,7 +84,8 @@ export type Store = BaseStore &
|
||||||
fixedRowHeight: Writable<number>
|
fixedRowHeight: Writable<number>
|
||||||
bounds: Readable<any>
|
bounds: Readable<any>
|
||||||
height: Readable<number>
|
height: Readable<number>
|
||||||
} & Rows.Store
|
} & Rows.Store &
|
||||||
|
Reorder.Store
|
||||||
|
|
||||||
export const attachStores = (context: Store): Store => {
|
export const attachStores = (context: Store): Store => {
|
||||||
// Atomic store creation
|
// Atomic store creation
|
||||||
|
|
|
@ -1,7 +1,18 @@
|
||||||
import { get, writable, derived } from "svelte/store"
|
import { get, writable, derived, Writable, Readable } from "svelte/store"
|
||||||
import { parseEventLocation } from "../lib/utils"
|
import { parseEventLocation } from "../lib/utils"
|
||||||
|
import { Store as StoreContext } from "."
|
||||||
|
|
||||||
const reorderInitialState = {
|
interface ReorderInitialStoreData {
|
||||||
|
sourceColumn: any
|
||||||
|
targetColumn: any
|
||||||
|
insertAfter?: boolean
|
||||||
|
breakpoints: any[]
|
||||||
|
gridLeft: number
|
||||||
|
width: number
|
||||||
|
increment?: number
|
||||||
|
}
|
||||||
|
|
||||||
|
const reorderInitialState: ReorderInitialStoreData = {
|
||||||
sourceColumn: null,
|
sourceColumn: null,
|
||||||
targetColumn: null,
|
targetColumn: null,
|
||||||
insertAfter: false,
|
insertAfter: false,
|
||||||
|
@ -11,7 +22,14 @@ const reorderInitialState = {
|
||||||
increment: 0,
|
increment: 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createStores = () => {
|
interface ReorderInitialStore {
|
||||||
|
reorder: Writable<ReorderInitialStoreData>
|
||||||
|
isReordering: Readable<boolean>
|
||||||
|
}
|
||||||
|
|
||||||
|
export type Store = ReorderInitialStore
|
||||||
|
|
||||||
|
export const createStores = (): ReorderInitialStore => {
|
||||||
const reorder = writable(reorderInitialState)
|
const reorder = writable(reorderInitialState)
|
||||||
const isReordering = derived(
|
const isReordering = derived(
|
||||||
reorder,
|
reorder,
|
||||||
|
@ -24,7 +42,7 @@ export const createStores = () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createActions = context => {
|
export const createActions = (context: StoreContext) => {
|
||||||
const {
|
const {
|
||||||
reorder,
|
reorder,
|
||||||
columns,
|
columns,
|
||||||
|
@ -40,11 +58,11 @@ export const createActions = context => {
|
||||||
maxScrollLeft,
|
maxScrollLeft,
|
||||||
} = context
|
} = context
|
||||||
let latestX = 0
|
let latestX = 0
|
||||||
let autoScrollInterval
|
let autoScrollInterval: any
|
||||||
let isAutoScrolling
|
let isAutoScrolling: boolean
|
||||||
|
|
||||||
// Callback when dragging on a colum header and starting reordering
|
// Callback when dragging on a colum header and starting reordering
|
||||||
const startReordering = (column, e) => {
|
const startReordering = (column: any, e: any) => {
|
||||||
const $scrollableColumns = get(scrollableColumns)
|
const $scrollableColumns = get(scrollableColumns)
|
||||||
const $bounds = get(bounds)
|
const $bounds = get(bounds)
|
||||||
const $stickyWidth = get(stickyWidth)
|
const $stickyWidth = get(stickyWidth)
|
||||||
|
@ -87,9 +105,9 @@ export const createActions = context => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Callback when moving the mouse when reordering columns
|
// Callback when moving the mouse when reordering columns
|
||||||
const onReorderMouseMove = e => {
|
const onReorderMouseMove = (e: MouseEvent | TouchEvent) => {
|
||||||
// Immediately handle the current position
|
// Immediately handle the current position
|
||||||
const { x } = parseEventLocation(e)
|
const { x } = parseEventLocation(e as any)
|
||||||
latestX = x
|
latestX = x
|
||||||
considerReorderPosition()
|
considerReorderPosition()
|
||||||
|
|
||||||
|
@ -122,7 +140,7 @@ export const createActions = context => {
|
||||||
const $scrollLeft = get(scrollLeft)
|
const $scrollLeft = get(scrollLeft)
|
||||||
|
|
||||||
// Compute the closest breakpoint to the current position
|
// Compute the closest breakpoint to the current position
|
||||||
let breakpoint
|
let breakpoint: any
|
||||||
let minDistance = Number.MAX_SAFE_INTEGER
|
let minDistance = Number.MAX_SAFE_INTEGER
|
||||||
const mouseX = latestX - $reorder.gridLeft + $scrollLeft
|
const mouseX = latestX - $reorder.gridLeft + $scrollLeft
|
||||||
$reorder.breakpoints.forEach(point => {
|
$reorder.breakpoints.forEach(point => {
|
||||||
|
@ -157,7 +175,7 @@ export const createActions = context => {
|
||||||
const { increment } = get(reorder)
|
const { increment } = get(reorder)
|
||||||
scroll.update(state => ({
|
scroll.update(state => ({
|
||||||
...state,
|
...state,
|
||||||
left: Math.max(0, Math.min($maxLeft, state.left + increment)),
|
left: Math.max(0, Math.min($maxLeft, state.left + increment!)),
|
||||||
}))
|
}))
|
||||||
considerReorderPosition()
|
considerReorderPosition()
|
||||||
}, 10)
|
}, 10)
|
||||||
|
@ -195,7 +213,7 @@ export const createActions = context => {
|
||||||
sourceColumn,
|
sourceColumn,
|
||||||
targetColumn,
|
targetColumn,
|
||||||
insertAfter = false,
|
insertAfter = false,
|
||||||
}) => {
|
}: any) => {
|
||||||
// Find the indices in the overall columns array
|
// Find the indices in the overall columns array
|
||||||
const $columns = get(columns)
|
const $columns = get(columns)
|
||||||
let sourceIdx = $columns.findIndex(col => col.name === sourceColumn)
|
let sourceIdx = $columns.findIndex(col => col.name === sourceColumn)
|
||||||
|
@ -232,7 +250,7 @@ export const createActions = context => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Moves a column one place left (as appears visually)
|
// Moves a column one place left (as appears visually)
|
||||||
const moveColumnLeft = async column => {
|
const moveColumnLeft = async (column: string) => {
|
||||||
const $visibleColumns = get(visibleColumns)
|
const $visibleColumns = get(visibleColumns)
|
||||||
const $columnLookupMap = get(columnLookupMap)
|
const $columnLookupMap = get(columnLookupMap)
|
||||||
const sourceIdx = $columnLookupMap[column].__idx
|
const sourceIdx = $columnLookupMap[column].__idx
|
||||||
|
@ -243,7 +261,7 @@ export const createActions = context => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Moves a column one place right (as appears visually)
|
// Moves a column one place right (as appears visually)
|
||||||
const moveColumnRight = async column => {
|
const moveColumnRight = async (column: string) => {
|
||||||
const $visibleColumns = get(visibleColumns)
|
const $visibleColumns = get(visibleColumns)
|
||||||
const $columnLookupMap = get(columnLookupMap)
|
const $columnLookupMap = get(columnLookupMap)
|
||||||
const sourceIdx = $columnLookupMap[column].__idx
|
const sourceIdx = $columnLookupMap[column].__idx
|
|
@ -8,4 +8,5 @@ export interface UIFieldMutation {
|
||||||
visible?: boolean
|
visible?: boolean
|
||||||
readonly?: boolean
|
readonly?: boolean
|
||||||
width?: number
|
width?: number
|
||||||
|
order?: number
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue