@rpg-engine/long-bow 0.1.82 → 0.1.85
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Button.d.ts +1 -0
- package/dist/components/Equipment/EquipmentSet.d.ts +3 -1
- package/dist/components/Item/Cards/ItemTooltip.d.ts +6 -0
- package/dist/components/Item/Inventory/ItemContainer.d.ts +3 -5
- package/dist/components/Item/Inventory/ItemContainerTypes.d.ts +4 -0
- package/dist/components/Item/Inventory/ItemSlot.d.ts +4 -7
- package/dist/components/PropertySelect/PropertySelect.d.ts +12 -0
- package/dist/components/QuestInfo/QuestInfo.d.ts +14 -0
- package/dist/components/RelativeListMenu.d.ts +13 -0
- package/dist/components/shared/SpriteIcon.d.ts +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/long-bow.cjs.development.js +407 -813
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +402 -811
- package/dist/long-bow.esm.js.map +1 -1
- package/dist/stories/Button.stories.d.ts +5 -0
- package/dist/stories/Chat.stories.d.ts +5 -0
- package/dist/stories/CheckButton.stories.d.ts +5 -0
- package/dist/stories/DraggableContainer.stories.d.ts +5 -0
- package/dist/stories/Dropdown.stories.d.ts +5 -0
- package/dist/stories/EquipmentSet.stories.d.ts +5 -0
- package/dist/stories/ItemContainer.stories.d.ts +5 -0
- package/dist/stories/ListMenu.stories.d.ts +5 -0
- package/dist/stories/Multitab.stories.d.ts +6 -0
- package/dist/stories/NPCDialog.stories.d.ts +7 -0
- package/dist/stories/ProgressBar.stories.d.ts +8 -0
- package/dist/stories/PropertySelect.stories.d.ts +5 -0
- package/dist/stories/QuestInfo.stories.d.ts +5 -0
- package/dist/stories/RPGUIContainers.stories.d.ts +5 -0
- package/dist/stories/RadioButton.stories.d.ts +5 -0
- package/dist/stories/RangeSlider.stories.d.ts +5 -0
- package/dist/stories/ScrollList.stories.d.ts +5 -0
- package/dist/stories/SimpleProgressBar.stories.d.ts +5 -0
- package/dist/stories/SkillProgressBar.stories.d.ts +5 -0
- package/dist/stories/SkillsContainer.stories.d.ts +5 -0
- package/dist/stories/Text.stories.d.ts +7 -0
- package/package.json +2 -2
- package/src/components/Button.tsx +3 -2
- package/src/components/Equipment/EquipmentSet.tsx +97 -142
- package/src/components/Item/Cards/ItemTooltip.tsx +32 -0
- package/src/components/Item/Inventory/ItemContainer.tsx +47 -95
- package/src/components/Item/Inventory/ItemContainerTypes.ts +4 -0
- package/src/components/Item/Inventory/ItemSlot.tsx +145 -104
- package/src/components/NPCDialog/QuestionDialog/QuestionDialog.tsx +0 -3
- package/src/components/PropertySelect/PropertySelect.tsx +101 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow01-left-clicked.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow01-left.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow01-right-clicked.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow01-right.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow02-left-clicked.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow02-left.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow02-right-clicked.png +0 -0
- package/src/components/PropertySelect/img/ui-arrows/arrow02-right.png +0 -0
- package/src/components/QuestInfo/QuestInfo.tsx +143 -0
- package/src/components/QuestInfo/img/default.png +0 -0
- package/src/components/RelativeListMenu.tsx +83 -0
- package/src/components/SkillsContainer.tsx +15 -1
- package/src/components/shared/SpriteIcon.tsx +4 -2
- package/src/index.tsx +1 -0
- package/src/mocks/atlas/icons/icons.json +494 -62
- package/src/mocks/atlas/icons/icons.png +0 -0
- package/src/mocks/itemContainer.mocks.ts +1 -1
- package/src/stories/Button.stories.tsx +36 -0
- package/src/stories/Chat.stories.tsx +170 -0
- package/src/stories/CheckButton.stories.tsx +48 -0
- package/src/stories/DraggableContainer.stories.tsx +28 -0
- package/src/stories/Dropdown.stories.tsx +46 -0
- package/src/stories/EquipmentSet.stories.tsx +50 -0
- package/src/stories/ItemContainer.stories.tsx +50 -0
- package/src/stories/ListMenu.stories.tsx +56 -0
- package/src/stories/Multitab.stories.tsx +51 -0
- package/src/stories/NPCDialog.stories.tsx +130 -0
- package/src/stories/ProgressBar.stories.tsx +23 -0
- package/src/stories/PropertySelect.stories.tsx +41 -0
- package/src/stories/QuestInfo.stories.tsx +76 -0
- package/src/stories/RPGUIContainers.stories.tsx +42 -0
- package/src/stories/RadioButton.stories.tsx +49 -0
- package/src/stories/RangeSlider.stories.tsx +60 -0
- package/src/stories/ScrollList.stories.tsx +85 -0
- package/src/stories/SimpleProgressBar.stories.tsx +22 -0
- package/src/stories/SkillProgressBar.stories.tsx +30 -0
- package/src/stories/SkillsContainer.stories.tsx +31 -0
- package/src/stories/Text.stories.tsx +42 -0
- package/dist/components/Item/Cards/ItemCard.d.ts +0 -9
- package/dist/components/store/UI.store.d.ts +0 -34
- package/src/components/Item/Cards/ItemCard.tsx +0 -36
- package/src/components/store/UI.store.ts +0 -192
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RPGUIRoot } from '..';
|
|
4
|
+
import PropertySelect, {
|
|
5
|
+
IPropertySelectProps,
|
|
6
|
+
} from '../components/PropertySelect/PropertySelect';
|
|
7
|
+
|
|
8
|
+
const meta: Meta = {
|
|
9
|
+
title: 'Property Select',
|
|
10
|
+
component: PropertySelect,
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default meta;
|
|
14
|
+
|
|
15
|
+
const Template: Story<IPropertySelectProps> = args => (
|
|
16
|
+
<RPGUIRoot>
|
|
17
|
+
<PropertySelect {...args} />
|
|
18
|
+
</RPGUIRoot>
|
|
19
|
+
);
|
|
20
|
+
|
|
21
|
+
export const Default = Template.bind({});
|
|
22
|
+
|
|
23
|
+
const propertiesMock = [
|
|
24
|
+
{
|
|
25
|
+
id: '2b716274-b19c-451d-9561-16bca8c6a12d',
|
|
26
|
+
name: 'Vegetables',
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
id: '536789bd-38fb-48f9-8903-dad86f276d47',
|
|
30
|
+
name: 'Counseling',
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
id: '80f07029-b907-4fae-872e-4f2b569f81c9',
|
|
34
|
+
name: 'Through',
|
|
35
|
+
},
|
|
36
|
+
];
|
|
37
|
+
|
|
38
|
+
Default.args = {
|
|
39
|
+
availableProperties: propertiesMock,
|
|
40
|
+
selectedProperty: {},
|
|
41
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import {
|
|
4
|
+
IQuestInfoProps,
|
|
5
|
+
QuestInfo,
|
|
6
|
+
} from '../../src/components/QuestInfo/QuestInfo';
|
|
7
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
8
|
+
|
|
9
|
+
const meta: Meta = {
|
|
10
|
+
title: 'Quest Info',
|
|
11
|
+
component: QuestInfo,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default meta;
|
|
15
|
+
|
|
16
|
+
const Template: Story<IQuestInfoProps> = args => (
|
|
17
|
+
<RPGUIRoot>
|
|
18
|
+
<QuestInfo {...args} />
|
|
19
|
+
</RPGUIRoot>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
export const Default = Template.bind({});
|
|
23
|
+
|
|
24
|
+
const buttonMock = [
|
|
25
|
+
{
|
|
26
|
+
disabled: false,
|
|
27
|
+
title: 'Accept',
|
|
28
|
+
onClick: () => console.log('button 1 clicked'),
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
disabled: true,
|
|
32
|
+
title: 'Share',
|
|
33
|
+
onClick: () => console.log('button 2 clicked'),
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
disabled: false,
|
|
37
|
+
title: 'Reject',
|
|
38
|
+
onClick: () => console.log('button 3 clicked'),
|
|
39
|
+
},
|
|
40
|
+
];
|
|
41
|
+
|
|
42
|
+
Default.args = {
|
|
43
|
+
title: 'Quest Info',
|
|
44
|
+
onClose: () => console.log('closing'),
|
|
45
|
+
button: buttonMock,
|
|
46
|
+
children: (
|
|
47
|
+
<>
|
|
48
|
+
<h1>HTML Ipsum Presents</h1>
|
|
49
|
+
<p>
|
|
50
|
+
<strong>Pellentesque habitant morbi tristique</strong> senectus et netus
|
|
51
|
+
et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat
|
|
52
|
+
vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet
|
|
53
|
+
quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris
|
|
54
|
+
placerat eleifend leo. Quisque sit amet est et sapien ullamcorper
|
|
55
|
+
pharetra. Vestibulum erat wisi, condimentum sed,{' '}
|
|
56
|
+
<code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum,
|
|
57
|
+
elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus
|
|
58
|
+
lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut
|
|
59
|
+
felis.
|
|
60
|
+
</p>
|
|
61
|
+
<h1>HTML Ipsum Presents</h1>
|
|
62
|
+
<p>
|
|
63
|
+
<strong>Pellentesque habitant morbi tristique</strong> senectus et netus
|
|
64
|
+
et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat
|
|
65
|
+
vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet
|
|
66
|
+
quam egestas semper. <em>Aenean ultricies mi vitae est.</em> Mauris
|
|
67
|
+
placerat eleifend leo. Quisque sit amet est et sapien ullamcorper
|
|
68
|
+
pharetra. Vestibulum erat wisi, condimentum sed,{' '}
|
|
69
|
+
<code>commodo vitae</code>, ornare sit amet, wisi. Aenean fermentum,
|
|
70
|
+
elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus
|
|
71
|
+
lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut
|
|
72
|
+
felis.
|
|
73
|
+
</p>
|
|
74
|
+
</>
|
|
75
|
+
),
|
|
76
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import {
|
|
4
|
+
IRPGUIContainerProps,
|
|
5
|
+
RPGUIContainer,
|
|
6
|
+
RPGUIContainerTypes,
|
|
7
|
+
} from '../../src/components/RPGUIContainer';
|
|
8
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
9
|
+
|
|
10
|
+
const meta: Meta = {
|
|
11
|
+
title: 'RPGUI Container',
|
|
12
|
+
component: RPGUIContainer,
|
|
13
|
+
argTypes: {
|
|
14
|
+
type: {
|
|
15
|
+
control: {
|
|
16
|
+
type: 'select',
|
|
17
|
+
labels: {
|
|
18
|
+
[RPGUIContainerTypes.Framed]: 'framed',
|
|
19
|
+
[RPGUIContainerTypes.FramedGold]: 'framed-gold',
|
|
20
|
+
[RPGUIContainerTypes.FramedGold2]: 'framed-gold-2',
|
|
21
|
+
[RPGUIContainerTypes.FramedGrey]: 'framed-grey',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
children: {},
|
|
26
|
+
},
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export default meta;
|
|
30
|
+
|
|
31
|
+
const Template: Story<IRPGUIContainerProps> = args => (
|
|
32
|
+
<RPGUIRoot>
|
|
33
|
+
<RPGUIContainer {...args} />
|
|
34
|
+
</RPGUIRoot>
|
|
35
|
+
);
|
|
36
|
+
|
|
37
|
+
export const Default = Template.bind({});
|
|
38
|
+
|
|
39
|
+
Default.args = {
|
|
40
|
+
type: RPGUIContainerTypes.Framed,
|
|
41
|
+
children: <p>This is a container test</p>,
|
|
42
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import {
|
|
4
|
+
InputRadio,
|
|
5
|
+
IRadioItems,
|
|
6
|
+
IRadioProps,
|
|
7
|
+
} from '../../src/components/RadioButton';
|
|
8
|
+
import {
|
|
9
|
+
RPGUIContainer,
|
|
10
|
+
RPGUIContainerTypes,
|
|
11
|
+
} from '../../src/components/RPGUIContainer';
|
|
12
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
13
|
+
|
|
14
|
+
const meta: Meta = {
|
|
15
|
+
title: 'Radio Input',
|
|
16
|
+
component: InputRadio,
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export default meta;
|
|
20
|
+
|
|
21
|
+
const Template: Story<IRadioProps> = args => (
|
|
22
|
+
<RPGUIRoot>
|
|
23
|
+
<RPGUIContainer type={RPGUIContainerTypes.Framed}>
|
|
24
|
+
<InputRadio {...args} />
|
|
25
|
+
</RPGUIContainer>
|
|
26
|
+
</RPGUIRoot>
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
export const Default = Template.bind({});
|
|
30
|
+
|
|
31
|
+
const items: IRadioItems[] = [
|
|
32
|
+
{
|
|
33
|
+
label: 'label1',
|
|
34
|
+
value: 'value1',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
label: 'label2',
|
|
38
|
+
value: 'value2',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
label: 'label3',
|
|
42
|
+
value: 'value3',
|
|
43
|
+
},
|
|
44
|
+
];
|
|
45
|
+
|
|
46
|
+
Default.args = {
|
|
47
|
+
items,
|
|
48
|
+
name: 'teste',
|
|
49
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import {
|
|
4
|
+
IRangeSliderProps,
|
|
5
|
+
RangeSlider,
|
|
6
|
+
RangeSliderType,
|
|
7
|
+
} from '../../src/components/RangeSlider';
|
|
8
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
9
|
+
|
|
10
|
+
const meta: Meta = {
|
|
11
|
+
title: 'Slider',
|
|
12
|
+
component: RangeSlider,
|
|
13
|
+
argTypes: {
|
|
14
|
+
type: {
|
|
15
|
+
control: {
|
|
16
|
+
type: 'select',
|
|
17
|
+
labels: {
|
|
18
|
+
[RangeSliderType.Slider]: 'slider',
|
|
19
|
+
[RangeSliderType.GoldSlider]: 'golden-slider',
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
},
|
|
23
|
+
valueMin: {
|
|
24
|
+
control: {
|
|
25
|
+
type: 'number',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
valueMax: {
|
|
29
|
+
control: {
|
|
30
|
+
type: 'number',
|
|
31
|
+
},
|
|
32
|
+
},
|
|
33
|
+
value: {
|
|
34
|
+
control: {
|
|
35
|
+
type: 'number',
|
|
36
|
+
},
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
parameters: {
|
|
40
|
+
controls: { expanded: true },
|
|
41
|
+
},
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
export default meta;
|
|
45
|
+
|
|
46
|
+
const Template: Story<IRangeSliderProps> = args => (
|
|
47
|
+
<RPGUIRoot>
|
|
48
|
+
<RangeSlider {...args} />
|
|
49
|
+
</RPGUIRoot>
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
// By passing using the Args format for exported stories, you can control the props for a component for reuse in a test
|
|
53
|
+
// https://storybook.js.org/docs/react/workflows/unit-testing
|
|
54
|
+
export const Default = Template.bind({});
|
|
55
|
+
|
|
56
|
+
Default.args = {
|
|
57
|
+
type: RangeSliderType.Slider,
|
|
58
|
+
valueMin: 0,
|
|
59
|
+
valueMax: 100,
|
|
60
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
4
|
+
import { IListMenuProps, ListMenu } from '../../src/components/ScrollList';
|
|
5
|
+
|
|
6
|
+
const meta: Meta = {
|
|
7
|
+
/* 👇 The title prop is optional.
|
|
8
|
+
* See https://storybook.js.org/docsreact/configure/overview#configure-story-loading
|
|
9
|
+
* to learn how to generate automatic titles
|
|
10
|
+
*/
|
|
11
|
+
title: 'Scroll List',
|
|
12
|
+
component: ListMenu,
|
|
13
|
+
argTypes: {},
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export default meta;
|
|
17
|
+
|
|
18
|
+
//👇 We create a “template” of how args map to rendering "Blacksmith","Merchant","City Guard","Explorer"
|
|
19
|
+
const Template: Story<IListMenuProps> = args => (
|
|
20
|
+
<RPGUIRoot>
|
|
21
|
+
<ListMenu {...args} />
|
|
22
|
+
</RPGUIRoot>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export const Default = Template.bind({});
|
|
26
|
+
|
|
27
|
+
Default.args = {
|
|
28
|
+
title: 'Scroll List',
|
|
29
|
+
// x: 100,
|
|
30
|
+
// y: 100,
|
|
31
|
+
options: [
|
|
32
|
+
{
|
|
33
|
+
id: 'blacksmith',
|
|
34
|
+
text: 'Huge option added here',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
text: 'Merchant',
|
|
38
|
+
id: 'merchant',
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
text: 'City Guard',
|
|
42
|
+
id: 'city-guard',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
text: 'Explorer',
|
|
46
|
+
id: 'explorer',
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
text: 'Royalty',
|
|
50
|
+
id: 'royalty',
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
text: 'Gladiator',
|
|
54
|
+
id: 'gladiator',
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
id: 'blacksmith',
|
|
58
|
+
text: 'Huge option added here',
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
text: 'Merchant',
|
|
62
|
+
id: 'merchant',
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
text: 'City Guard',
|
|
66
|
+
id: 'city-guard',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
text: 'Explorer',
|
|
70
|
+
id: 'explorer',
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
text: 'Royalty',
|
|
74
|
+
id: 'royalty',
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
text: 'Gladiator',
|
|
78
|
+
id: 'gladiator',
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
text: 'Gladiator',
|
|
82
|
+
id: 'gladiator',
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
4
|
+
import {
|
|
5
|
+
ISimpleProgressBarProps,
|
|
6
|
+
SimpleProgressBar,
|
|
7
|
+
} from '../../src/components/SimpleProgressBar';
|
|
8
|
+
|
|
9
|
+
const meta: Meta = {
|
|
10
|
+
title: 'Simple Progress Bar',
|
|
11
|
+
component: SimpleProgressBar,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default meta;
|
|
15
|
+
|
|
16
|
+
const Template: Story<ISimpleProgressBarProps> = args => (
|
|
17
|
+
<RPGUIRoot>
|
|
18
|
+
<SimpleProgressBar {...args} />
|
|
19
|
+
</RPGUIRoot>
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
export const Default = Template.bind({});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
4
|
+
import {
|
|
5
|
+
ISkillProgressBarProps,
|
|
6
|
+
SkillProgressBar,
|
|
7
|
+
} from '../../src/components/SkillProgressBar';
|
|
8
|
+
|
|
9
|
+
const meta: Meta = {
|
|
10
|
+
title: 'Skill Progress Bar',
|
|
11
|
+
component: SkillProgressBar,
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
export default meta;
|
|
15
|
+
|
|
16
|
+
const Template: Story<ISkillProgressBarProps> = args => (
|
|
17
|
+
<RPGUIRoot>
|
|
18
|
+
<SkillProgressBar {...args} />
|
|
19
|
+
</RPGUIRoot>
|
|
20
|
+
);
|
|
21
|
+
export const Default = Template.bind([]);
|
|
22
|
+
|
|
23
|
+
Default.args = {
|
|
24
|
+
skillName: 'Sword skill',
|
|
25
|
+
bgColor: '#ff0000',
|
|
26
|
+
level: 2,
|
|
27
|
+
skillPoints: 10,
|
|
28
|
+
skillPointsToNextLevel: 100,
|
|
29
|
+
texturePath: 'swords/broad-sword.png',
|
|
30
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RPGUIRoot } from '../../src/components/RPGUIRoot';
|
|
4
|
+
import {
|
|
5
|
+
ISkillContainerProps,
|
|
6
|
+
SkillsContainer,
|
|
7
|
+
} from '../../src/components/SkillsContainer';
|
|
8
|
+
import { skillMock } from '../../src/mocks/skills.mocks';
|
|
9
|
+
|
|
10
|
+
const meta: Meta = {
|
|
11
|
+
title: 'Skills Container',
|
|
12
|
+
component: SkillsContainer,
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export default meta;
|
|
16
|
+
|
|
17
|
+
const Template: Story<ISkillContainerProps> = args => (
|
|
18
|
+
<RPGUIRoot>
|
|
19
|
+
<SkillsContainer
|
|
20
|
+
{...args}
|
|
21
|
+
skill={skillMock}
|
|
22
|
+
onCloseButton={() => console.log('close skill container')}
|
|
23
|
+
/>
|
|
24
|
+
</RPGUIRoot>
|
|
25
|
+
);
|
|
26
|
+
|
|
27
|
+
export const Default = Template.bind([]);
|
|
28
|
+
|
|
29
|
+
Default.args = {
|
|
30
|
+
skill: skillMock,
|
|
31
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { Meta, Story } from '@storybook/react';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { RPGUIRoot } from '../../src';
|
|
4
|
+
import {
|
|
5
|
+
IInputProps,
|
|
6
|
+
Input as InputComponent,
|
|
7
|
+
} from '../../src/components/Input';
|
|
8
|
+
import {
|
|
9
|
+
ITextArea,
|
|
10
|
+
TextArea as TextAreaComponent,
|
|
11
|
+
} from '../../src/components/TextArea';
|
|
12
|
+
|
|
13
|
+
const meta: Meta = {
|
|
14
|
+
title: 'Text',
|
|
15
|
+
component: InputComponent,
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export default meta;
|
|
19
|
+
|
|
20
|
+
const InputTemplate: Story<IInputProps> = args => (
|
|
21
|
+
<RPGUIRoot>
|
|
22
|
+
<InputComponent {...args} />
|
|
23
|
+
</RPGUIRoot>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export const Input = InputTemplate.bind({});
|
|
27
|
+
|
|
28
|
+
Input.args = {
|
|
29
|
+
placeholder: 'Test placeholder',
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const TextAreaTemplate: Story<ITextArea> = args => (
|
|
33
|
+
<RPGUIRoot>
|
|
34
|
+
<TextAreaComponent {...args} />
|
|
35
|
+
</RPGUIRoot>
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
export const TextArea = TextAreaTemplate.bind({});
|
|
39
|
+
|
|
40
|
+
TextArea.args = {
|
|
41
|
+
placeholder: 'Test placeholder',
|
|
42
|
+
};
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { IItem, ItemSocketEvents, ItemType } from '@rpg-engine/shared';
|
|
2
|
-
import { IContextMenuItem } from '../Item/Inventory/itemContainerHelper';
|
|
3
|
-
import { SlotContainerType } from '../Item/Inventory/ItemSlot';
|
|
4
|
-
interface IContextMenu {
|
|
5
|
-
visible: boolean;
|
|
6
|
-
posX: number;
|
|
7
|
-
posY: number;
|
|
8
|
-
slotItem: IItem | null;
|
|
9
|
-
slotIndex?: number | null;
|
|
10
|
-
contextActions: IContextMenuItem[];
|
|
11
|
-
}
|
|
12
|
-
interface IHoverDetail {
|
|
13
|
-
visible: boolean;
|
|
14
|
-
posX: number;
|
|
15
|
-
posY: number;
|
|
16
|
-
item: IItem | null;
|
|
17
|
-
}
|
|
18
|
-
interface ISetContextMenu extends Omit<IContextMenu, 'contextActions'> {
|
|
19
|
-
}
|
|
20
|
-
declare class UIStore {
|
|
21
|
-
contextMenu: IContextMenu | null;
|
|
22
|
-
onHoverDetail: IHoverDetail | null;
|
|
23
|
-
constructor();
|
|
24
|
-
setContextMenu(contextMenu: ISetContextMenu, itemType: ItemType): void;
|
|
25
|
-
setEquipContextMenu(contextMenu: ISetContextMenu, itemType: ItemType, isItemContainer: boolean | undefined): void;
|
|
26
|
-
clearContextMenu(): void;
|
|
27
|
-
setItemHoverDetail(hoverDetail: IHoverDetail): void;
|
|
28
|
-
clearItemHoverDetail(): void;
|
|
29
|
-
handleOnItemClick: (item: IItem, posX: number, posY: number, slotContainerType: SlotContainerType | null) => void;
|
|
30
|
-
handleOnMouseHover: (event: any, slotIndex: number, item: IItem | null, posX: number, posY: number, onMouseOver: any) => void;
|
|
31
|
-
onSelected(selectedActionId: ItemSocketEvents | string, onActionSelected: any): void;
|
|
32
|
-
}
|
|
33
|
-
export declare const uiStore: UIStore;
|
|
34
|
-
export {};
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { IItem } from '@rpg-engine/shared';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import styled from 'styled-components';
|
|
4
|
-
|
|
5
|
-
interface IProps {
|
|
6
|
-
item: IItem | null;
|
|
7
|
-
x: number;
|
|
8
|
-
y: number;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export const ItemCard: React.FC<IProps> = ({ item, x, y }) => {
|
|
12
|
-
return (
|
|
13
|
-
<Container x={x} y={y}>
|
|
14
|
-
{item?.name}
|
|
15
|
-
</Container>
|
|
16
|
-
);
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
interface IContainerProps {
|
|
20
|
-
x?: number;
|
|
21
|
-
y?: number;
|
|
22
|
-
fontSize?: number;
|
|
23
|
-
}
|
|
24
|
-
const Container = styled.div<IContainerProps>`
|
|
25
|
-
position: absolute;
|
|
26
|
-
top: ${props => props.y || 0}px;
|
|
27
|
-
left: ${props => props.x || 0}px;
|
|
28
|
-
font-size: 0.5rem;
|
|
29
|
-
color: white;
|
|
30
|
-
background-color: black;
|
|
31
|
-
border-radius: 5px;
|
|
32
|
-
padding: 0.5rem;
|
|
33
|
-
min-width: 20px;
|
|
34
|
-
|
|
35
|
-
opacity: 0.5;
|
|
36
|
-
`;
|