-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support views share #WIK-16187 #22
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
db0bdca
feat: support views share #WIK-16187
cmm-va 826bb9d
fix: fix
cmm-va 1553803
fix: fix style
cmm-va d4a11ae
fix: fix path
cmm-va a014239
Merge branch 'develop' of github.com:worktile/ai-table into #WIK-16187
cmm-va 891ca7b
fix: fix array-event to map event
cmm-va 4770331
Merge branch 'develop' of github.com:worktile/ai-table into #WIK-16187
cmm-va df1ee7b
fix: 删除修改
cmm-va File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
import { AITable, AITableAction } from "@ai-table/grid"; | ||
import * as Y from 'yjs'; | ||
import { AITableView, AIViewAction, AIViewTable, ViewActionName } from "../../types/view"; | ||
import { toTablePath } from "../utils/translate-to-table"; | ||
import { SharedType } from "../shared"; | ||
|
||
export default function translateMapEvent( | ||
aiTable: AITable, | ||
event: Y.YMapEvent<unknown> | ||
): AIViewAction[] | AITableAction[] { | ||
const isViewTranslate = event.path.includes('views') | ||
if (isViewTranslate) { | ||
let [targetPath] = toTablePath(event.path) as [number]; | ||
const targetSyncElement = event.target as SharedType; | ||
const targetElement = (aiTable as AIViewTable).views()[targetPath] | ||
const keyChanges: [string, { action: 'add' | 'update' | 'delete', oldValue: any }][] = Array.from(event.changes.keys.entries()); | ||
const newProperties:Partial<AITableView> = {}; | ||
const properties:Partial<AITableView> = {}; | ||
|
||
const entries:[string, any][] = keyChanges.map(([key, info]) => { | ||
const value = targetSyncElement.get(key); | ||
return [ | ||
key, | ||
info.action === 'delete' ? null : value instanceof Y.AbstractType ? value.toJSON() : value | ||
] | ||
}) | ||
|
||
for (const [key, value] of entries) { | ||
const k = key as keyof AITableView; | ||
newProperties[k] = value | ||
} | ||
|
||
const oldEntries = keyChanges.map(([key]) => [key, (targetElement as any)[key]]) | ||
|
||
for (const [key, value] of oldEntries) { | ||
const k = key as keyof AITableView; | ||
properties[k] = value | ||
} | ||
|
||
return [{ type: ViewActionName.setView, view: properties, newView: newProperties, path: [targetPath] }]; | ||
|
||
} | ||
return [] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
import { isObject } from "ngx-tethys/util"; | ||
import { AIViewAction } from "../../types/view"; | ||
import { SharedType, toSyncElement } from "../shared"; | ||
|
||
export default function setView(sharedType: SharedType, action: AIViewAction): SharedType { | ||
const views = sharedType.get('views'); | ||
if (views) { | ||
const index = action.path[0]; | ||
const targetView = views.get(index) as any; | ||
Object.entries(action.newView).forEach(([key, value]) => { | ||
if (value == null) { | ||
targetView.delete(key); | ||
} else if(isObject(value)){ | ||
targetView.set(key, toSyncElement(value)); | ||
}else{ | ||
targetView.set(key,value); | ||
} | ||
}); | ||
|
||
Object.entries(action.view).forEach(([key]) => { | ||
if (!action.newView.hasOwnProperty(key)) { | ||
targetView.delete(key); | ||
} | ||
}); | ||
} | ||
return sharedType; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里的 event 类型应该是 Y.YMapEvent 了,不能在 translateArrayEvent 中处理了,关于 map 的处理可以参考下 https://github.com/worktile/y-slate/blob/main/src/apply-to-slate/map-event.ts