Skip to content
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

[v8] Fix: Fancy Button Content Fitting #152

Merged
merged 9 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 89 additions & 3 deletions src/FancyButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,11 @@ export type ButtonOptions = ViewsInput & {
offset?: Offset;
textOffset?: Offset;
iconOffset?: Offset;
defaultTextScale?: Pos | number;
defaultIconScale?: Pos | number;
animations?: StateAnimations;
nineSliceSprite?: [number, number, number, number];
ignoreRefitting?: boolean;
};

/**
Expand Down Expand Up @@ -135,6 +138,12 @@ export class FancyButton extends ButtonContainer
/** Anchor point of the button. */
anchor: ObservablePoint;

/** Base text scaling to take into account when fitting inside the button */
protected _defaultTextScale: Pos = { x: 1, y: 1 };

/** Base icon scaling to take into account when fitting inside the button */
protected _defaultIconScale: Pos = { x: 1, y: 1 };

/**
* Creates a button with a lot of tweaks.
* @param {object} options - Button options.
Expand All @@ -151,6 +160,8 @@ export class FancyButton extends ButtonContainer
* @param {Point} options.iconOffset - Offset of the icon view.
* @param {number} options.scale - Scale of the button. Scale will be applied to a main container,
* when all animations scales will be applied to the inner view.
* @param {number} options.defaultTextScale - Base text scaling to take into account when fitting inside the button.
* @param {number} options.defaultIconScale - Base icon scaling to take into account when fitting inside the button.
* @param {number} options.anchor - Anchor point of the button.
* @param {number} options.anchorX - Horizontal anchor point of the button.
* @param {number} options.anchorY - Vertical anchor point of the button.
Expand All @@ -160,7 +171,7 @@ export class FancyButton extends ButtonContainer
{
super();

this.options = options;
this.options = options ?? {};

const {
defaultView,
Expand All @@ -172,6 +183,8 @@ export class FancyButton extends ButtonContainer
offset,
textOffset,
iconOffset,
defaultTextScale: textScale,
defaultIconScale: iconScale,
scale,
anchor,
anchorX,
Expand All @@ -191,6 +204,8 @@ export class FancyButton extends ButtonContainer
this.offset = offset;
this.textOffset = textOffset;
this.iconOffset = iconOffset;
this.defaultTextScale = textScale;
this.defaultIconScale = iconScale;
this.scale.set(scale ?? 1);

if (animations)
Expand Down Expand Up @@ -299,6 +314,15 @@ export class FancyButton extends ButtonContainer
protected createTextView(text: AnyText)
{
this._views.textView = getTextView(text);

// If text scale has not manually been set, we will overwrite the base scale with the new text view scale.
if (this.options?.defaultTextScale === undefined)
{
const { x, y } = this._views.textView.scale;

this._defaultTextScale = { x, y };
}

this._views.textView.anchor.set(0);
this.innerView.addChild(this._views.textView);

Expand Down Expand Up @@ -374,7 +398,12 @@ export class FancyButton extends ButtonContainer

if (activeView)
{
fitToView(activeView, this._views.textView, this.padding);
if (!this.options?.ignoreRefitting)
{
this._views.textView.scale.set(this._defaultTextScale.x, this._defaultTextScale.y);
}

fitToView(activeView, this._views.textView, this.padding, false);

this._views.textView.x = activeView.x + (activeView.width / 2);
this._views.textView.y = activeView.y + (activeView.height / 2);
Expand Down Expand Up @@ -403,7 +432,12 @@ export class FancyButton extends ButtonContainer
return;
}

fitToView(activeView, this._views.iconView, this.padding);
if (!this.options?.ignoreRefitting)
{
this._views.iconView.scale.set(this._defaultIconScale.x, this._defaultIconScale.y);
}

fitToView(activeView, this._views.iconView, this.padding, false);

(this._views.iconView as Sprite).anchor?.set(0);

Expand Down Expand Up @@ -634,6 +668,14 @@ export class FancyButton extends ButtonContainer

this._views.iconView = getView(view);

// If icon scale has not manually been set, we will overwrite the base scale with the new icon view scale.
if (this.options?.defaultIconScale === undefined)
{
const { x, y } = this._views.iconView.scale;

this._defaultIconScale = { x, y };
}

if (!this._views.iconView.parent)
{
this.innerView.addChild(this._views.iconView);
Expand Down Expand Up @@ -802,6 +844,50 @@ export class FancyButton extends ButtonContainer
return this._textOffset;
}

/**
* Sets the base scale for the text view to take into account when fitting inside the button.
* @param {Pos | number} scale - base scale of the text view.
*/
set defaultTextScale(scale: Pos | number)
{
if (scale === undefined) return;
// Apply to the options so that the manual scale is prioritized.
this.options.defaultTextScale = scale;
const isNumber = typeof scale === 'number';

this._defaultTextScale.x = isNumber ? scale : scale.x ?? 1;
this._defaultTextScale.y = isNumber ? scale : scale.y ?? 1;
this.adjustTextView(this.state);
}

