#328674 Change error message for invalid GroupId and Location Name. #328714 Fix app orientation to portrait.

This commit is contained in:
Georgi Prodanov 2017-02-13 12:50:27 +02:00
Родитель d95752214c
Коммит f7cd075e5d
3 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -27,6 +27,7 @@
<activity
android:name="com.tns.NativeScriptActivity"
android:screenOrientation="portrait"
android:label="@string/title_activity_kimera"
android:configChanges="keyboardHidden|orientation|screenSize"
android:theme="@style/LaunchScreenTheme">

Просмотреть файл

@ -33,8 +33,6 @@
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>

Просмотреть файл

@ -162,10 +162,15 @@ export class EventsService {
validateEvent(event: Event): string {
let errorMsg: string;
let msgsMap = {
'GroupId': 'Group',
'OrganizerId': 'Organizer',
'LocationName': 'Location Name'
};
for (let fieldName of utilities.eventMandatoryFields) {
if (!utilities.isNonemptyString(event[fieldName])) {
errorMsg = `The field ${fieldName} is required`;
errorMsg = `The field "${msgsMap[fieldName] || fieldName}" is required`;
break;
}
}