This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.8 KiB
63 lines
1.8 KiB
/** |
|
* Copyright (c) 2015-present, Facebook, Inc. |
|
* |
|
* This source code is licensed under the MIT license found in the |
|
* LICENSE file in the root directory of this source tree. |
|
*/ |
|
|
|
const fs = require('fs-extra'); |
|
const path = require('path'); |
|
const xcode = require('xcode'); |
|
const log = require('npmlog'); |
|
const groupFilesByType = require('../groupFilesByType'); |
|
const getPlist = require('./getPlist'); |
|
const writePlist = require('./writePlist'); |
|
const difference = require('lodash').difference; |
|
|
|
/** |
|
* Unlinks assets from iOS project. Removes references for fonts from `Info.plist` |
|
* fonts provided by application and from `Resources` group |
|
*/ |
|
module.exports = function unlinkAssetsIOS(files, projectConfig) { |
|
const project = xcode.project(projectConfig.pbxprojPath).parseSync(); |
|
const assets = groupFilesByType(files); |
|
const plist = getPlist(project, projectConfig.sourceDir); |
|
|
|
if (!plist) { |
|
return log.error( |
|
'ERRPLIST', |
|
'Could not locate Info.plist file. Check if your project has \'INFOPLIST_FILE\' set properly' |
|
); |
|
} |
|
|
|
if (!project.pbxGroupByName('Resources')) { |
|
return log.error( |
|
'ERRGROUP', |
|
'Group \'Resources\' does not exist in your Xcode project. There is nothing to unlink.' |
|
); |
|
} |
|
|
|
const removeResourceFile = function (f) { |
|
(f || []) |
|
.map(asset => |
|
project.removeResourceFile( |
|
path.relative(projectConfig.sourceDir, asset), |
|
{ target: project.getFirstTarget().uuid } |
|
) |
|
) |
|
.map(file => file.basename); |
|
}; |
|
|
|
removeResourceFile(assets.image); |
|
|
|
const fonts = removeResourceFile(assets.font); |
|
|
|
plist.UIAppFonts = difference(plist.UIAppFonts || [], fonts); |
|
|
|
fs.writeFileSync( |
|
projectConfig.pbxprojPath, |
|
project.writeSync() |
|
); |
|
|
|
writePlist(project, projectConfig.sourceDir, plist); |
|
};
|
|
|