/** Returns the text view base scale. */
get defaultTextScale(): Pos
{
return this.defaultTextScale;
}

/**
* Sets the base scale for the icon view to take into account when fitting inside the button.
* @param {Pos | number} scale - base scale of the icon view.
*/
set defaultIconScale(scale: Pos | number)
{
if (scale === undefined) return;
// Apply to the options so that the manual scale is prioritized.
this.options.defaultIconScale = scale;
const isNumber = typeof scale === 'number';

this._defaultIconScale.x = isNumber ? scale : scale.x ?? 1;
this._defaultIconScale.y = isNumber ? scale : scale.y ?? 1;
this.adjustIconView(this.state);
}

/** Returns the icon view base scale. */
get defaultIconScale(): Pos
{
return this.defaultIconScale;
}

/**
* Sets width of a FancyButtons state views.
* If nineSliceSprite is set, then width will be set to nineSliceSprites of a views.
Expand Down
16 changes: 15 additions & 1 deletion src/stories/fancyButton/FancyButtonBitmapText.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const args = {
padding: 11,
textOffsetX: 0,
textOffsetY: -7,
defaultTextScale: 0.99,
anchorX: 0.5,
anchorY: 0.5,
animationDuration: 100,
Expand All @@ -21,7 +22,19 @@ const args = {
};

export const UsingSpriteAndBitmapText: StoryFn<typeof args> = (
{ text, textColor, disabled, onPress, padding, textOffsetX, textOffsetY, anchorX, anchorY, animationDuration },
{
text,
textColor,
disabled,
onPress,
padding,
textOffsetX,
textOffsetY,
defaultTextScale,
anchorX,
anchorY,
animationDuration
},
context
) =>
new PixiStory({
Expand Down Expand Up @@ -60,6 +73,7 @@ export const UsingSpriteAndBitmapText: StoryFn<typeof args> = (
text: title,
padding,
textOffset: { x: textOffsetX, y: textOffsetY },
defaultTextScale,
animations: {
hover: {
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { action } from '@storybook/addon-actions';
const args = {
text: 'Click me!',
textColor: '#FFFFFF',
defaultTextScale: 0.99,
defaultIconScale: 0.2,
padding: 11,
anchorX: 0.5,
anchorY: 0.5,
Expand All @@ -21,6 +23,8 @@ const args = {
export const DynamicUpdate: StoryFn<typeof args> = ({
text,
textColor,
defaultTextScale,
defaultIconScale,
disabled,
onPress,
padding,
Expand All @@ -45,7 +49,7 @@ export const DynamicUpdate: StoryFn<typeof args> = ({
let icon = avatars[0];

button.iconView = Sprite.from(icon);
button.iconView.scale.set(0.2);
button.defaultIconScale = defaultIconScale;
button.iconOffset = { x: -100, y: -7 };

button.textView = new Text({
Expand All @@ -54,6 +58,7 @@ export const DynamicUpdate: StoryFn<typeof args> = ({
fill: textColor || defaultTextStyle.fill
}
});
button.defaultTextScale = defaultTextScale;
button.textOffset = { x: 30, y: -7 };

button.padding = padding;
Expand Down
6 changes: 6 additions & 0 deletions src/stories/fancyButton/FancyButtonGraphics.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ const args = {
iconOffsetY: -30,
textOffsetX: 0,
textOffsetY: 140,
defaultTextScale: 0.99,
defaultIconScale: 0.99,
defaultOffsetY: 0,
hoverOffsetY: -1,
pressedOffsetY: 5,
Expand Down Expand Up @@ -53,6 +55,8 @@ export const UseGraphics: StoryFn<typeof args> = ({
iconOffsetY,
textOffsetX,
textOffsetY,
defaultTextScale,
defaultIconScale,
defaultOffsetY,
hoverOffsetY,
pressedOffsetY,
Expand Down Expand Up @@ -107,6 +111,8 @@ export const UseGraphics: StoryFn<typeof args> = ({
x: iconOffsetX,
y: iconOffsetY
},
defaultTextScale,
defaultIconScale,
animations: {
default: {
props: {
Expand Down
16 changes: 15 additions & 1 deletion src/stories/fancyButton/FancyButtonHTMLText.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const args = {
padding: 11,
textOffsetX: 0,
textOffsetY: -7,
defaultTextScale: 0.99,
anchorX: 0.5,
anchorY: 0.5,
animationDuration: 100,
Expand All @@ -21,7 +22,19 @@ const args = {
};

export const UsingSpriteAndHTMLText: StoryFn<typeof args> = (
{ text, textColor, disabled, onPress, padding, textOffsetX, textOffsetY, anchorX, anchorY, animationDuration },
{
text,
textColor,
disabled,
onPress,
padding,
textOffsetX,
textOffsetY,
defaultTextScale,
anchorX,
anchorY,
animationDuration
},
context,
) =>
new PixiStory<typeof args>({
Expand Down Expand Up @@ -54,6 +67,7 @@ export const UsingSpriteAndHTMLText: StoryFn<typeof args> = (
text: title,
padding,
textOffset: { x: textOffsetX, y: textOffsetY },
defaultTextScale,
animations: {
hover: {
props: {
Expand Down
3 changes: 3 additions & 0 deletions src/stories/fancyButton/FancyButtonIcon.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const args = {
radius: 200,
iconOffsetX: 0,
iconOffsetY: 0,
defaultIconScale: 0.99,
defaultOffset: 0,
hoverOffset: -1,
pressedOffset: 5,
Expand All @@ -41,6 +42,7 @@ export const UseIcon: StoryFn<typeof args> = ({
padding,
iconOffsetX,
iconOffsetY,
defaultIconScale,
defaultOffset,
hoverOffset,
pressedOffset,
Expand Down Expand Up @@ -83,6 +85,7 @@ export const UseIcon: StoryFn<typeof args> = ({
x: iconOffsetX,
y: iconOffsetY
},
defaultIconScale,
animations: {
hover: {
props: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const args = {
padding: 11,
width: 300,
height: 137,
defaultTextScale: 0.99,
defaultIconScale: 0.2,
anchorX: 0.5,
anchorY: 0.5,
animationDuration: 100,
Expand All @@ -31,7 +33,9 @@ export const UseNineSliceSprite: StoryFn<typeof args> = ({
anchorY,
animationDuration,
width,
height
height,
defaultTextScale,
defaultIconScale,
}, context) =>
new PixiStory<typeof args>({
context,
Expand Down Expand Up @@ -65,6 +69,7 @@ export const UseNineSliceSprite: StoryFn<typeof args> = ({
}),
padding,
textOffset: { x: 30, y: -5 },
defaultTextScale,
animations: {
hover: {
props: {
Expand All @@ -89,7 +94,7 @@ export const UseNineSliceSprite: StoryFn<typeof args> = ({
borderWidth: 10,
borderColor: 0xFFFFFF
});
button.iconView.scale.set(0.2);
button.defaultIconScale = defaultIconScale;
button.iconOffset = { x: -100, y: -7 };

button.anchor.set(anchorX, anchorY);
Expand Down
3 changes: 3 additions & 0 deletions src/stories/fancyButton/FancyButtonSprite.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const args = {
padding: 11,
textOffsetX: 0,
textOffsetY: -7,
defaultTextScale: 0.99,
anchorX: 0.5,
anchorY: 0.5,
animationDuration: 100,
Expand All @@ -28,6 +29,7 @@ export const UseSprite: StoryFn<typeof args> = ({
padding,
textOffsetX,
textOffsetY,
defaultTextScale,
anchorX,
anchorY,
animationDuration
Expand All @@ -54,6 +56,7 @@ export const UseSprite: StoryFn<typeof args> = ({
}),
padding,
textOffset: { x: textOffsetX, y: textOffsetY },
defaultTextScale,
animations: {
hover: {
props: {
Expand Down
Loading
Loading