Skip to content

Commit

Permalink
chore(ui): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious authored and hipsterusername committed Jan 2, 2024
1 parent 870cc5b commit ae8ffe9
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 78 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ const selector = createMemoizedSelector(
});
}
} else {
if (dynamicPrompts.prompts.length === 0 && getShouldProcessPrompt(positivePrompt)) {
if (
dynamicPrompts.prompts.length === 0 &&
getShouldProcessPrompt(positivePrompt)
) {
reasons.push(i18n.t('parameters.invoke.noPrompts'));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ import {
} from 'features/canvas/store/canvasNanostore';
import {
aspectRatioChanged,
CANVAS_GRID_SIZE_COARSE,
CANVAS_GRID_SIZE_FINE,
setBoundingBoxCoordinates,
setBoundingBoxDimensions,
setShouldSnapToGrid,
} from 'features/canvas/store/canvasSlice';
import {
CANVAS_GRID_SIZE_COARSE,
CANVAS_GRID_SIZE_FINE,
} from 'features/canvas/store/constants';
import type Konva from 'konva';
import type { GroupConfig } from 'konva/lib/Group';
import type { KonvaEventObject } from 'konva/lib/Node';
Expand Down Expand Up @@ -161,7 +163,10 @@ const IAICanvasBoundingBox = (props: IAICanvasBoundingBoxPreviewProps) => {
const y = Math.round(rect.y());

if (aspectRatio.isLocked) {
const newHeight = roundDownToMultipleMin(width / aspectRatio.value, gridSize);
const newHeight = roundDownToMultipleMin(
width / aspectRatio.value,
gridSize
);
dispatch(
setBoundingBoxDimensions({
width: roundDownToMultipleMin(width, gridSize),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,13 @@ import type {
Dimensions,
} from './canvasTypes';
import { isCanvasAnyLine, isCanvasMaskLine } from './canvasTypes';
import { CANVAS_GRID_SIZE_FINE } from './constants';

/**
* The maximum history length to keep in the past/future layer states.
*/
const MAX_HISTORY = 128;

export const CANVAS_GRID_SIZE_FINE = 8;
export const CANVAS_GRID_SIZE_COARSE = 64;

export const initialLayerState: CanvasLayerState = {
objects: [],
stagingArea: {
Expand Down
2 changes: 2 additions & 0 deletions invokeai/frontend/web/src/features/canvas/store/constants.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const CANVAS_GRID_SIZE_COARSE = 64;
export const CANVAS_GRID_SIZE_FINE = 8;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { roundToMultiple } from 'common/util/roundDownToMultiple';
import { CANVAS_GRID_SIZE_FINE } from 'features/canvas/store/canvasSlice';
import type { Dimensions } from 'features/canvas/store/canvasTypes';
import { CANVAS_GRID_SIZE_FINE } from 'features/canvas/store/constants';

const getScaledBoundingBoxDimensions = (dimensions: Dimensions) => {
const { width, height } = dimensions;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { roundToMultiple } from 'common/util/roundDownToMultiple';
import type { Dimensions } from 'features/canvas/store/canvasTypes';

const roundDimensionsToMultiple = (dimensions: Dimensions, multiple: number): Dimensions => {
const roundDimensionsToMultiple = (
dimensions: Dimensions,
multiple: number
): Dimensions => {
return {
width: roundToMultiple(dimensions.width, multiple),
height: roundToMultiple(dimensions.height, multiple),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import { useAppSelector } from 'app/store/storeHooks';
import { InvControl } from 'common/components/InvControl/InvControl';
import { InvSlider } from 'common/components/InvSlider/InvSlider';
import { isStagingSelector } from 'features/canvas/store/canvasSelectors';
import { CANVAS_GRID_SIZE_COARSE, CANVAS_GRID_SIZE_FINE } from 'features/canvas/store/canvasSlice';
import {
CANVAS_GRID_SIZE_COARSE,
CANVAS_GRID_SIZE_FINE,
} from 'features/canvas/store/constants';
import { useImageSizeContext } from 'features/parameters/components/ImageSize/ImageSizeContext';
import { memo, useCallback } from 'react';
import { useTranslation } from 'react-i18next';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ import { useAppSelector } from 'app/store/storeHooks';
import { InvControl } from 'common/components/InvControl/InvControl';
import { InvSlider } from 'common/components/InvSlider/InvSlider';
import { isStagingSelector } from 'features/canvas/store/canvasSelectors';
import { CANVAS_GRID_SIZE_COARSE, CANVAS_GRID_SIZE_FINE } from 'features/canvas/store/canvasSlice';
import {
CANVAS_GRID_SIZE_COARSE,
CANVAS_GRID_SIZE_FINE,
} from 'features/canvas/store/constants';
import { useImageSizeContext } from 'features/parameters/components/ImageSize/ImageSizeContext';
import { memo, useCallback } from 'react';
import { useTranslation } from 'react-i18next';
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ export const ImageSizeCanvas = memo(() => {
const { width, height } = useAppSelector(
(state) => state.canvas.boundingBoxDimensions
);
const aspectRatioState = useAppSelector(
(state) => state.canvas.aspectRatio
);
const aspectRatioState = useAppSelector((state) => state.canvas.aspectRatio);

const onChangeWidth = useCallback(
(width: number) => {
Expand Down

0 comments on commit ae8ffe9

Please sign in to comment.