80 lines
2.5 KiB
JavaScript
80 lines
2.5 KiB
JavaScript
/*
|
|
Copyright 2021-present The maxGraph project Contributors
|
|
Copyright (c) 2006-2020, JGraph Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import { Graph } from '@maxgraph/core';
|
|
|
|
import { globalTypes } from '../.storybook/preview';
|
|
|
|
export default {
|
|
title: 'Labels/LabelPosition',
|
|
argTypes: {
|
|
...globalTypes,
|
|
},
|
|
};
|
|
|
|
const Template = ({ label, ...args }) => {
|
|
const container = document.createElement('div');
|
|
container.style.position = 'relative';
|
|
container.style.overflow = 'hidden';
|
|
container.style.width = `${args.width}px`;
|
|
container.style.height = `${args.height}px`;
|
|
container.style.background = 'url(/images/grid.gif)';
|
|
container.style.cursor = 'default';
|
|
|
|
// Creates the graph inside the given container
|
|
const graph = new Graph(container);
|
|
|
|
// Gets the default parent for inserting new cells. This
|
|
// is normally the first child of the root (ie. layer 0).
|
|
const parent = graph.getDefaultParent();
|
|
|
|
// Defines the common part of all cell styles as a string-prefix
|
|
const prefix = { shape: 'image', image: 'images/icons48/keys.png' };
|
|
|
|
// Adds cells to the model in a single step and set the vertex
|
|
// label positions using the label position styles. Vertical
|
|
// and horizontal label position styles can be combined.
|
|
// Note: Alternatively, vertex labels can be set be overriding
|
|
// CellRenderer.getLabelBounds.
|
|
graph.batchUpdate(() => {
|
|
graph.insertVertex(parent, null, 'Bottom', 60, 60, 60, 60, {
|
|
...prefix,
|
|
verticalLabelPosition: 'bottom',
|
|
verticalAlign: 'top',
|
|
});
|
|
graph.insertVertex(parent, null, 'Top', 140, 60, 60, 60, {
|
|
...prefix,
|
|
verticalLabelPosition: 'top',
|
|
verticalAlign: 'bottom',
|
|
});
|
|
graph.insertVertex(parent, null, 'Left', 60, 160, 60, 60, {
|
|
...prefix,
|
|
labelPosition: 'left',
|
|
align: 'right',
|
|
});
|
|
graph.insertVertex(parent, null, 'Right', 140, 160, 60, 60, {
|
|
...prefix,
|
|
labelPosition: 'right',
|
|
align: 'left',
|
|
});
|
|
});
|
|
|
|
return container;
|
|
};
|
|
|
|
export const Default = Template.bind({});
|