umap-project 2.1.2__py3-none-any.whl → 2.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (211) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +10 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +43 -156
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +97 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +149 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.autocomplete.js +40 -25
  36. umap/static/umap/js/umap.controls.js +248 -361
  37. umap/static/umap/js/umap.core.js +77 -366
  38. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  39. umap/static/umap/js/umap.features.js +65 -43
  40. umap/static/umap/js/umap.forms.js +128 -36
  41. umap/static/umap/js/umap.icon.js +11 -4
  42. umap/static/umap/js/umap.importer.js +78 -58
  43. umap/static/umap/js/umap.js +206 -192
  44. umap/static/umap/js/umap.layer.js +86 -46
  45. umap/static/umap/js/umap.permissions.js +13 -9
  46. umap/static/umap/js/umap.popup.js +26 -30
  47. umap/static/umap/js/umap.share.js +12 -9
  48. umap/static/umap/js/umap.tableeditor.js +4 -6
  49. umap/static/umap/js/umap.ui.js +10 -60
  50. umap/static/umap/locale/am_ET.js +243 -227
  51. umap/static/umap/locale/am_ET.json +21 -9
  52. umap/static/umap/locale/ar.js +243 -227
  53. umap/static/umap/locale/ar.json +21 -9
  54. umap/static/umap/locale/ast.js +243 -227
  55. umap/static/umap/locale/ast.json +21 -9
  56. umap/static/umap/locale/bg.js +243 -227
  57. umap/static/umap/locale/bg.json +21 -9
  58. umap/static/umap/locale/br.js +253 -237
  59. umap/static/umap/locale/br.json +25 -13
  60. umap/static/umap/locale/ca.js +243 -227
  61. umap/static/umap/locale/ca.json +21 -9
  62. umap/static/umap/locale/cs_CZ.js +243 -227
  63. umap/static/umap/locale/cs_CZ.json +21 -9
  64. umap/static/umap/locale/da.js +243 -227
  65. umap/static/umap/locale/da.json +21 -9
  66. umap/static/umap/locale/de.js +243 -227
  67. umap/static/umap/locale/de.json +21 -9
  68. umap/static/umap/locale/el.js +243 -227
  69. umap/static/umap/locale/el.json +21 -9
  70. umap/static/umap/locale/en.js +243 -234
  71. umap/static/umap/locale/en.json +22 -10
  72. umap/static/umap/locale/en_US.json +21 -9
  73. umap/static/umap/locale/es.js +243 -227
  74. umap/static/umap/locale/es.json +21 -9
  75. umap/static/umap/locale/et.js +243 -227
  76. umap/static/umap/locale/et.json +21 -9
  77. umap/static/umap/locale/eu.js +227 -199
  78. umap/static/umap/locale/eu.json +1 -1
  79. umap/static/umap/locale/fa_IR.js +243 -227
  80. umap/static/umap/locale/fa_IR.json +21 -9
  81. umap/static/umap/locale/fi.js +243 -227
  82. umap/static/umap/locale/fi.json +21 -9
  83. umap/static/umap/locale/fr.js +243 -234
  84. umap/static/umap/locale/fr.json +21 -9
  85. umap/static/umap/locale/gl.js +243 -227
  86. umap/static/umap/locale/gl.json +21 -9
  87. umap/static/umap/locale/he.js +243 -227
  88. umap/static/umap/locale/he.json +21 -9
  89. umap/static/umap/locale/hr.js +243 -227
  90. umap/static/umap/locale/hr.json +21 -9
  91. umap/static/umap/locale/hu.js +243 -234
  92. umap/static/umap/locale/hu.json +21 -9
  93. umap/static/umap/locale/id.js +243 -227
  94. umap/static/umap/locale/id.json +21 -9
  95. umap/static/umap/locale/is.js +243 -227
  96. umap/static/umap/locale/is.json +21 -9
  97. umap/static/umap/locale/it.js +243 -234
  98. umap/static/umap/locale/it.json +21 -9
  99. umap/static/umap/locale/ja.js +243 -227
  100. umap/static/umap/locale/ja.json +21 -9
  101. umap/static/umap/locale/ko.js +243 -227
  102. umap/static/umap/locale/ko.json +21 -9
  103. umap/static/umap/locale/lt.js +243 -227
  104. umap/static/umap/locale/lt.json +21 -9
  105. umap/static/umap/locale/ms.js +243 -234
  106. umap/static/umap/locale/ms.json +22 -10
  107. umap/static/umap/locale/nl.js +246 -230
  108. umap/static/umap/locale/nl.json +21 -9
  109. umap/static/umap/locale/no.js +243 -227
  110. umap/static/umap/locale/no.json +21 -9
  111. umap/static/umap/locale/pl.js +243 -227
  112. umap/static/umap/locale/pl.json +21 -9
  113. umap/static/umap/locale/pl_PL.json +21 -9
  114. umap/static/umap/locale/pt.js +243 -227
  115. umap/static/umap/locale/pt.json +21 -9
  116. umap/static/umap/locale/pt_BR.js +243 -227
  117. umap/static/umap/locale/pt_BR.json +21 -9
  118. umap/static/umap/locale/pt_PT.js +243 -227
  119. umap/static/umap/locale/pt_PT.json +21 -9
  120. umap/static/umap/locale/ro.js +243 -227
  121. umap/static/umap/locale/ro.json +21 -9
  122. umap/static/umap/locale/ru.js +243 -227
  123. umap/static/umap/locale/ru.json +21 -9
  124. umap/static/umap/locale/si.js +1 -1
  125. umap/static/umap/locale/si.json +1 -1
  126. umap/static/umap/locale/sk_SK.js +243 -227
  127. umap/static/umap/locale/sk_SK.json +21 -9
  128. umap/static/umap/locale/sl.js +243 -227
  129. umap/static/umap/locale/sl.json +21 -9
  130. umap/static/umap/locale/sr.js +243 -227
  131. umap/static/umap/locale/sr.json +21 -9
  132. umap/static/umap/locale/sv.js +243 -227
  133. umap/static/umap/locale/sv.json +21 -9
  134. umap/static/umap/locale/th_TH.js +243 -227
  135. umap/static/umap/locale/th_TH.json +21 -9
  136. umap/static/umap/locale/tr.js +243 -227
  137. umap/static/umap/locale/tr.json +21 -9
  138. umap/static/umap/locale/uk_UA.js +243 -227
  139. umap/static/umap/locale/uk_UA.json +21 -9
  140. umap/static/umap/locale/vi.js +243 -227
  141. umap/static/umap/locale/vi.json +21 -9
  142. umap/static/umap/locale/vi_VN.json +21 -9
  143. umap/static/umap/locale/zh.js +243 -227
  144. umap/static/umap/locale/zh.json +21 -9
  145. umap/static/umap/locale/zh_CN.json +21 -9
  146. umap/static/umap/locale/zh_TW.Big5.json +21 -9
  147. umap/static/umap/locale/zh_TW.js +243 -234
  148. umap/static/umap/locale/zh_TW.json +21 -9
  149. umap/static/umap/map.css +124 -264
  150. umap/static/umap/test/DataLayer.js +1 -1
  151. umap/static/umap/test/Feature.js +0 -226
  152. umap/static/umap/test/Map.js +0 -304
  153. umap/static/umap/test/Polygon.js +0 -256
  154. umap/static/umap/test/Polyline.js +0 -116
  155. umap/static/umap/test/TableEditor.js +10 -10
  156. umap/static/umap/test/Util.js +0 -521
  157. umap/static/umap/test/index.html +1 -5
  158. umap/static/umap/unittests/URLs.js +1 -1
  159. umap/static/umap/unittests/utils.js +610 -0
  160. umap/static/umap/vars.css +9 -0
  161. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  162. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +1 -0
  163. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  164. umap/templates/umap/css.html +2 -0
  165. umap/templates/umap/js.html +0 -1
  166. umap/templates/umap/map_detail.html +4 -0
  167. umap/templates/umap/map_table.html +12 -10
  168. umap/templatetags/umap_tags.py +5 -0
  169. umap/tests/conftest.py +9 -0
  170. umap/tests/fixtures/test_upload_data.csv +2 -1
  171. umap/tests/fixtures/test_upload_data.umap +171 -0
  172. umap/tests/fixtures/test_upload_data_osm.json +33 -0
  173. umap/tests/integration/conftest.py +16 -0
  174. umap/tests/integration/test_anonymous_owned_map.py +30 -5
  175. umap/tests/integration/test_basics.py +21 -0
  176. umap/tests/integration/test_browser.py +16 -36
  177. umap/tests/integration/test_choropleth.py +89 -0
  178. umap/tests/integration/test_collaborative_editing.py +30 -1
  179. umap/tests/integration/test_dashboard.py +10 -0
  180. umap/tests/integration/test_datalayer.py +132 -0
  181. umap/tests/integration/test_draw_polygon.py +363 -0
  182. umap/tests/integration/test_draw_polyline.py +325 -0
  183. umap/tests/integration/test_edit_datalayer.py +145 -6
  184. umap/tests/integration/test_edit_map.py +202 -0
  185. umap/tests/integration/test_edit_marker.py +120 -0
  186. umap/tests/integration/test_edit_polygon.py +122 -0
  187. umap/tests/integration/test_facets_browser.py +132 -11
  188. umap/tests/integration/test_import.py +407 -10
  189. umap/tests/integration/test_map.py +36 -54
  190. umap/tests/integration/test_map_list.py +28 -0
  191. umap/tests/integration/test_owned_map.py +24 -6
  192. umap/tests/integration/test_picto.py +25 -38
  193. umap/tests/integration/test_querystring.py +9 -15
  194. umap/tests/integration/test_slideshow.py +0 -5
  195. umap/tests/integration/test_statics.py +3 -2
  196. umap/tests/integration/test_tableeditor.py +23 -0
  197. umap/tests/integration/test_tilelayer.py +10 -0
  198. umap/tests/integration/test_view_marker.py +64 -0
  199. umap/tests/integration/test_view_polygon.py +59 -0
  200. umap/tests/integration/test_view_polyline.py +51 -0
  201. umap/tests/test_map_views.py +13 -0
  202. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/METADATA +12 -12
  203. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/RECORD +206 -187
  204. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/WHEEL +1 -1
  205. umap/static/umap/test/Choropleth.js +0 -245
  206. umap/static/umap/test/Permissions.js +0 -74
  207. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  208. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  209. umap/tests/integration/test_drawing.py +0 -243
  210. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/entry_points.txt +0 -0
  211. {umap_project-2.1.2.dist-info → umap_project-2.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -7,26 +7,32 @@ U.Importer = L.Class.extend({
7
7
 
8
8
  build: function () {
9
9
  this.container = L.DomUtil.create('div', 'umap-upload')
10
- this.title = L.DomUtil.add('h3', '', this.container, L._('Import data'))
10
+ this.title = L.DomUtil.createTitle(
11
+ this.container,
12
+ L._('Import data'),
13
+ 'icon-upload'
14
+ )
11
15
  this.presetBox = L.DomUtil.create('div', 'formbox', this.container)
12
16
  this.presetSelect = L.DomUtil.create('select', '', this.presetBox)
13
17
  this.fileBox = L.DomUtil.create('div', 'formbox', this.container)
14
- this.fileInput = L.DomUtil.element(
15
- 'input',
16
- { type: 'file', multiple: 'multiple', autofocus: true },
17
- this.fileBox
18
- )
19
- this.map.ui.once('panel:closed', () => (this.fileInput.value = null))
20
- this.urlInput = L.DomUtil.element(
21
- 'input',
22
- { type: 'text', placeholder: L._('Provide an URL here') },
23
- this.container
24
- )
25
- this.rawInput = L.DomUtil.element(
26
- 'textarea',
27
- { placeholder: L._('Paste your data here') },
28
- this.container
29
- )
18
+ this.fileInput = L.DomUtil.element({
19
+ tagName: 'input',
20
+ type: 'file',
21
+ parent: this.fileBox,
22
+ multiple: 'multiple',
23
+ autofocus: true,
24
+ })
25
+ this.urlInput = L.DomUtil.element({
26
+ tagName: 'input',
27
+ type: 'text',
28
+ parent: this.container,
29
+ placeholder: L._('Provide an URL here'),
30
+ })
31
+ this.rawInput = L.DomUtil.element({
32
+ tagName: 'textarea',
33
+ parent: this.container,
34
+ placeholder: L._('Paste your data here'),
35
+ })
30
36
  this.typeLabel = L.DomUtil.add(
31
37
  'label',
32
38
  '',
@@ -39,47 +45,43 @@ U.Importer = L.Class.extend({
39
45
  this.container,
40
46
  L._('Choose the layer to import in')
41
47
  )
42
- this.clearLabel = L.DomUtil.add(
43
- 'label',
44
- '',
45
- this.container,
46
- L._('Replace layer content')
47
- )
48
- this.submitInput = L.DomUtil.element(
49
- 'input',
50
- { type: 'button', value: L._('Import'), className: 'button' },
51
- this.container
52
- )
48
+ this.clearLabel = L.DomUtil.element({
49
+ tagName: 'label',
50
+ parent: this.container,
51
+ textContent: L._('Replace layer content'),
52
+ for: 'datalayer-clear-check',
53
+ })
54
+ this.submitInput = L.DomUtil.element({
55
+ tagName: 'input',
56
+ type: 'button',
57
+ parent: this.container,
58
+ value: L._('Import'),
59
+ className: 'button',
60
+ })
53
61
  this.map.help.button(this.typeLabel, 'importFormats')
54
- this.typeInput = L.DomUtil.element('select', { name: 'format' }, this.typeLabel)
55
- this.layerInput = L.DomUtil.element(
56
- 'select',
57
- { name: 'datalayer' },
58
- this.layerLabel
59
- )
60
- this.clearFlag = L.DomUtil.element(
61
- 'input',
62
- { type: 'checkbox', name: 'clear' },
63
- this.clearLabel
64
- )
65
- let option
66
- this.map.eachDataLayerReverse((datalayer) => {
67
- if (datalayer.isLoaded() && !datalayer.isRemoteLayer()) {
68
- const id = L.stamp(datalayer)
69
- option = L.DomUtil.add('option', '', this.layerInput, datalayer.options.name)
70
- option.value = id
71
- }
62
+ this.typeInput = L.DomUtil.element({
63
+ tagName: 'select',
64
+ name: 'format',
65
+ parent: this.typeLabel,
66
+ })
67
+ this.layerInput = L.DomUtil.element({
68
+ tagName: 'select',
69
+ name: 'datalayer',
70
+ parent: this.layerLabel,
71
+ })
72
+ this.clearFlag = L.DomUtil.element({
73
+ tagName: 'input',
74
+ type: 'checkbox',
75
+ name: 'clear',
76
+ id: 'datalayer-clear-check',
77
+ parent: this.clearLabel,
78
+ })
79
+ L.DomUtil.element({
80
+ tagName: 'option',
81
+ value: '',
82
+ textContent: L._('Choose the data format'),
83
+ parent: this.typeInput,
72
84
  })
73
- L.DomUtil.element(
74
- 'option',
75
- { value: '', textContent: L._('Import in a new layer') },
76
- this.layerInput
77
- )
78
- L.DomUtil.element(
79
- 'option',
80
- { value: '', textContent: L._('Choose the data format') },
81
- this.typeInput
82
- )
83
85
  for (let i = 0; i < this.TYPES.length; i++) {
84
86
  option = L.DomUtil.create('option', '', this.typeInput)
85
87
  option.value = option.textContent = this.TYPES[i]
@@ -103,7 +105,7 @@ U.Importer = L.Class.extend({
103
105
  let type = '',
104
106
  newType
105
107
  for (let i = 0; i < e.target.files.length; i++) {
106
- newType = L.Util.detectFileType(e.target.files[i])
108
+ newType = U.Utils.detectFileType(e.target.files[i])
107
109
  if (!type && newType) type = newType
108
110
  if (type && newType !== type) {
109
111
  type = ''
@@ -118,7 +120,25 @@ U.Importer = L.Class.extend({
118
120
 
119
121
  open: function () {
120
122
  if (!this.container) this.build()
121
- this.map.ui.openPanel({ data: { html: this.container }, className: 'dark' })
123
+ const onLoad = this.map.editPanel.open({ content: this.container })
124
+ onLoad.then(() => {
125
+ this.fileInput.value = null
126
+ this.layerInput.innerHTML = ''
127
+ let option
128
+ this.map.eachDataLayerReverse((datalayer) => {
129
+ if (datalayer.isLoaded() && !datalayer.isRemoteLayer()) {
130
+ const id = L.stamp(datalayer)
131
+ option = L.DomUtil.add('option', '', this.layerInput, datalayer.options.name)
132
+ option.value = id
133
+ }
134
+ })
135
+ L.DomUtil.element({
136
+ tagName: 'option',
137
+ value: '',
138
+ textContent: L._('Import in a new layer'),
139
+ parent: this.layerInput,
140
+ })
141
+ })
122
142
  },
123
143
 
124
144
  openFiles: function () {