sketch-constructor
Version:
Read/write/manipulate Sketch files in Node without Sketch plugins!
64 lines (58 loc) • 1.75 kB
JavaScript
/*
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
const uuid = require('uuid-v4');
const Style = require('../Style');
class SharedStyle {
static LayerStyle(args) {
const id = args.id || uuid().toUpperCase();
return new SharedStyle({
name: args.name,
id,
fills: args.fills,
borders: args.borders,
shadows: args.shadows,
innerShadows: args.innerShadows,
});
}
static TextStyle(args) {
const id = args.id || uuid().toUpperCase();
return new SharedStyle({
name: args.name,
id,
textStyle: args.textStyle,
});
}
constructor(args, json) {
if (json) {
Object.assign(this, json);
// Created nested class
this.value = new Style(null, this.value);
} else {
const id = args.id || uuid().toUpperCase();
Object.assign(this, {
name: args.name || 'Name',
do_objectID: id,
_class: 'sharedStyle',
value: new Style({
id,
textStyle: args.textStyle,
borders: args.borders,
fills: args.fills,
shadows: args.shadows,
innerShadows: args.innerShadows,
}),
});
}
}
}
module.exports = SharedStyle;