我正在尝试使用coffeescript以严格模式构建流星包。 主要问题是如coffeescript meteor package中所述使用分享。似乎我误解了链接中的解释,因为我收到以下错误:
ReferenceError: __coffeescriptShare is not defined
打包在javascript中运行良好。我只是在'use strict'之前加上 NotificationCommon 的定义。
目标是
这是我的 coffeescript 版本:
notification_common.coffee :
'use strict'
class share.NotificationCommon
constructor: ->
@collection = new (Meteor.Collection)('notification')
@SUCCESS = 'success'
@ERROR = 'error'
@INFO = 'info'
@WARNING = 'warning'
notification_client.coffee :
'use strict'
class NotificationClient extends share.NotificationCommon
constructor = ->
self = @
Meteor.subscribe 'user_notif'
toastr.options = positionClass: 'toast-bottom-full-width'
@collection.find({}).observe 'added': (notif) ->
self.notify notif
return
notify = (notif) ->
toastr[notif.type] notif.message, notif.title, notif.options
@collection.update { _id: notif._id }, $set: notified: true
return
Notification = new NotificationClient
notification_server.coffee :
'use strict'
class NotificationServer extends share.NotificationCommon
constructor = ->
self = @
@collection.allow update: (userId, doc, fields, modifier) ->
return doc.userId is userId
Meteor.publish 'user_notif', ->
if @userId
return self.collection.find( userId: @userId, notified: false)
return
notify = (user_id, notif) ->
self = @
checkType = Match.Where((x) ->
check x, String
check x, Match.OneOf('success', 'error', 'info', 'warning')
true
)
check notif,
type: checkType
message: String
title: Match.Optional(String)
options: Match.Optional(Match.Any)
context: Match.Optional(Match.Any)
if user_id isnt null
if not Meteor.users.findOne(_id: user_id)
throw new (Meteor.Error)('User id not found.')
notif.userId = user_id
notif.notified = false
self.collection.insert notif
return
Notification = new NotificationServer
和 package.js :
Package.describe({
name: 'my:notification',
version: '0.0.1',
summary: 'User and system wide notification',
git: '',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1.0.2');
api.use(['coffeescript','jquery']);
api.use('chrismbeckett:toastr');
api.export('Notification');
api.addFiles('notification_common.coffee');
api.addFiles('notification_server.coffee','server');
api.addFiles('notification_client.coffee','client');
});
Package.onTest(function(api) {
api.use(['tinytest','coffeescript']);
api.use('my:notification');
api.addFiles('notification-tests.js');
});
非常感谢任何帮助。
答案 0 :(得分:1)
解决方案是添加包 package.js :
中的fds:coffeescript-share api.use('fds:coffeescript-share');
请参阅链接以获取解释。
如果对coffeescript包的解释会描述问题(与使用严格相关)并告知上述包的存在,将会有所帮助。
修改强>
感谢您@jorjordandan的评论。 我可以得出结论,目前没有完整的解决方案来组合
编辑2
我已经对问题进行了更深入的分析,我认为在 coffeescript 包中找不到解决方案。
问题应该由程序包构建代码中的流星团队解决。
我可以想象一个解决方案如下。 Meteor包API中添加了一条新指令:旁边的导出另一个名为 scopePackage 的指令。
使用 scopePackage 声明的变量将列在/* Package-scope variables */
下(在连接的js中)。
但是它们不会被导出(在连接的js中/* Exports */
下的代码)。