Skip to content

Commit

Permalink
Merge pull request #1401 from adumesny/v2
Browse files Browse the repository at this point in the history
v2: fix setting resize handles to not alwaysShowResizeHandle
  • Loading branch information
adumesny authored Oct 6, 2020
2 parents ff2b12a + c0eb525 commit b9d33a7
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 11 deletions.
1 change: 1 addition & 0 deletions doc/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Change log
## 2.0.1-dev

- fix `animate` to not re-create CSS style each time (should be faster too) and made it default now since so much nicer. pass `{animate: false}` grid options if you want instant again [937](https://github.com/gridstack/gridstack.js/issues/937)
- fix `resizable: { handles: ...}` forcing `alwaysShowResizeHandle` behavior [1373](https://github.com/gridstack/gridstack.js/issues/1373)

## 2.0.1 (2020-09-26)

Expand Down
4 changes: 4 additions & 0 deletions spec/utils-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ describe('gridstack utils', function() {
expect(src).toEqual({x: 1, y: 2, width: undefined});
expect(Utils.defaults(src, {x: 10, width: 3})).toEqual({x: 1, y: 2, width: 3});
expect(Utils.defaults(src, {height: undefined})).toEqual({x: 1, y: 2, width: 3, height: undefined});
src = {x: 1, y: 2, sub: {foo: 1, two: 2}};
expect(src).toEqual({x: 1, y: 2, sub: {foo: 1, two: 2}});
expect(Utils.defaults(src, {x: 10, width: 3})).toEqual({x: 1, y: 2, width: 3, sub: {foo: 1, two: 2}});
expect(Utils.defaults(src, {sub: {three: 3}})).toEqual({x: 1, y: 2, width: 3, sub: {foo: 1, two: 2, three: 3}});
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/gridstack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export class GridStack {
staticGrid: false,
_class: 'grid-stack-instance-' + (Math.random() * 10000).toFixed(0),
animate: true,
alwaysShowResizeHandle: false,
alwaysShowResizeHandle: opts.alwaysShowResizeHandle || false,
resizable: {
autoHide: !(opts.alwaysShowResizeHandle || false),
handles: 'se'
Expand Down
31 changes: 21 additions & 10 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@

import { GridStackWidget, GridStackNode, GridStackOptions, numberOrString } from './types';

export interface HeightData {
height: number;
unit: string;
}

/** checks for obsolete method names */
export function obsolete(self, f, oldName: string, newName: string, rev: string) {
let wrapper = (...args) => {
Expand Down Expand Up @@ -132,7 +137,7 @@ export class Utils {
return (value === null || value.length === 0) ? null : Number(value);
}

static parseHeight(val: numberOrString) {
static parseHeight(val: numberOrString): HeightData {
let height: number;
let heightUnit = 'px';
if (typeof val === 'string') {
Expand All @@ -145,23 +150,29 @@ export class Utils {
} else {
height = val;
}
return { height: height, unit: heightUnit }
return { height, unit: heightUnit }
}

static defaults(target, ...sources) {
/** copies unset fields in target to use the given default sources values */
static defaults(target, ...sources): {} {

sources.forEach(function (source) {
for (let prop in source) {
if (Object.prototype.hasOwnProperty.call(source, prop) && (target[prop] === null || target[prop] === undefined)) {
target[prop] = source[prop];
sources.forEach(source => {
for (const key in source) {
if (!source.hasOwnProperty(key)) { return; }
if (target[key] === null || target[key] === undefined) {
target[key] = source[key];
} else if (typeof source[key] === 'object' && typeof target[key] === 'object') {
// property is an object, recursively add it's field over... #1373
this.defaults(target[key], source[key]);
}
}
});

return target;
}

static clone(target: {}) {
/** makes a shallow copy of the passed json struct */
static clone(target: {}): {} {
return {...target}; // was $.extend({}, target)
}

Expand All @@ -177,11 +188,11 @@ export class Utils {
static throttle(callback: () => void, delay: number) {
let isWaiting = false;

return function (...args) {
return (...args) => {
if (!isWaiting) {
callback.apply(this, args);
isWaiting = true;
setTimeout(function () { isWaiting = false; }, delay);
setTimeout(() => isWaiting = false, delay);
}
}
}
Expand Down

0 comments on commit b9d33a7

Please sign in to comment.