Skip to content

Commit

Permalink
Merge pull request #584 from GraphScope/feat-cluster
Browse files Browse the repository at this point in the history
feat: Add ClusterAnalysis
  • Loading branch information
pomelo-nwu authored Nov 21, 2024
2 parents 20c12b2 + 225e0db commit a66f069
Show file tree
Hide file tree
Showing 75 changed files with 25,639 additions and 2,877 deletions.
2 changes: 1 addition & 1 deletion .dumirc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export default defineConfig({
],
jsMinifier: 'terser',
resolve: {
// docDirs: ['docs'],
docDirs: ['packages/studio-components'],

atomDirs: [
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: pnpm/action-setup@v4
with:
version: 9
run_install: true
run_install: false

- name: Publish
env:
Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/prepare-publish.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ default.etcd

**/unprocessed-code.ts.txt

pnpm-lock.yaml
package-lock.json

# Byte-compiled / optimized / DLL files
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ COPY . .

# 从 Git 仓库中克隆项目
RUN pnpm install && \
npm run ci
npm run build:portal

# 清理不必要的文件
RUN rm -rf .git
Expand Down
18 changes: 3 additions & 15 deletions docs/portal/components/Tools/visualizer.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
import dynamic from 'next/dynamic';
import { GlobalSpin } from '@graphscope/studio-components';

const Visualizer = dynamic(
() =>
import('@graphscope/graph-apps').then(module => {
return {
/** 这种写法和 react lazy 就统一了 */
default: () => {
return <module.OnlineVisualizer id="tools-online" style={{ top: '64px' }} />;
},
};
}),
{
loading: () => <GlobalSpin />,
ssr: false,
},
);
const Visualizer = () => {
return null;
};

export default Visualizer;
3 changes: 1 addition & 2 deletions docs/portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
"dependencies": {
"@graphscope/docs-components": "workspace:*",
"@graphscope/studio-components": "workspace:*",
"@graphscope/studio-graph": "workspace:*",
"@graphscope/graph-apps": "workspace:*",
"@graphscope/graphy-website": "workspace:*",
"@graphscope/studio-graph": "workspace:*",
"@graphscope/studio-importor": "workspace:*",
"@graphscope/studio-site": "workspace:*",
"next": "15.0.2",
Expand Down
4 changes: 0 additions & 4 deletions examples/graph-apps/.fatherrc.js

This file was deleted.

48 changes: 0 additions & 48 deletions examples/graph-apps/CHANGELOG.md

This file was deleted.

1 change: 0 additions & 1 deletion examples/graph-apps/README.md

This file was deleted.

18 changes: 0 additions & 18 deletions examples/graph-apps/index.html

This file was deleted.

50 changes: 0 additions & 50 deletions examples/graph-apps/package.json

This file was deleted.

5 changes: 0 additions & 5 deletions examples/graph-apps/src/app.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions examples/graph-apps/src/fraud-detection/index.tsx

This file was deleted.

9 changes: 0 additions & 9 deletions examples/graph-apps/src/graph-learning/index.tsx

This file was deleted.

Loading

0 comments on commit a66f069

Please sign in to comment.