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

Code Review: polyfill setTimeout in cocoascript (#21824) #279

Merged
merged 5 commits into from Nov 14, 2018
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
33 changes: 0 additions & 33 deletions Source/dom/layers/Text.js
Expand Up @@ -247,39 +247,6 @@ Text.define('alignment', {
})

Text.VerticalAlignment = VerticalTextAlignment
Text.define('verticalAlignment', {
/**
* The vertical alignment of the layer.
* This will be one of the values: "top", "center", "bottom".
*
* @return {string} The vertical alignment mode.
*/
get() {
const raw = this._object.verticalAlignment()
return (
Object.keys(VerticalTextAlignmentMap).find(
key => VerticalTextAlignmentMap[key] === raw
) || raw
)
},

/**
* Set the vertical alignment of the layer.
*
* The mode supplied can be a string or a number.
* If it's a string, it should be one of the values: "top", "center", "bottom";
*
* @param {string} mode The vertical alignment mode to use.
*/
set(mode) {
if (this.isImmutable()) {
return
}
const translated = VerticalTextAlignmentMap[mode]
this._object.verticalAlignment =
typeof translated !== 'undefined' ? translated : mode
},
})

Text.LineSpacing = TextLineSpacingBehaviour
Text.define('lineSpacing', {
Expand Down
141 changes: 61 additions & 80 deletions Source/dom/layers/__tests__/Text.test.js
@@ -1,10 +1,7 @@
/* globals expect, test */
import { isRunningOnJenkins } from '../../../test-utils'
import { Text, Rectangle } from '../..'
import {
TextAlignmentMap,
VerticalTextAlignmentMap,
TextLineSpacingBehaviourMap,
} from '../Text'
import { TextAlignmentMap, TextLineSpacingBehaviourMap } from '../Text'

test('should create a Text layer', () => {
const text = new Text()
Expand Down Expand Up @@ -49,26 +46,6 @@ test('should change the text alignment', () => {
})
})

test('should change the text vertical alignment', () => {
const text = new Text({
text: 'blah',
frame: new Rectangle(10, 10, 1000, 1000),
})

// default to top
expect(text.verticalAlignment).toBe(Text.VerticalAlignment.top)

Object.keys(Text.VerticalAlignment).forEach(key => {
// test setting by name
text.verticalAlignment = key
expect(text.verticalAlignment).toBe(Text.VerticalAlignment[key])

// test setting by value
text.verticalAlignment = VerticalTextAlignmentMap[key]
expect(text.verticalAlignment).toBe(Text.VerticalAlignment[key])
})
})

test('should change the line spacing behavior', () => {
const text = new Text({
text: 'blah',
Expand Down Expand Up @@ -103,59 +80,63 @@ test('should fix the width', () => {
expect(text.fixedWidth).toBe(true)
})

test('should return the fragments of a text layer', () => {
let text = new Text({
text: 'blah',
})
text.adjustToFit()

let { fragments } = text

expect(fragments.length).toBe(1)
expect(fragments[0].baselineOffset).toBe(3)
expect(Number(fragments[0].range.location)).toBe(0)
expect(Number(fragments[0].range.length)).toBe(4)
expect(fragments[0].rect.toJSON()).toEqual({
x: 0,
y: 0,
width: 22.6875,
height: 14,
})

// https://github.com/BohemianCoding/SketchAPI/issues/144
text = new Text({
text: 'Test\nHello\n123\no',
// on Jenkins, this throws an `AddressSanitizer: heap-buffer-overflow` error
// so we'll just skip it on there for now
if (!isRunningOnJenkins()) {
test('should return the fragments of a text layer', () => {
let text = new Text({
text: 'blah',
})
text.adjustToFit()

let { fragments } = text

expect(fragments.length).toBe(1)
expect(fragments[0].baselineOffset).toBe(3)
expect(Number(fragments[0].range.location)).toBe(0)
expect(Number(fragments[0].range.length)).toBe(4)
expect(fragments[0].rect.toJSON()).toEqual({
x: 0,
y: 0,
width: 22.6875,
height: 14,
})

// https://github.com/BohemianCoding/SketchAPI/issues/144
text = new Text({
text: 'Test\nHello\n123\no',
})
text.adjustToFit()
// eslint-disable-next-line
fragments = text.fragments

expect(fragments.length).toBe(4)
expect(fragments[0].baselineOffset).toBe(3)
expect(Number(fragments[0].range.location)).toBe(0)
expect(Number(fragments[0].range.length)).toBe(5)
expect(fragments[0].rect.toJSON()).toEqual({
x: 0,
y: 0,
width: 22.0078125,
height: 14,
})
expect(fragments[1].baselineOffset).toBe(3)
expect(Number(fragments[1].range.location)).toBe(5)
expect(Number(fragments[1].range.length)).toBe(6)
expect(fragments[1].rect.toJSON()).toEqual({
x: 0,
y: 14,
width: 27.345703125,
height: 14,
})
expect(fragments[2].baselineOffset).toBe(3)
expect(Number(fragments[2].range.location)).toBe(11)
expect(Number(fragments[2].range.length)).toBe(4)
expect(fragments[2].rect.toJSON()).toEqual({
x: 0,
y: 28,
width: 20.021484375,
height: 14,
})
})
text.adjustToFit()
// eslint-disable-next-line
fragments = text.fragments

expect(fragments.length).toBe(4)
expect(fragments[0].baselineOffset).toBe(3)
expect(Number(fragments[0].range.location)).toBe(0)
expect(Number(fragments[0].range.length)).toBe(5)
expect(fragments[0].rect.toJSON()).toEqual({
x: 0,
y: 0,
width: 22.0078125,
height: 14,
})
expect(fragments[1].baselineOffset).toBe(3)
expect(Number(fragments[1].range.location)).toBe(5)
expect(Number(fragments[1].range.length)).toBe(6)
expect(fragments[1].rect.toJSON()).toEqual({
x: 0,
y: 14,
width: 27.345703125,
height: 14,
})
expect(fragments[2].baselineOffset).toBe(3)
expect(Number(fragments[2].range.location)).toBe(11)
expect(Number(fragments[2].range.length)).toBe(4)
expect(fragments[2].rect.toJSON()).toEqual({
x: 0,
y: 28,
width: 20.021484375,
height: 14,
})
})
}
8 changes: 4 additions & 4 deletions core-modules/package.json
Expand Up @@ -9,12 +9,12 @@
"author": "",
"license": "MIT",
"dependencies": {
"@skpm/buffer": "0.1.0",
"@skpm/buffer": "0.1.1",
"@skpm/console": "0.1.7",
"@skpm/events": "0.1.1",
"@skpm/os": "0.1.1",
"@skpm/path": "0.1.0",
"@skpm/timers": "0.1.0",
"@skpm/util": "0.1.19"
"@skpm/path": "0.1.1",
"@skpm/timers": "0.2.0",
"@skpm/util": "0.1.20"
}
}