-
-
Notifications
You must be signed in to change notification settings - Fork 786
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
Showing
62 changed files
with
466 additions
and
5,445 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Nuke:tm: | ||
Postprocessor solution to a very Crowdin problem. | ||
|
||
Crowdin doesn't let us remove JSON key that have empty values (untranslated strings) in them, so we have to manually remove them. This is a problem because we have to do this every time we update the translations which is not ideal; so this tool was born. | ||
|
||
> ![CAUTION] | ||
> Some of the code are licensed under BSD 3-Clause License, please check the code for more information. | ||
## Usage | ||
Move to your desire directory and run | ||
|
||
```bash | ||
dart nuke.dart | ||
``` | ||
|
||
and it will remove all the empty keys from the JSON files in the current folder. | ||
|
||
> ![CAUTION] | ||
> Some of the code are licensed under BSD 3-Clause License, please check the code for more information. |
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,79 @@ | ||
// ignore_for_file: avoid_print | ||
|
||
import 'dart:convert'; | ||
import 'dart:io'; | ||
|
||
T? removeBlankEntries<T>(T? json) { | ||
// This function is protected by BSD 3-Clause License | ||
// Changes made to this section are allow removing of '' values from JSON | ||
|
||
/* | ||
https://pub.dev/documentation/swiss_knife/latest/swiss_knife/removeEmptyEntries.html | ||
Copyright 2014, the Dart project authors. All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided | ||
with the distribution. | ||
* Neither the name of Google Inc. nor the names of its | ||
contributors may be used to endorse or promote products derived | ||
from this software without specific prior written permission. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
if (json == null) { | ||
return null; | ||
} | ||
if (json is List) { | ||
json.removeWhere((e) => e == null); | ||
json.forEach(removeBlankEntries); | ||
} else if (json is Map) { | ||
json.removeWhere( | ||
(key, value) => key == null || value == null || value == '', | ||
); | ||
json.values.forEach(removeBlankEntries); | ||
} | ||
return json; | ||
} | ||
|
||
Future<void> processJsonFiles() async { | ||
final Directory directory = Directory.current; | ||
final List<FileSystemEntity> files = directory.listSync(); | ||
|
||
for (final file in files) { | ||
try { | ||
if (file is File && file.path.endsWith('.json')) { | ||
final String contents = await file.readAsString(); | ||
final dynamic json = jsonDecode(contents); | ||
final dynamic processedJson = removeBlankEntries(json); | ||
|
||
file.writeAsString( | ||
const JsonEncoder.withIndent(' ').convert(processedJson), | ||
); | ||
print('🥞 Task successful on: ${file.path}'); | ||
} | ||
} catch (e) { | ||
print('💥 Task failed on: ${file.path}: $e'); | ||
} | ||
} | ||
} | ||
|
||
void main() async { | ||
processJsonFiles(); | ||
} |
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 |
---|---|---|
|
@@ -252,4 +252,4 @@ | |
"cliContributors": "CLI contributors", | ||
"managerContributors": "Manager contributors" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -252,4 +252,4 @@ | |
"cliContributors": "المساهمون في CLI", | ||
"managerContributors": "المساهمون في Manager" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -252,4 +252,4 @@ | |
"cliContributors": "CLI-yə töhfə verənlər", | ||
"managerContributors": "Manager-ə töhfə verənlər" | ||
} | ||
} | ||
} |
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
Oops, something went wrong.