Skip to content

Commit edbf927

Browse files
committed
Lint
1 parent 67b85cb commit edbf927

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

position-area.html

+5-3
Original file line numberDiff line numberDiff line change
@@ -261,14 +261,16 @@ <h2>
261261
<section class="position-area-demo-item" id="cascade">
262262
<h2>
263263
<a href="#cascade" aria-hidden="true">🔗</a>
264-
<code>cascade should be respected </code>
264+
<code>cascade should be respected ✅</code>
265265
</h2>
266266
<div class="demo-elements cascade">
267267
<div class="anchor">start</div>
268268
<div class="target" id="cascade-target">Target</div>
269269
</div>
270-
<p>Should be <code>right top</code>. Also has <code>right bottom</code>
271-
applied, with less specificity.</p>
270+
<p>
271+
Should be <code>right top</code>. Also has
272+
<code>right bottom</code> applied, with less specificity.
273+
</p>
272274
</section>
273275

274276
<section class="position-area-demo-item" id="shifting">

src/polyfill.ts

+16-6
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export interface GetPixelValueOpts {
145145
anchorRect?: Rect;
146146
anchorSide?: AnchorSide;
147147
anchorSize?: AnchorSize;
148-
fallback: string;
148+
fallback?: string | null;
149149
}
150150

151151
export const getPixelValue = async ({
@@ -154,7 +154,7 @@ export const getPixelValue = async ({
154154
anchorRect,
155155
anchorSide,
156156
anchorSize,
157-
fallback,
157+
fallback = null,
158158
}: GetPixelValueOpts) => {
159159
if (!((anchorSize || anchorSide !== undefined) && targetEl && anchorRect)) {
160160
return fallback;
@@ -287,6 +287,18 @@ export const getPixelValue = async ({
287287
return fallback;
288288
};
289289

290+
const isPositionAreaDeclaration = (
291+
value: AnchorFunction | PositionAreaDeclaration,
292+
): value is PositionAreaDeclaration => {
293+
return 'positionArea' in value;
294+
};
295+
296+
const isAnchorFunction = (
297+
value: AnchorFunction | PositionAreaDeclaration,
298+
): value is AnchorFunction => {
299+
return 'uuid' in value;
300+
};
301+
290302
async function applyAnchorPositions(
291303
declarations: AnchorFunctionDeclaration,
292304
useAnimationFrame = false,
@@ -301,7 +313,7 @@ async function applyAnchorPositions(
301313
const anchor = anchorValue.anchorEl;
302314
const target = anchorValue.targetEl;
303315
if (anchor && target) {
304-
if ('positionArea' in anchorValue && property === 'position-area') {
316+
if (isPositionAreaDeclaration(anchorValue)) {
305317
const wrapper = anchorValue.wrapperEl!;
306318
const getPositionAreaPixelValue = async (
307319
inset: InsetValue,
@@ -314,8 +326,6 @@ async function applyAnchorPositions(
314326
targetProperty: targetProperty,
315327
anchorRect: anchorRect,
316328
anchorSide: inset,
317-
anchorSize: anchorValue.anchorSize,
318-
fallback: anchorValue.fallbackValue,
319329
});
320330
};
321331

@@ -408,7 +418,7 @@ async function applyAnchorPositions(
408418
{ animationFrame: useAnimationFrame },
409419
);
410420
}
411-
} else {
421+
} else if (isAnchorFunction(anchorValue)) {
412422
// Use fallback value
413423
const resolved = await getPixelValue({
414424
targetProperty: property,

0 commit comments

Comments
 (0)