summaryrefslogtreecommitdiff
path: root/src/web/app/common/mixins.ls
blob: 0a3802e25c8f0668d430dc29ecd4fb2d1ecfb9a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
riot = require \riot

module.exports = (me) ~>
	i = if me? then me.token else null

	(require './scripts/i.ls') me

	riot.mixin \api do
		api: (require './scripts/api').bind null i

	riot.mixin \cropper do
		Cropper: require \cropperjs

	riot.mixin \signout do
		signout: require './scripts/signout.ls'

	riot.mixin \messaging-stream do
		MessagingStreamConnection: require './scripts/messaging-stream.ls'

	riot.mixin \is-promise do
		is-promise: require './scripts/is-promise.ls'

	riot.mixin \get-post-summary do
		get-post-summary: require './scripts/get-post-summary.ls'

	riot.mixin \date-stringify do
		date-stringify: require './scripts/date-stringify.ls'

	riot.mixin \text do
		analyze: require '../../../common/text/index.js'
		compile: require './scripts/text-compiler.js'

	riot.mixin \get-password-strength do
		get-password-strength: require 'syuilo-password-strength'

	riot.mixin \ui-progress do
		Progress: require './scripts/loading.ls'

	riot.mixin \bytes-to-size do
		bytes-to-size: require './scripts/bytes-to-size.js'