-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
132f8fa
commit 2f43e1d
Showing
4 changed files
with
82 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
'use strict'; | ||
|
||
var path = require('path'); | ||
var fs = require('fs'); | ||
var file = require('file'); | ||
|
||
function init(projectDir, appName) { | ||
console.log('Setting up new React Native app in ' + projectDir); | ||
var source = path.resolve(__dirname, 'Examples/SampleApp'); | ||
|
||
walk(source).forEach(function(f) { | ||
f = f.replace(source + '/', ''); // Strip off absolute path | ||
if(f === 'project.xcworkspace' || f === 'xcuserdata') { return; } | ||
|
||
var replacements = { | ||
'Examples/SampleApp/': '', | ||
'../../Libraries/': 'node_modules/react-native/Libraries/', | ||
'../../React/': 'node_modules/react-native/React/', | ||
'SampleApp': appName | ||
}; | ||
|
||
var dest = f.replace(new RegExp('SampleApp', 'g'), appName); | ||
copyAndReplace( | ||
path.resolve(source, f), | ||
path.resolve(projectDir, dest), | ||
replacements | ||
); | ||
}); | ||
} | ||
|
||
function copyAndReplace(src, dest, replacements) { | ||
if (fs.lstatSync(src).isDirectory()) { | ||
if (!fs.existsSync(dest)) { | ||
fs.mkdirSync(dest); | ||
} | ||
} | ||
else { | ||
var content = fs.readFileSync(src, 'utf8'); | ||
Object.keys(replacements).forEach(function(regex) { | ||
content = content.replace(new RegExp(regex, 'g'), replacements[regex]); | ||
}); | ||
fs.writeFileSync(dest, content); | ||
} | ||
} | ||
|
||
function copyAndReplace2(src, dest, appName) { | ||
if (fs.lstatSync(src).isDirectory()) { | ||
if (!fs.existsSync(dest)) { | ||
fs.mkdirSync(dest); | ||
} | ||
} | ||
else { | ||
var content = fs.readFileSync(src, 'utf8') | ||
.replace(new RegExp('SampleApp', 'g'), appName) | ||
.replace(new RegExp('Examples/' + appName + '/', 'g'), '') | ||
.replace(new RegExp('../../Libraries/', 'g'), 'node_modules/react-native/Libraries/') | ||
.replace(new RegExp('../../React/', 'g'), 'node_modules/react-native/React/'); | ||
fs.writeFileSync(dest, content); | ||
} | ||
} | ||
|
||
function walk(current) { | ||
if(fs.lstatSync(current).isDirectory()) { | ||
var files = fs.readdirSync(current).map(function(child) { | ||
child = path.join(current, child); | ||
return walk(child); | ||
}); | ||
return [].concat.apply([current], files); | ||
} else { | ||
return [current]; | ||
} | ||
} | ||
|
||
module.exports = init; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters