Added additional fields and some cleanup
This commit is contained in:
parent
5cfacf4ff0
commit
95250d23f2
Binary file not shown.
|
@ -483,8 +483,28 @@
|
||||||
TL2: {
|
TL2: {
|
||||||
width: 70
|
width: 70
|
||||||
}
|
}
|
||||||
BT3: {
|
TL3: {
|
||||||
width: 20
|
width: 70
|
||||||
|
}
|
||||||
|
TL4: {
|
||||||
|
width: 10
|
||||||
|
}
|
||||||
|
TL5: {
|
||||||
|
width: 4
|
||||||
|
}
|
||||||
|
TL6: {
|
||||||
|
width: 4
|
||||||
|
}
|
||||||
|
MT7: {
|
||||||
|
width: 69
|
||||||
|
height: 3
|
||||||
|
mode: preview
|
||||||
|
}
|
||||||
|
BT8: {
|
||||||
|
focusTextStyle: upper
|
||||||
|
}
|
||||||
|
BT9: {
|
||||||
|
text: back
|
||||||
focusTextStyle: upper
|
focusTextStyle: upper
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
const { MenuModule } = require('../menu_module');
|
const { MenuModule } = require('../menu_module');
|
||||||
const { Errors } = require('../enig_error');
|
const { Errors } = require('../enig_error');
|
||||||
const Actor = require('../activitypub/actor');
|
const Actor = require('../activitypub/actor');
|
||||||
|
const moment = require('moment');
|
||||||
|
const { htmlToMessageBody } = require('./util');
|
||||||
|
|
||||||
// deps
|
// deps
|
||||||
const async = require('async');
|
const async = require('async');
|
||||||
const { get, truncate } = require('lodash');
|
const { get, truncate, isEmpty } = require('lodash');
|
||||||
|
|
||||||
exports.moduleInfo = {
|
exports.moduleInfo = {
|
||||||
name: 'ActivityPub Actor Search',
|
name: 'ActivityPub Actor Search',
|
||||||
|
@ -25,6 +27,13 @@ const MciViewIds = {
|
||||||
view: {
|
view: {
|
||||||
userName: 1,
|
userName: 1,
|
||||||
fullName: 2,
|
fullName: 2,
|
||||||
|
datePublished: 3,
|
||||||
|
manualFollowers: 4,
|
||||||
|
numberFollowers: 5,
|
||||||
|
numberFollowing: 6,
|
||||||
|
summary: 7,
|
||||||
|
followButton: 8,
|
||||||
|
cancelButton: 9,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -120,11 +129,33 @@ exports.getModule = class ActivityPubActorSearch extends MenuModule {
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
// TODO: FIXME: fullNameView.getWidth() is 0 - I'm thinking it's getting form 0 for some reason
|
|
||||||
const fullNameView = v(MciViewIds.view.fullName);
|
const fullNameView = v(MciViewIds.view.fullName);
|
||||||
fullNameView.setText(
|
fullNameView.setText(
|
||||||
truncate(remoteActor.name, { length: fullNameView.getWidth() })
|
truncate(remoteActor.name, { length: fullNameView.getWidth() })
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const datePublishedView = v(MciViewIds.view.datePublished);
|
||||||
|
if (isEmpty(remoteActor.published)) {
|
||||||
|
datePublishedView.setText('Not available.');
|
||||||
|
} else {
|
||||||
|
const publishedDate = moment(remoteActor.published);
|
||||||
|
datePublishedView.setText(
|
||||||
|
publishedDate.format(this.getDateFormat())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const manualFollowersView = v(MciViewIds.view.manualFollowers);
|
||||||
|
manualFollowersView.setText(remoteActor.manuallyApprovesFollowers);
|
||||||
|
|
||||||
|
// TODO: Number of followers, number following
|
||||||
|
|
||||||
|
const summaryView = v(MciViewIds.view.summary);
|
||||||
|
summaryView.setText(htmlToMessageBody(remoteActor.summary));
|
||||||
|
|
||||||
|
const followButtonView = v(MciViewIds.view.followButton);
|
||||||
|
// TODO: FIXME: Real status
|
||||||
|
followButtonView.setText('Follow');
|
||||||
|
|
||||||
return callback(null);
|
return callback(null);
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue